Feeds
回答済み
I need a simple matlab code to convert a color image to binary image and back to color image.
I understood and got binary image by using im2bw(). I = imread('image.jpg'); J = rgb2gray(I); imshow(I); imshow(J); J = im...
I need a simple matlab code to convert a color image to binary image and back to color image.
I understood and got binary image by using im2bw(). I = imread('image.jpg'); J = rgb2gray(I); imshow(I); imshow(J); J = im...
11年弱 前 | 0
質問
I need a simple matlab code to convert a color image to binary image and back to color image.
Irgb = imread('image.jpg'); threshold = 128; Igray = rgb2gray(Irgb); Ibw = Igray>threshold; imshow(Ibw); This g...
11年弱 前 | 2 件の回答 | 0