답변 있음
How can I iterate through a list of files using dlmread()?
Hi, The problem comes from you ask Matlab to open the file called 'file1', not the file whose name is stored in the variable ...

8년 초과 전 | 1

| 수락됨

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

대략 9년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 9년 전

제출됨


Feret diameter and oriented box
Compute Feret diameters and oriented bounding box from label image

9년 초과 전 | 다운로드 수: 5 |

Thumbnail

제출됨


Correlation circles
Display correlation matrix using colored circles

대략 10년 전 | 다운로드 수: 5 |

Thumbnail

답변 있음
how to read 3-D medical image
Hi, there are plenty of contributions on the file exchange. In particular a contribution called "Read medical data 3D"... <...

10년 초과 전 | 0

| 수락됨

답변 있음
How to find distance in binary image?
Hi maria, If you consider a label image (one label for each line), you can call "bwdist" function for each label "i". Then, for...

10년 초과 전 | 0

답변 있음
How does this function "regionprops" to find the orientation of any object?
Hi Marian, the code is in the regionprops function, you can access it via "edit regionprops", and checking the "ComputeEllips...

10년 초과 전 | 3

| 수락됨

답변 있음
superimpose points on image
Hi Milenko, One solution is to display the image (using etiher imshow, imagesc...), call "hold on", then plot the points at t...

10년 초과 전 | 0

| 수락됨

답변 있음
How to rotate a plane in 3D around arbitrary point ?
Hi, Maybe you can decompose the procedure in two steps. First you apply the linear part of the transform to the normal vecto...

대략 11년 전 | 0

| 수락됨

답변 있음
How do i calculate hessian matrix for an image?
Hi, you need to compute second derivatives in each direction, using something like: [gx, gy] = gradient(double(img)); [g...

대략 11년 전 | 5

| 수락됨

답변 있음
How to extract the ROI using impoly?
Hi, You should use either imcrop, or impoly. Using imcrop, you can select a rectangular region of interset. By the way, th...

11년 초과 전 | 0

| 수락됨

답변 있음
HOW TO FIND THE DIAMETER FOR THE IRREGULAR SHAPE OF AN IMAGE
Hi, in the image processing toolbox there is a function "regionprops" that gives you the equivalent diameter of a particle. Y...

11년 초과 전 | 0

답변 있음
how to select a particular portion in am image automatically?
Hi, using imcrop you can also specify the coordinates of the box. Then you do not have to click. But you have to know the pos...

11년 초과 전 | 0

| 수락됨

답변 있음
How to save triangulation mesh as a volume?
Hi, If your definition of volume is a 3D binary matrix/image, I would suggest using the polygon2Voxel tool from Dirk-Jan Kroo...

거의 12년 전 | 2

| 수락됨

답변 있음
Plotting 3d Sphere with specific radius
Hi, maybe by specifying the radius as a scaling factor: surf(x*r+a, y*r+b, z*r+c); axis equal;

거의 12년 전 | 4

| 수락됨

답변 있음
removing some connected component
Hi Selim, if your input is a label image, you can use the following syntax: img(img == ind) = 0; This will detect wh...

거의 12년 전 | 1

| 수락됨

답변 있음
i couldn't understand convex area
Hi Selim, the 'convexArea' property corresponds the area of the convex hull of the region. The convex hull of a region is the...

거의 12년 전 | 2

| 수락됨

답변 있음
Plotting an Ellipse
Hi, Maybe the best way to draw an ellipse is to use its parametric form: % compute points corresponding to axis-oriented...

거의 12년 전 | 0

제출됨


double2rgb
Converts an array of double (2D or 3D) to an RGB image using specified colormap

대략 13년 전 | 다운로드 수: 8 |

Thumbnail

제출됨


imOverlay
Add colored markers to an image, that can be 2D or 3D, grayscale or color.

13년 초과 전 | 다운로드 수: 1 |

Thumbnail

제출됨


imHistogram
Histogram of 2D/3D grayscale or color images

13년 초과 전 | 다운로드 수: 3 |

Thumbnail