hii sirr in this image colorization if i exceute its showing the error that colored.image does not exist .but the images are in the folder

2 次查看(过去 30 天)
% test image colorization function for the following cases.
%
% By: Abdulrahman Ikram Siddiq
% Kirkuk - IRAQ
% Wednsday Nov.16th 2011 10:51 PM
close all
clear
%%%%%%%test case 1
% color_palette=imread('sat2.jpg');
% dummy=imread('sat1.jpg');
% gray_im=rgb2gray(dummy);
%%%%%%%test case 2
% color_palette=imread('sunset.jpg');
% dummy=imread('idea.jpg');
% gray_im=rgb2gray(dummy);
%%%%%%%test case 3
color_palette=imread('colored.jpg');
gray_im=imread('gray.jpg');
col_image=im_colorization(gray_im,color_palette);
imshow(color_palette) % display palette image
figure
imshow(uint8(gray_im)); % display gray image
figure
imshow(uint8(col_image)); % display colored image
  2 个评论
DGM
DGM 2023-5-8
For what it's worth, those images came with the rest of the code. They're in a separate folder in the archive.
Bear in mind that im_colorization() won't work unless you also get this:
At that point, it should run, but be patient. It is quite slow.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by