how to convert Pixel to cm
Show older comments
Hi all
Hope you are keeping good and enjoying a lot. i contoured some region of a image using imfreehand. i want to caculate the volume of every pixel inside the contour. but the information i have get in pixels[X and Y coordinate values are in pixel] and Z coordinate is thickness of the image which is in cm. i need to convert the pixel to cm to get the volume of the each pixel. is there any formula or any suggestions???
but for the whole image i have voxel size information as below. voxel size [Y=0.09cm, Y=0.09cm, Z=0.18cm].will this helpful.
any help is appreciated in advance.
6 Comments
mohd akmal masud
on 6 Dec 2017
Dear Muhammad, How you find the voxel size? [Y=0.09cm, Y=0.09cm, Z=0.18cm]????
Walter Roberson
on 6 Dec 2017
Voxel size information can be found from dicom headers if dicom was used. For MRI images the information is there fairly directly.
mohd akmal masud
on 6 Dec 2017
Thank You Walter Roberson. I got it..
Oscar Garcia
on 31 Jul 2021
Hi I was actually curious so I need to calculate the volume of a flir thermal image and my best bet is to use pixels to cm but I’m not quite sure if it’s possible to convert it from a thermal image please help if possible
Walter Roberson
on 31 Jul 2021
I do not recall having encountered a flir image that had depth information. I suppose in theory you could infer depth if you had stereo flir images, which is something that could be done and could perhaps be useful... is that what you have, two flir images of the same scene with different angles and known relationships between the views??
Image Analyst
on 31 Jul 2021
Edited: Image Analyst
on 31 Jul 2021
@Oscar Garcia (expand comments to wee Walter's above mine), what is your definition of volume? You mean the true spatial volume like units of cubic cm? You can't get that from a single 2-D image, not even a range/topographic image unless you make some assumptions as to where the "back" of the object is and what shape it has. Or maybe you mean the integrated gray value in some region of interest -- kind of like the intensity was a surface and you want the volume below the surface. I suggest you start your own question and attach your images and indicate what region in the image you want the "volume" of. In the meantime, see attached spatial calibration demo.
Answers (1)
Walter Roberson
on 17 Sep 2013
0 votes
Multiply number of pixels by 0.09cm to get length in cm. Number of total pixels times (0.09)^2 to get the area in cm^2. Multiply that by 0.18 to get volume in cm^3
7 Comments
Muhammad
on 17 Sep 2013
Walter Roberson
on 17 Sep 2013
Do not multiply coordinates, multiply number of pixels. If you had 236 pixels in X and 117 pixel in Y (236 x 117 area) then yes, 236 * 117 * 0.09 * 0.09 * 0.18 cm^3
Muhammad
on 17 Sep 2013
Image Analyst
on 17 Sep 2013
No that's not right, for a variety of reasons. First of all, imfreehand does not give continuous pixels - there can be gaps. For example if you draw really fast a square of 200 by 200 pixels, you could get 700 (x,y) coordinates, or 600 or 400 or 100, depending on how fast you drew. But whatever . . . let's say that you know for a fact that there are 200*200 = 40,000 pixels ( not 200) in the area. Then you multiply 40,000 * 0.09^2 to get the area, then multiply by .18 to get the volume. If you have a rectangle and x = 236 and the other corner is as x = 336, then the distance is 100 pixels (if you're using center-to-center, otherwise if you're counting pixels it's 101 pixels). So it's the delta x you want to multiply by the calibration factor: abs(336-236)*0.09. If you do it to one then you have to do it to the other and then that will work too: distance = .09*336 - .09*236.
Image Analyst
on 17 Sep 2013
How did you find this workbook?
Can't you just plug the x and y into polyarea() to get the area in pixels, then multiply by 0.09^2 to get the area in cm^2?
Categories
Find more on Image Segmentation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!