Feeds
已回答
How to convert binary image to RGB image in matlab?
function [RGB_Image] = convertBinImage2RGB(BinImage) [fil, col] = size(BinImage); RGB_Image = zeros(fil,col, 3);...
How to convert binary image to RGB image in matlab?
function [RGB_Image] = convertBinImage2RGB(BinImage) [fil, col] = size(BinImage); RGB_Image = zeros(fil,col, 3);...
8 years 前 | 1