Matlab之選取特定區域的座標點

2021-10-24 21:36:21 字數 942 閱讀 7118

比如選取乙個不規則四邊形內的點:

確定四個點的座標, declaim四邊形:

2. 定義座標區域內的點:

xvector=0:0.05:2.4;

yvector=-2.4:0.05:0;

[x,y]

=meshgrid(xvector,yvector)

; % obtain all coordinates

xx=reshape(x,1,numel(x))

;yy=reshape(y,1,numel(y))

;

使用inpolygon來判斷是否在特定區域內

4. 獲取區域內的座標:

inx=x(in)

;iny=y(in)

;

另外參考:

matlab之如何將矩陣特定位置的元素置零?

MATLAB滑鼠選取ROC區域

使用roipoly來制定影象的感興趣多邊形區域。返回乙個二值影象,可以用來作為模板進行模板濾波等操作 bw roipoly i,c,r 返回由向量c和r指定的多邊形區域,其中c,r對應的是橫縱座標資訊。返回的bw 是乙個按照繪製的多邊形為邊界的二值化影象 詳見matlab百科全書 下面做了乙個用 r...

織夢中選取特定的文章

注意 選取指定的文章,只能在arclist標籤裡,list是不能選取的,同時也沒有typeid field description 例子 所有只需在arclist裡加入idlist 373,387,277 表示呼叫id號為373,387,277的文件。field title 第二種 指定keywor...

pandas實現選取特定索引的行

如下所示 import numpy as np import pandas as pd g 程式設計客棧 index np.array 2,4,6,8,10 data np.array 3,5,7,9,11 data pd.dataframe index index g程式設計客棧t print d...