How to calculate rgb chromaticity value for set of images?
조회 수: 6 (최근 30일)
이전 댓글 표시
댓글 수: 4
Walter Roberson
2019년 8월 18일
meanRGB = squeeze( sum(sum( double(YourImage), 1), 2) ./ (size(YourImage,1).*size(YourImage,2)) );
Or if you have R2019a or later,
meanRGB = squeeze(mean(YourImage, [1 2]));
답변 (1개)
Image Analyst
2019년 8월 18일
To convert ot grayscale, use rgb2gray().
To change the colors or enhance the colors, try the attached demos.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!