I have an image. I found the dimensions of the image as the following code:
ImageDimensions[img]
I found the image dimension as {224, 88}. Now, I run the voronoi mesh by image corners as follows:
c = ImageCorners[img, MaxFeatures -> 20];
vm = VoronoiMesh[c];
Now, I calculate the area of the meshes by following code:
area = PropertyValue[{vm, 2}, MeshCellMeasure]
I found the following values of the area:
area = {228.984, 625.627, 355.573, 683.894, 1504.49, 354.351, 1621.32,
2025.66, 1705.12, 1372.34, 151.88, 745.945, 3366.67, 272.885,
241.687, 345.624, 2768.74, 1836.03, 5300.41, 2275.76}
Now, I want to know the unit of the area of these polygons. Are the in DPI? Is it possible to present them in meter-square?


228*88=19712"dots" or pixels. Mathematica image data doesn't contain any resolution information to be able to map pixels to a physical size. – george2079 Feb 22 '16 at 22:46areawere in square-pixels, I would expectTotal @ area - 224*88to be close to zero, but it's8070.99. So I think we need access to the actual image to figure out what is going on. – m_goldberg Feb 22 '16 at 22:54