Effacer les filtres
Effacer les filtres

How to calculate the area of this object in an image?

9 vues (au cours des 30 derniers jours)
Muhammad Fiky
Muhammad Fiky le 11 Déc 2023
Commenté : Image Analyst le 11 Déc 2023
  2 commentaires
Walter Roberson
Walter Roberson le 11 Déc 2023
Is the "object" everything that is black?
Is the "object" everything that is 8-connected to the largest black area -- so excluding the small stand-alone black areas?
Is the "object" the white area inside the black area?
Muhammad Fiky
Muhammad Fiky le 11 Déc 2023
the "object" is only the black-colored area surrounding the white circle. This means the "object" does not include the white circle area inside.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 11 Déc 2023
"area" could potentially refer to a physical quantity rather than just a pixel count.
In order to calculate as a physical quantity, either you have to have existing information about the physical sizes of the pixels, or else you need to have some reference information in the image that you can relate to physical quantities as a calibration. For example if there were a ruler in the image that was known to span 1 mm then the size of the ruler could be determined and knowing the associated physical size, the physical dimensions of the represented object could be calculated.
filename = "https://www.mathworks.com/matlabcentral/answers/uploaded_files/1565304/image.jpeg";
img = imread(filename);
bw = im2bw(img);
object_pixels_count = nnz(~bw)
object_pixels_count = 142307
%for the purposes of illustration, we will not assume that individual
%pixels are square, and we will assume that **somehow** you know the actual
%physical size of each pixel
pixel_height = 2.54/80;
pixel_width = pixel_height * 4/3;
%then
object_area = object_pixels_count * pixel_height * pixel_width
object_area = 191.2725
  4 commentaires
Muhammad Fiky
Muhammad Fiky le 11 Déc 2023
i use this code to obtain the number of pixels in a unit length.
d=imdistline;
the result is that line on the bottom left, showing 105.96 amount of pixels at 0.2 mm (actual length). With this in mind, and believing that my pixels are square-shaped, what are the changes on the MATLAB code above (pixel height and pixel width)?
The following is the actual picture taken from a digital microscope. I went to some lengths to transform the actual picture into black and white using Corel.
Image Analyst
Image Analyst le 11 Déc 2023
See my attached spatial calibration demo to convert pixels into mm.

Connectez-vous pour commenter.

Catégories

En savoir plus sur MRI dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by