Respondida
assign particular colour to 2nd bar of the bar plot
Hi, use the code below. clc; close all; % Define your 4-element matrix y = [25 75 100 125]; % Plot bar graph b = bar(y); %...

alrededor de 6 años hace | 0

Respondida
table on workspace isn't recognized as table
As far as my knowledge goes MATLAB does not support Blank Space in variable names. It can only contain letters, numbers or under...

alrededor de 6 años hace | 0

Respondida
How do I select only 100 images in a folder of 200 images, according to a list of 100 different names ?
Assuming you have the required image names in a text file. Refer the code below. myFolder = 'putYourFolderPathHere'; filePatte...

alrededor de 6 años hace | 0

| aceptada

Respondida
Sliding window search and Entropy value for each window
Hi, refer the code below. It calculates entropy values for different (16x16) window of an image and displays them as a heatmap. ...

alrededor de 6 años hace | 1

Respondida
feature extraction from retinal images
Have a look at these functions detectBRISKFeatures, detectFASTFeatures, detectHarrisFeatures, detectKAZEFeatures, detectMinEig...

alrededor de 6 años hace | 0

Respondida
Using imagesc and scatter together
Assuming you want to display one scatter plot over one imagesc graph both having different colormap and colorbar. Give the below...

alrededor de 6 años hace | 1

Respondida
Connect edges in binary image
After binarizing the image you can use the function bwmorph() to make a bridge between the white lines present in the image. Af...

alrededor de 6 años hace | 2

Respondida
changing exponential value into float
Hi Sajitha, Try the code below. clc; max_Ar = max(Ar); min_Ar = min(Ar); range = (max_Ar - min_Ar) + eps(max_Ar - min_Ar); ...

alrededor de 6 años hace | 0

Respondida
for loop in an array to substract the values of the array and find a specific value
Try this. for k = 2:length(I) x = I(k) - I(k-1); if x == 0.55 disp('Here'); else disp 'Not here' ...

alrededor de 6 años hace | 0

Respondida
Apply mask to RGB image. If mask is RGB as well do i have to seperet the mask to its channels too?
Hi, refer the code below. function [ R, B, G ] = Split_Image() input = im2double(imread('transport_clean.png')); figu...

alrededor de 6 años hace | 0

| aceptada

Respondida
Write a function three positive integer scalar inputs year, month, day.
Refer the code below. Hope this helps! function valid = validateDate(year, month, day) year1 = year/4; leap1 = year1 ...

alrededor de 6 años hace | 1

Respondida
How to use built-in entropy function
Hi, Can you attach your "output_image" ? So that we can reproduce the issue. Otherwise you can try the code below. E = entropy...

alrededor de 6 años hace | 0

| aceptada

Respondida
image processing toolbox in R2017b version
Hi, type the command ver to get a list of all installed toolboxes. Check the list to find whether The Image Processing Toolbox i...

alrededor de 6 años hace | 0

Respondida
Overlay 2 masked RGB images
Hi, I suspect that your .png files are (M x N x 3) RGB images. Therefore you are getting that error while using cat. Since yo...

alrededor de 6 años hace | 1

Respondida
extraction of part of image
Hi Smruti, the below code might help as you want "to extract the part of original image based on pixel values the output will be...

alrededor de 6 años hace | 0

| aceptada

Respondida
storing values and comparing images
Hi Smruti, Refer the code below. % Read your image here I = imread('cameraman.tif'); % Properties of gray-level co-occurrence...

alrededor de 6 años hace | 0

| aceptada

Respondida
Creating a ROI numerically (without clicking) with impoly
I am assuming you are trying to create Polygonal ROI Non-interactively. The code below might help! % Read the image into the wo...

alrededor de 6 años hace | 1

| aceptada

Respondida
double matrix to image conversion
Hi, try the code below % Rescale your matrix in 0-255 range rescaledMatrix = rescale(yourDoubleMatrix, 0, 255); % Typecasted ...

alrededor de 6 años hace | 0

Respondida
How to add and subtract two color images in matlab?
Hi, Sajina the function imsubtract expects two real, nonsparse, numeric or logical image. Threfore the below syntax is not right...

alrededor de 6 años hace | 0

| aceptada

Respondida
Recolouring Sentinel2 multispectral image
Hi, 3D scatter plot on your image produces a linear trend of the Red-Green-Blue channel, indicating a high correlation among the...

alrededor de 6 años hace | 1

| aceptada

Respondida
Help with VDSR example code
The function activations was introduced inside Neural Network Toolbox in MATLAB R2016a. You can type the command ver to check wh...

más de 6 años hace | 0

Respondida
how to write multiple dicom files into a folder using 'dicomwrite' command
Hi, your code is almost correct. You only need to give different name to the 'k' different DICOM files. The below code might hel...

más de 6 años hace | 0

Respondida
I would like to do geobubble plot over Indian landmass. I follow the following link to create my bubble plot:https://in.mathworks.com/help/matlab/ref/geobubble.html. I would like to do the same plot over the shape file of world and India.
Hi, refer the code below which plots geobubble over india shape file (use the attached zip file for the .shp files). clear all;...

más de 6 años hace | 0

| aceptada

Respondida
How to remove markers of a plot
HI, you can use the Marker Name-Value Pair of the function plot to specify the marker type. If you specify 'none', then no marke...

más de 6 años hace | 0

Respondida
Denoising and contranst enhancement
Hi, you can use Neighborhood size input argument of the function medfilt2 to specify the strength of the filtering. Also, you ca...

más de 6 años hace | 0

Respondida
Why do I received errors in MATLAB App Designer when I exported it to standalone application? (MATLAB 2017b)
Hi, whenever you are packaging your app to create a standalone desktop app, you need to put all the required files in the "Files...

más de 6 años hace | 1

| aceptada

Respondida
splash screen for compiled application is not hard-coded in the app and can be modified
Hi Luca, it seems there's no straightforward way to change this behavior.

más de 6 años hace | 0

Respondida
3-D Scatter save to vector file to edit in Adobe Illustrator
Hi, you can try saving it in EPS format using the painters renderer to get a true vector file. print('YourEPSFile','-depsc','-p...

más de 6 años hace | 2

Respondida
Histogram Data out of axes boundries
Hi, you can use axis limits to extend the plot to the edges of the axes. Refer the code below. %... GUI Elements axes_img2 = a...

más de 6 años hace | 0

| aceptada

Respondida
One common xlabel and ylabel for multiple subplots
Hi, the example code below adds one common xlabel and ylabel to a figure containing multiple subplots, irrespective of the numbe...

más de 6 años hace | 18

| aceptada

Cargar más