Find an object in an image by color
5 ビュー (過去 30 日間)
古いコメントを表示
So I'm using a webcam to take a color picture of an area. In that area there is a red thing and a green thing among a bunch of other things. Basically I need to return the location of the center of the red thing and the green thing. The exact shape of the objects is not known in advance.
Basically I just need to tell matlab to find the color thing and have it give me coordinates from a color image
0 件のコメント
採用された回答
Image Analyst
2017 年 4 月 16 日
See my attached demo where I track a green thing in the video. It's a simple matter to add a check for red things.
3 件のコメント
Image Analyst
2017 年 4 月 17 日
stats(r).Centroid would be a 1 by 2 array with the (x,y) coordinate of the r'th centroid. To get all centroids, for all blobs, do
centroids = [stats.Centroid];
xCentroids = centroids(1:2:end);
yCentroids = centroids(2:2:end);
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!