matlab 如何求一幅图像的灰度值总和!

2024年11月22日 19:16
有1个网友回答
网友(1):

p = imread('000.jpg');
g = rgb2gray(p);
SM = sum(g(:))