How to code a fixed region of interest?

1 回表示 (過去 30 日間)
Shu Yi Ho
Shu Yi Ho 2019 年 7 月 24 日
編集済み: Shu Yi Ho 2019 年 7 月 29 日
How can i hardcode ROI (specific area)? The code below allows me to select ROI with mouse:
rect = getrect(f); % Select ROI with mouse
ori_roi{i} = originalImage( rect(2) : (rect(2)+rect(4)) , rect(1) : (rect(1)+rect(3)) , : ); % store roi in matrix
Solved:
rect = [375.5 581.5 795 363]; % fixed ROI
ori_roi{i} = originalImage( rect(2) : (rect(2)+rect(4)) , rect(1) : (rect(1)+rect(3)) , : ); % store roi in matrix
  1 件のコメント
Adam
Adam 2019 年 7 月 26 日
doc rectangle
should work fine for a rectangular ROI

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

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by