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!