how to code a threshold push button by taking value from user in edit text box & using that value push button perform thresholding?
2 ビュー (過去 30 日間)
古いコメントを表示
i want to do the same by gui. a 'edit text' where i can enter number as a input an push button of threshold takes that value & performing threshold operation according to that value. and then show processed image on my 2 axes as i hv 2 axes in mygui.
0 件のコメント
回答 (1 件)
Image Analyst
2016 年 7 月 11 日
In your pushbutton callback, have this:
thresholdValue = str2double(handles.edit1.Value);
binaryImage = yourImage < thresholdValue;
axes(handles.axes1);
imshow(binaryImage);
axes(handles.axes2);
imshow(binaryImage);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!