Clear Filters
Clear Filters

How can i find the number of pixels in any RGB image?

2 views (last 30 days)
I want to compare algorithms for face setection for which i want to find the number of pixels in it

Accepted Answer

Jonathon Gibson
Jonathon Gibson on 28 Jun 2018
image = imread('image.jpg');
[height, width, channels] = size(image);
pixels = height * width

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!