wait
ROI の操作が完了するまで MATLAB コマンド ラインをブロック
説明
例
wait を使用したコマンド ラインの一時停止
イメージをワークスペースに読み取ります。
I = imread('pout.tif');
イメージを表示します。
imshow(I)
座標軸に ROI を作成します。マウスをクリック アンド ドラッグして、四角形 ROI を作成します。
roi = drawrectangle;
コマンド ラインに ROI の Position
プロパティの値を表示します。
roi.Position
ans = 1×4
57.0000 146.0000 141.0000 87.0000
ROI の wait
メソッドを呼び出します。これにより、ROI での操作が完了するまで、コマンド ラインがブロックされます。たとえば、ROI の移動、形状の変更、または回転 (回転を有効にした場合) を行うことができます。この例の場合、カーソルを ROI 内に配置し、イメージ上で ROI をクリック アンド ドラッグして新しい場所に移動します。完了したことを示すには、ROI をダブルクリックします。
wait(roi)
コマンド ラインに戻り、ROI の Position
プロパティの値をチェックします。値が変化し、新しい位置を表していることを確認できます。
roi.Position
ans = 1×4
15.0000 20.0000 141.0000 87.0000
入力引数
バージョン履歴
R2019b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)