Imcrop and rectangle functions using "rect" but use different formats to specify
1 回表示 (過去 30 日間)
古いコメントを表示
Hello, Im using the value of rect below to determine th coordiantes of a rectangle of interest that I then use as an imput into the "rectangle" and "imcrop" functions. I see that the format of both "rects" is slightly different, with one having spaces and the other having commas.
I dont like defining the same thing twice, is it possible to derive the 2nd rect from the first rect?
rect=[margin+xcen+hw margin+ycen+hw 2*hw 2*hw]; %[x, y, width, height] (NO COMMA'S)
rectangle(ax,'Position',rect,'EdgeColor','y');
rect=[margin+xcen+hw, margin+ycen+hw, 2*hw, 2*hw]; %(WITH COMMA'S)
ImTL=imcrop(IM,rect);
Thanks
Jason
0 件のコメント
採用された回答
Sai Teja G
2024 年 1 月 22 日
編集済み: Sai Teja G
2024 年 1 月 22 日
Hi Jason,
Please see the following sample code, which demonstrates that you can declare the "rect" variable just once and still achieve the expected result. The spaces and commas in the vector are both valid MATLAB syntax for creating an array, and they are functionally equivalent.
% Sample values for the rectangle parameters
margin = 10;
xcen = 50;
ycen = 75;
hw = 20;
% Create a sample image (a 200x200 black image for this example)
IM = zeros(200, 200);
% Create a figure and axes
figure;
ax = axes;
rect=[margin+xcen+hw,margin+ycen+hw,2*hw,2*hw]; %[x, y, width, height]
rectangle(ax,'Position',rect,'EdgeColor','y');
ImTL = imcrop(IM, rect);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!