How to calculate the area of one Pixel?

55 次查看(过去 30 天)
Hi,
I would like to calculate the circularity of a particle using the following formula: circ = 4*pi*area / perimeter^2 and for this I need the area of one pixel to be able to determine the area of the whole particle. According to my research the area of the particle is the number of pixels that make it up multiplied by the area of one pixel.
Or is there another way to determine the circularity of a non-circular particle?

回答(3 个)

Diego Hens
Diego Hens 2020-9-4
I'm no expert and maybe I'll say the obvious, but I'd say you need the resolution of your image, meaning the amount of pixels in a known space. Then the calculation of the dimensions of one pixel should be obvious.
Or is your problem that you don't have any known distances?
  1 个评论
Christelle Demgne
That's exactly the problem. I don't have a known space and on my picture I don't have a single particle.

请先登录,再进行评论。


Bruno Luong
Bruno Luong 2020-9-6
编辑:Bruno Luong 2020-9-6
The formula you get doesn't depend on the UNIT assuming you use the same unit everywhere.
If length is pixel, then use area with pixel^2.
So for AREA you just count the number pixels in the object. No need to wonder of the size of the pixel.
Compute the perimeter as pixel length. The apply directly for formula.

Image Analyst
Image Analyst 2020-9-6
Circularity is a unitless metric. The units in terms of mm per pixel, or whatever units, don't matter. Even if you did convert perimeter by multiplying it by mmPerPixel, and area by multiplying it by mmPerPixel^2, those spatial calibration factors would exactly cancel out and you'd end up with the same value as it you had just simply used the pixel-based values. Look
circPixels = 4*pi*areaInPixels / perimeterInPixels^2
circReal = 4*pi*areaInPixels*mmPerPixel^2 / (perimeterInPixels*mmPerPixel)^2
See, in circReal you have mmPerPixel^2 in both the numerator and denominator and so they cancel out and so you end up with the same equation as circPixels.

标签

Community Treasure Hunt

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

Start Hunting!

Translated by