how to to divide two images with different size ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ghada sandoub
el 20 de Feb. de 2019
Comentada: ghada sandoub
el 20 de Feb. de 2019
i have two images, the first one size is 625x948x3 and the second one size is 633x948x3 .. how can i make the two images with the same size to make division correctly??
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 20 de Feb. de 2019
How about imresize():
image2 = imresize(image2, [size(image1, 1), size(image1, 2)]); % Make rows and columns of image2 the same as image 1.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!