Borrar filtros
Borrar filtros

Trouble getting im2double to show image

1 visualización (últimos 30 días)
Anthony Koning
Anthony Koning el 16 de Oct. de 2022
Respondida: KSSV el 16 de Oct. de 2022
Hi, I'm currently trying to figure out how to display an image after changing it's class type in Matlab. My code is:
im = imread('Pic.png');
imshow('Pic.png');
title ('pic')
im2 = im2double(im);
imshow ('im2')
title ('DoublePic')
but running it just gives an error message for imshow('im2'), can someone explain why this is happening? Thanks

Respuesta aceptada

KSSV
KSSV el 16 de Oct. de 2022
imshow ('im2')
In the above line im2 is considered as a string, this is not correct. It should be:
imshow (im2)

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by