Calculate the measurements of a Binary Image with an ndims of 3

3 visualizaciones (últimos 30 días)
Ryan Tigera
Ryan Tigera el 16 de Nov. de 2020
Comentada: Ryan Tigera el 19 de Nov. de 2020
I am analyzing a series of images that increase the volume of the yellow plume over a series of time steps. My goal is to compare the area, centroid, outline and lengths of the largest finger of each yellow plume with other similiar images in a table as well as have MATLAB show the centroid and extrema on the image. In order to measure these properties, Matlab states I need a ndims of 2 or less where my binary image is 3. I used the imbinarize command to create a binary image and I recieved this error using regionprops.
An example of the photo to be analyzed is attached to this post.
Thanks for your help.
Ryan
  2 comentarios
Rik
Rik el 16 de Nov. de 2020
Did you convert the RGB image to grayscale before binarizing?
Ryan Tigera
Ryan Tigera el 19 de Nov. de 2020
Hi Rik,
Thanks for the help. In reviewing my code, I skipped this step.
Thanks again for your help.

Iniciar sesión para comentar.

Respuestas (1)

Shashank Gupta
Shashank Gupta el 19 de Nov. de 2020
Editada: Shashank Gupta el 19 de Nov. de 2020
Hey Ryan,
you might need to convert your RGB image to Gray image first and then binarize it, this will make sure you have ndim equals to 2. Attaching a small piece of code for your referece.
% Read image
img = imread('A,T=8min,V=40mL,TR.JPG');
% Convert RGB to gray.
im = rgb2gray(img);
% Binarize.
im = imbinarize(im);
% Use regionprop function according to your necessity.
stats = regionprops('table',im,'Centroid',...
'MajorAxisLength','MinorAxisLength')
Hope this helped.
Cheers.
  3 comentarios
Shashank Gupta
Shashank Gupta el 19 de Nov. de 2020
Yes rik, my mistake, I will edit it and correct it. Thank for noticing.
Ryan Tigera
Ryan Tigera el 19 de Nov. de 2020
Thanks to you both. This has resolved my issue

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by