Filter löschen
Filter löschen

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

9 Ansichten (letzte 30 Tage)
Muhammad Fiky
Muhammad Fiky am 11 Dez. 2023
Kommentiert: Image Analyst am 11 Dez. 2023
  2 Kommentare
Walter Roberson
Walter Roberson am 11 Dez. 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 am 11 Dez. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 11 Dez. 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 Kommentare
Muhammad Fiky
Muhammad Fiky am 11 Dez. 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 am 11 Dez. 2023
See my attached spatial calibration demo to convert pixels into mm.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MRI finden Sie in Help Center und File Exchange

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by