필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to get output in edit box of for loop in matlab gui?

조회 수: 1 (최근 30일)
HEMANGI NALE
HEMANGI NALE 2019년 4월 25일
마감: Walter Roberson 2019년 4월 25일
im = imread('image5.jpg');
bw= im2bw(im,0.7);
label=bwlabel(bw);
stats=regionprops(label,'Solidity','Area');
density=[stats.Solidity];
area=[stats.Area];
high_dense_area=density>0.8;
max_area=max(area(high_dense_area));
a = max_area
if (100<a<250)
fprintf('stage 1a');
else
fprintf('stage0');
end
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 4월 25일
https://www.mathworks.com/matlabcentral/answers/458428-how-to-get-output-of-for-loop-in-edit-box-for-matlab-gui is more complete question

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by