How can i find the number of pixels in any RGB image?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to compare algorithms for face setection for which i want to find the number of pixels in it
0 件のコメント
採用された回答
Jonathon Gibson
2018 年 6 月 28 日
image = imread('image.jpg');
[height, width, channels] = size(image);
pixels = height * width
0 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!