Borrar filtros
Borrar filtros

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 visualizaciones (últimos 30 días)
% 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 comentarios
Walter Roberson
Walter Roberson el 31 de En. de 2016
Please show the output of
pwd
ls colored.jpg gray.jpg
and then tell us which folder the images are stored in.
DGM
DGM el 8 de Mayo de 2023
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.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by