How to find min and max gray level value in GUI?
2 ビュー (過去 30 日間)
古いコメントを表示
Muhammad Harith Ramli
2016 年 10 月 10 日
コメント済み: Muhammad Harith Ramli
2016 年 10 月 10 日
I making GUI to find min and max gray level value. i do not know how to implement the function into the GUI.
<<

>>
0 件のコメント
採用された回答
Image Analyst
2016 年 10 月 10 日
Try this in your callback after the imshow() call:
minGL = min(X(:));
maxGL = max(X(:));
message = sprintf('The min gray level = %d.\nThe max gray level = %d.', minGL, maxGL);
uiwait(helpdlg(message));
1 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Red についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!