Question


How to import sequence of images from any folder?
Dear all, I have a sequence of tif images that I want to import them to my GUI. However, using the following code I can impor...

9 years ago | 1 answer | 0

1

answer

Question


How to find the second interesection between two plots?
Dear all, I have two data sets, A and B (117 values each), and the values are included in the attached txt file, and their pl...

9 years ago | 3 answers | 0

3

answers

Question


How to detect the fluctuating point (cut-off point) of a signal?
Dear all, I have a simple signal that I show below with blue color: <</matlabcentral/answers/uploaded_files/22303/cut-off....

9 years ago | 3 answers | 0

3

answers

Answered
how to show background in original color after segmented ??
Do you mean something like this http://www.mathworks.com/help/images/examples/color-based-segmentation-using-k-means-clusteri...

9 years ago | 0

Answered
how to segment image without change to binary?
One idea is to use the color based segmentation. Check the following nice explanation from the matlab home page: http://ww...

9 years ago | 0

Question


How to calculate the curvature of a boundaries in binary images?
Dear all, I have a binary image that contains one shape as I show below: <</matlabcentral/answers/uploaded_files/21701/c...

9 years ago | 4 answers | 0

4

answers

Question


How to find the nearest object to a reference point in binary image?
Dear all, I have a binary image that contains two objects(Object_A, Object_B) very close to each other as shown below. I want...

9 years ago | 1 answer | 0

1

answer

Question


How to draw multiple lines to a binary image?
Hi all, I want to be able to draw multiple lines in a binary image "I". For example I will draw the first line using the righ...

9 years ago | 1 answer | 0

1

answer

Question


How to show two figures of dynamic plots next to each other?
Dear all, I have two for-loops. Each loop generates a data which I am plotting (inside the loop) so as I can see the plot dyn...

9 years ago | 1 answer | 0

1

answer

Answered
Convert Grayscale Image to Color Image Using Matlab
There is no method that can do it for you fully automatically, but maybe possible if you can assume the other missing parameters...

9 years ago | 0

Answered
how to extract the area, perimeter for the object present in the image?
You should change your image from gray scale image to a binary image (1, 0) before finding the properties that you want. It is c...

9 years ago | 0

| accepted

Answered
how can find size of this objects in a binary image?
There are many ways to do that. One easy way is to use nnz (Number of nonzero matrix elements). So if your image is I, then: ...

9 years ago | 0

| accepted

Answered
how can find size of this objects in a binary image?
You can do it in few steps. If your input image is I then: %Step 1: Label each object using the following code. I = ...

9 years ago | 1

Question


How to find the point in a plot that indicate to the beginning of a curve?
Dear all, I have a two dimension plot X, Y as shown in the attached image below. X and Y are linearly increase together, howe...

9 years ago | 1 answer | 0

1

answer

Answered
How to remove background from an image?
There are many ways do remove background. If you have a colored image, then you can try this http://www.mathworks.com/help/...

9 years ago | 2

| accepted

Answered
Memory Usage and block proc
That's too much to read. Can you make it shorter?

9 years ago | 0

| accepted

Answered
what is 2D otsu algorithm and how to implement it
Otsu method is a well-known thresholding method. In other words, it can find the threshold value to convert your image to two le...

9 years ago | 0

Question


How to compair between two lines in binary images?
Dear all, I want to compare between two lines in two binary images (each image has one line as shown in the attachment). ...

9 years ago | 4 answers | 0

4

answers

Answered
How to combine thresholded images
Use cat RGB = cat(3, R, G, B)

9 years ago | 0

Question


How to add two binay images and add the result to a third image?
Dear all, I have one array that includes 5 binary images [I1, I2, I3, I4, I5]. I want to have a new array [R1, R2, R3, R4]...

9 years ago | 2 answers | 0

2

answers

Question


How to add a command window to a GUI?
Dear all, I have been developing one GUI for image processing and analysis which now having many buttons, sliding bars, Axes ...

9 years ago | 1 answer | 0

1

answer

Answered
How to find the intensity percentage in a gray scale image?
Thank you Image Analyst, Geoff, Anand. Now I could understand the problem.

9 years ago | 0

Question


How to find the intensity percentage in a gray scale image?
Dear all, I have 8bit gray scale image "I". I want to find "X" which is the 99.5% of the maximum intensity value. So if the ...

9 years ago | 4 answers | 0

4

answers

Question


How to upload a file or image from any directory which is not included in the matlab path?
Dear all, I am building a GUI by which one push button will allow the user to select an image that will be displayed in the a...

10 years ago | 0 answers | 0

0

answers

Question


Can we run matlab in Xeon Phi?
Dear all, I heard that it is now possible to run windows such as windows server 2012 in Xeon Phi processor computer. If so ...

10 years ago | 2 answers | 1

2

answers

Question


How to cluster the intensities in a gray scale image?
Dear all, I have the following 8 bit gray image that contains 5 intensity levels . <</matlabcentral/answers/uploaded_fi...

10 years ago | 1 answer | 0

1

answer

Question


Where to find stacked confocal images database?
Dear all, Does anyone know where I can find a z-stack confocal images database? I developed one method and want to test it in...

10 years ago | 0 answers | 0

0

answers

Question


Any alternative to kmeans functions for image processing toolbox?
Dear all, I would like to use the kmeans functions that comes with the stats toolbox to segment an image similar to the matla...

10 years ago | 2 answers | 0

2

answers

Answered
How would I use the k-means function from the stats toolbox on an image sequence?
First change your 2D gray scale images to double images using I1 = im2double(Z1) then apply the kmeans function to I1, I2, etc.....

10 years ago | 0

| accepted

Load more