例如,如果我已經得到描述圖像上的一個矩形如何使用MATLAB內插圖像上的矢量座標?
xy=[165 88;
401 88;
401 278;
165 278];
的載體。
我如何獲得使用MATLAB內置函數以下矢量
[165 88; % increase X - hold y
166 88;
167 88;
... ;
399 88;
400 88;
401 88; % hold x - increase y
401 89;
401 90;
401 91;
... ;
401 276;
401 277;
401 278; % decrease X - hold y
400 278;
399 278;
398 278;
... ;
167 278;
166 278;
165 278; % hold x - decrease y
165 277;
165 276;
... ;
165 87];
還是需要使用for循環寫呢?
該算法必須適用於具有n點和xy座標的通用向量。使用IND2SUB
正確地說,xy不是矢量,而是2列矩陣。 – yuk 2010-03-01 19:19:04