how to determine the size of the object using image processing

60 views (last 30 days)
I want to specify the size of the object based image processing. The picture is a glass display in 2D, where there are a few rules: 1. I use to get live video images to be processed 2. Live video will get the picture, then immediately performed image processing such as: segmentation process and labeling process 3. Once labeling is complete, can be specified length of parallel sides and 2 pieces height of the object in pixels (to get the width of each of the sides and the height of the glass) 4. Calibrating the measure that has been in the can in pixels to centimeters
well, i'll simplify my question,, everybody should know the trapezoidal where it has two parralel sides and a height. my questions : how to count wide of trapezoidal using image processing (include precesses such as :segmentation, labelling,pixel calibration to centimeter)
I really hope the help of friends in this forum. Thank you

Accepted Answer

Image Analyst
Image Analyst on 21 Jan 2013
See my image segmentation tutorial where I go over thresholding, labeling, and measuring. Also, post your image, say to http://snag.gy
  7 Comments
Dhana Rizky
Dhana Rizky on 30 Jul 2021
Can you help me to get size of every room at floor plan picture of home and detect the kind of every room from text in the room there?

Sign in to comment.

More Answers (2)

giridhar H M
giridhar H M on 4 Mar 2018
What are the applications of measuring diameter of an object within an image using MATLAB
  2 Comments
ABDULLAH WAHID
ABDULLAH WAHID on 4 Mar 2021
Hi guys
Is there anyone to explain how to find the height of an object within an image using Matlab????
Image Analyst
Image Analyst on 4 Mar 2021
Yes, call regionprops() and ask for the bounding box. The bounding box format is [xLeft, yTop, width, height] so get the 4th column.
props = regionprops(mask, 'BoundingBox');
boundingBoxes = vertcat(props.BoundingBox);
heights = boundingBoxes(:, 4)
See my Image Segmentation Tutorial for a full demo:

Sign in to comment.


Thorsten
Thorsten on 21 Jan 2013
Start with point 1, see how far you can get, succeed and process with point 2, and so on, or ask a more specific question.
  1 Comment
suryani annisa
suryani annisa on 22 Jan 2013
Edited: suryani annisa on 22 Jan 2013
my image just like a trapezoidal. u know, a trapezoidal has two parralel sides and a height. After i labelled the image, what syntaxs that should use to define and know where is the two parralel sides and a height located, so i can know widht of two parralel sides and height of trapezoidal. so i can count wide of this trapezoidal. this is my image illustration <http://www.4shared.com/photo/b0YuDMB2/ilustrasi_gelas.html> image (a) is size in pixels image (b) is size in centimeter or mm

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!