How to find total number of pixels in a colour image? How to find the resolution of an 2D image?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
priya h
el 24 de Feb. de 2021
Comentada: Image Analyst
el 27 de Feb. de 2021
How to find total number of pixels in a colour image? How to find the resolution of an 2D image?
2 comentarios
Image Analyst
el 27 de Feb. de 2021
I told you in the Answer below. Anyway, I'm now attaching my spatial calibration demo.
Respuesta aceptada
Image Analyst
el 24 de Feb. de 2021
[rows, columns, numColorChannels] = size(rgbImage);
numberOfPixels = rows * columns;
Digital resolution is number of rows and columns.
Spatial resolution in the real world units is the field of view in real world units divided by the number of rows or columns.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!