How to classify these images as straight, left oriented, right oriented. Which method i can apply.? Couldn't find any methods after a lot of searching. can you help me.
1 次查看(过去 30 天)
显示 更早的评论
![Straight.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/199305/Straight.png)
![Left.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/199306/Left.png)
![Right.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/199307/Right.png)
4 个评论
Walter Roberson
2018-12-18
Threshold to black and white. imfill() the holes. Then do the regionprops.
采纳的回答
Image Analyst
2018-12-18
What I'd do is to extract the lower portion of the image. Then compute the location of the weighted centroid. If it's way off to the left, it's let facing. If it's to the right of the mid line, it's right facing. If it's reasonally close to the middle, it's symmetrical. Untested code
lowerRow = round(size(grayImage, 1) * 0.75);
subImage = grayImage(lowerRow:end, :)
mask = true(size(subImage));
props = regionprops(mask, subImage, 'WeightedCentroid');
xCentroid = props.WeightedCentroid(1); % Get x centroid.
columns = size(subImage, 2));
if xCentroid < 0.4 * columns
% Facing left
elseif xCentroid > 0.6 * columns
% Facing right
else
% Symmetrical so facing forward.
end
You might have to check the 04 and .6 with actual images to see where the centroid actually lies for a good sampling of real world images.
7 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!