フィルターのクリア

how to use slider for image processing?

1 回表示 (過去 30 日間)
Varian Adisuryo
Varian Adisuryo 2016 年 7 月 24 日
コメント済み: Image Analyst 2018 年 6 月 12 日
Hello guys, I want to ask about slider in GUI. How do I use the slider for increment level value to thresholding grayscale image and then show it in the axes box? I hope you guys understand,please help me.

採用された回答

Image Analyst
Image Analyst 2016 年 7 月 24 日
First set up the min and max properties, like 0 and 255, either in GUIDE or in your code. Then, when you need to use its value, get the slider value from any callback like this:
sliderValue = handles.slider1.Value;
Then use it to binarize an image like
binaryImage = grayImage > sliderValue;
imshow(binaryImage);
or however you want to use it.
  6 件のコメント
Bram Mast
Bram Mast 2018 年 6 月 12 日
Hi Varian
How did you finally implement this ?
Image Analyst
Image Analyst 2018 年 6 月 12 日
I imagine he used my code. But you might switch now to App Designer instead of GUIDE as that's their new way forward.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by