matlab第八課:圖像分析(下)

目標: 圖像閾值 背景評估 聯通區域標記 一、圖像閾值 graythresh():找出一個圖像的最佳閾值是什麼 im2bw():轉變圖像爲二值圖像 I = imread('rice.png'); level=graythresh(I); % 獲取閾值 bw=im2bw(I, level); % 根據閾值,轉化爲二值圖像 subplot(1,2,1); imshow(I); subplot
相關文章
相關標籤/搜索