in a image with pixel size 3 mm, how can find the distances of all pixels from the bottom edge of image?

1 visualizzazione (ultimi 30 giorni)
in a image with pixel size 3 mm, how can find the distances of all pixels from the bottom edge of image?

Risposte (1)

Image Analyst
Image Analyst il 17 Apr 2015
It's simply the distance in rows times 3 mm
[rows, columns, numberOfColorChannels) = size(yourImage);
distanceInMM = 3 * (rows - thePixelsRow);

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by