bwboundaries函數使用--標記不同的區域

clc; clear all; I=imread('test.jpg'); figure; imshow(I); title('原始圖像'); bw=im2bw(I,graythresh(I));  %圖像二值化 figure; imshow(bw); title('二值圖像'); [b,l]=bwboundaries(bw,'noholes');  %搜索物體的外邊界  figure; imsh
相關文章
相關標籤/搜索