bwtraceboundary函式的使用

2021-07-06 07:34:51 字數 835 閱讀 1473

%曲線跟蹤,給定搜尋起點和搜尋方向返回線條座標陣列

title('原始影象');

i=rgb2gray(rgb);

threashold=graythresh(i); %使用此函式找到最佳閾值

bw=im2bw(i,threashold);  %使用此閾值將影象轉化為二值圖

figure;

imshow(bw);

title('二值影象');

dim=size(bw);

col=round(dim(2)/2)-90;   %設定乙個列座標

row=find(bw(:,col),1);  %在該列中找到第乙個不為0的畫素座標

connectivity=8;  %8聯通方式

num_points=180;  %設定曲線最長值

contour=bwtraceboundary(bw,[row,col],'n',connectivity,num_points); %使用該函式找到所有以改點為起點的曲線

%contour中儲存的是所有點的座標

figure;

imshow(rgb);

hold on;

plot(contour(:,2),contour(:,1),'b','linewidth',2);  %在原圖中畫出來

title('結果影象');

Sql Server REPLACE函式的使用

replace 用第三個表示式替換第乙個字串表示式中出現的所有第二個給定字串表示式。語法replace string replace1 string replace2 string replace3 引數 string replace1 待搜尋的字串表示式。string replace1 可以是字元...

Sql Server REPLACE函式的使用

replace 更新替換資料庫某個欄位的的部分的值,比如替換資料庫中url欄位的網域名稱,語法 replace cloum string old string old 引數 cloum 待替換欄位的字串表示式。string old 待查詢的字串表示式。string old 替換用的字串表示式。示列 ...

如何使EnableMenuItem函式的呼叫有效

在mfc環境下menu的修改在預設的情況下是通過ccmdui來改變的,呼叫enablemenuitem函式無效 不管是全域性api還是 cmenu類的成員函式 但是只要修改cframewnd類的乙個成員變數m bautomenuenable就可以使呼叫的函式有效.m bautomenuenable在...