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년 초과 전 | 1
