How to extract coordinates from the pattern

Dear sir, i would like to extract all coordinates (white pixels) from the attached image. plz help to sort out, thanks in advance

답변 (1개)

Thorsten
Thorsten 2016년 10월 26일

0 개 추천

white = 1; % or 255, depending on the format of your image
[cy, cx] = ind2sub(size(I), find(I==1));

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

질문:

2016년 10월 26일

답변:

2016년 10월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by