필터 지우기
필터 지우기

How can I detect the boundaries of different coloured objects and get coordinates of those objects?

조회 수: 2 (최근 30일)
I used canny edge detection method the get the edges of different objects. How do I get the coordinates of those objects in the image? Also, how do i get the boundaries of those objects?

채택된 답변

Image Analyst
Image Analyst 2017년 12월 29일
Use find():
[rows, columns] = find(edgeImage);

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by