マウスのクリックで押​している間に連続的に​figから値を取得す​るにはどのような方法​が必要でしょうか?

1 view (last 30 days)
W Chen
W Chen on 28 Jun 2018
Answered: Etsuo Maeda on 29 Jun 2018
Figの中の値をマウスのクリックして取り出す方法は関数「ginput」でできますが、これではクリック一回につき一つの値しか取得できません。 領域分割をしたく、画像解析アプリ「イメージの領域分割」を参考にしながらプログラムを書いていますが、graph cutの前景と背景を選ぶときにこのアプリでは連続で多くのポイントの値を選ぶことができました。これと同じことができるようにするにはどのようにしたらいいのでしょうか?

Accepted Answer

Etsuo Maeda
Etsuo Maeda on 29 Jun 2018
Image Processing Toolboxを持っているなら、imfreehand関数が便利です。
figure, imshow('pout.tif');
h = imfreehand;
position = wait(h);
HTH

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!