im2double(img) vs double(img)
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, What is difference between im2double(img) vs double(img) ? Thanks
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 17 de Jul. de 2016
Editada: Azzi Abdelmalek
el 17 de Jul. de 2016
Try this example, you will see the difference
Im = reshape(uint8(linspace(1,255,25)),[5 5])
out1=double(Im)
out2=im2ddouble(Im)
You can read the help to know exactly what im2double do
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!