フィルターのクリア

how to use crop using coordinate?

2 ビュー (過去 30 日間)
reza hamzeh
reza hamzeh 2020 年 1 月 24 日
編集済み: Walter Roberson 2020 年 1 月 24 日
hi. i want to crop the red square from this pic using coordinate. lets suppose coordinate of the top-left point of the red square is w/2 and h/2
where w and h are width and hight of the pic respectively. and width and hight of the red square are 20 pixel. this is my code but it dosent work. plz help me.
pic=imread('b.jpg');
[w, h, numberOfColorChannels] = size(pic);
I=imcrop(pic,[w*0.5 h*0.5 20 20]);
imshow(I)
black.jpg
  2 件のコメント
Spencer Chen
Spencer Chen 2020 年 1 月 24 日
Would be great if you describe what did not work.
Rik
Rik 2020 年 1 月 24 日
Also, it is probably a good idea to round your coordinates to integers.

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

採用された回答

Walter Roberson
Walter Roberson 2020 年 1 月 24 日
編集済み: Walter Roberson 2020 年 1 月 24 日
You need
[h, w, numberOfColorChannels] = size(pic);
not
[w, h, numberOfColorChannels] = size(pic);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by