how to determine the size of the object using image processing
11 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Image Analyst
2013-1-21
See my image segmentation tutorial where I go over thresholding, labeling, and measuring. Also, post your image, say to http://snag.gy
7 个评论
Dhana Rizky
2021-7-30
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?
更多回答(2 个)
giridhar H M
2018-3-4
What are the applications of measuring diameter of an object within an image using MATLAB
2 个评论
ABDULLAH WAHID
2021-3-4
Hi guys
Is there anyone to explain how to find the height of an object within an image using Matlab????
Image Analyst
2021-3-4
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:
Thorsten
2013-1-21
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing and Computer Vision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!