What the error in this code..?
조회 수: 1 (최근 30일)
이전 댓글 표시
N = 7;
for m=1:N
fname(m,:)=files(m+7,:);
rgb = imread(fname(m,:));
imshow(rgb);
cdata = ginput;
data(:,:,m) = cdata(1:4,:);
end
For this seven images i want data where i will click.
But when i am executing this code, it shows only cursor on image but not allowing to click.. Why..?
If any mistake then tell me..?
댓글 수: 3
채택된 답변
Walter Roberson
2012년 12월 20일
Consider using roipoly()
Alternately, only ginput() one value at a time, and text() a '+' into place at the returned coordinates before going on to the next.
댓글 수: 2
Walter Roberson
2012년 12월 20일
for K = 1 : 4
thispoint = ginput(1);
text(thispoint(1), thispoint(2), '+');
points(K,:) = thispoint;
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!