フィルターのクリア

Impoly to choose all the ROI

1 回表示 (過去 30 日間)
Ann G
Ann G 2015 年 10 月 2 日
コメント済み: Image Analyst 2015 年 10 月 6 日
Hello! I would like to ask, how can I use impoly to choose all the ROI and not just the polygon that is around it!

採用された回答

Adam
Adam 2015 年 10 月 2 日
編集済み: Adam 2015 年 10 月 2 日
mask = createMask( hROI, hIm );
should give you a binary mask for the region, where hROI is your impoly and hIm is the handle of image on which it was drawn.
  5 件のコメント
Ann G
Ann G 2015 年 10 月 6 日
Thank u for your help but unfortunately i still have a problem because i dont want a mask. Using mask as a return I get 0s and 1s and I need the elements of the ROI as they are!
Image Analyst
Image Analyst 2015 年 10 月 6 日
This will apply the mask to the original image to erase the original pixels everywhere outside the mask:
% Initialize output to be same as input.
maskedImage = grayImage;
% Now erase pixels outside the mask.
maskedImage(~mask) = 0;

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

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by