Can someone tell me how to find the summation of all the pixel values in an image?
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm trying to implement a Sum Average Difference (SAD) based code to find the difference between consecutive frames in a video to eliminate those frames which do not contain activity i.e. no motion.
채택된 답변
Bruno Pop-Stefanov
2014년 1월 22일
편집: Bruno Pop-Stefanov
2014년 1월 22일
Assuming the frames you want to compare are called img_prev and img_next, both matrices of the same size, the following function computes what you want:
function out = sad(img_prev, img_next)
% First, take the absolute value of the difference at each pixel
myAbsDiff = abs(img_prev - img_next);
% Then, sum over all pixels
out = sum(myAbsDiff(:));
end
Using (:) you can transform matrix myAbsDiff into a vector. Calling sum on a vector computes the sum of all elements in a vector.
댓글 수: 3
Image Analyst
2014년 1월 26일
편집: Image Analyst
2014년 1월 26일
No, as you can see he just defined it right there above. However, with uint8 images, it will need to be modified to allow negative numbers by casting the numbers to double.
function out = sad(img_prev, img_next)
% First, take the absolute value of the difference at each pixel
myAbsDiff = abs(double(img_prev) - double(img_next));
% Then, sum over all pixels
out = sum(myAbsDiff(:));
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!