以下代碼顯示了藍色和紅色組合的圖像。但是,如果我刪除close
聲明它產生一個灰度圖像(這是我想要的)。Matlab圖像閾值處理
爲什麼會發生,以便將來避免它?
我正在關注this tutorial on youtube。
clear;
animal1=imread('animal1.jpg');
%% GrayScale
animal2=rgb2gray(animal1);
%% scale
bright=animal2*1.5;
imshow(bright);
close;
%% threshold
binary= bright>220;
imagesc(binary);