getPositionConstraintFcn
現在の位置制約関数への関数ハンドルを返す
getPositionConstraintFcn
は推奨されません。代わりに、新しい ROI で DrawingArea
プロパティを使用してください。詳細については、バージョン履歴を参照してください。
説明
入力引数
バージョン履歴
R2008a で導入R2018b: getPositionConstraintFcn
は非推奨
R2018b 以降、既存の ROI オブジェクトのセットが新しい ROI オブジェクトのセットに置き換えられています。新しいオブジェクトは、面の色の透明度など、さらに便利な機能を提供します。新しいクラスでは、移動やクリックなどの ROI の変化に応答するために使用できるイベントもサポートされています。現時点では、以前の ROI オブジェクトを削除する予定はありませんが、追加された機能や柔軟性を活用するために、新しい ROI に切り替えてください。新しい ROI 関数を使用した ROI の作成方法の詳細については、ROI の形状の作成を参照してください。
新しい ROI を使用する場合、位置制約関数を作成して登録する必要はありません。ROI を描画および移動できる場所を制御するには、ROI の DrawingArea
プロパティを使用します。そのため、現在の制約関数を取得する関数は必要ありません。
getPositionConstraintFcn
のすべてのインスタンスを更新してください。
非推奨の使用方法 | 推奨される代替案 |
---|---|
この例では、点 ROI を作成し、 imshow('cell.tif') h = impoint(gca,20,60); % Create a position constraint function. x = get(gca,'XLim'); y = get(gca,'YLim'); fcn = makeConstrainToRectFcn('impoint',x,y);; % Register the constraint function with the ROI. setPositionContraintFcn(h,fcn); % Retrieve the handle of the current position constraint function. fcn = getPositionContraintFcn(h); | 新しい ROI では、現在の位置制約関数のハンドルの取得と同等な機能がありません。新しい ROI は imshow('cell.tif') h = drawpoint(gca,'Position',[20 60]) [height width] = size(I); %Get image dimensions h.DrawingArea = [10,10,(width-20),(height-20)]; |
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)