How can i find the number of pixels in any RGB image?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Manpreet Kaur
el 28 de Jun. de 2018
Respondida: Jonathon Gibson
el 28 de Jun. de 2018
I want to compare algorithms for face setection for which i want to find the number of pixels in it
0 comentarios
Respuesta aceptada
Jonathon Gibson
el 28 de Jun. de 2018
image = imread('image.jpg');
[height, width, channels] = size(image);
pixels = height * width
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!