如何在matlab中显示一幅图的RGB直方图,函数是什么?
2个回答
展开全部
用imhist函数来计算和显示图象的直方图。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码clc; clear all; close all;
I = imread('football.jpg');
figure;
subplot(1, 3, 1); imhist(I(:, :, 1)); title('R直方图');
subplot(1, 3, 2); imhist(I(:, :, 2)); title('G直方图');
subplot(1, 3, 3); imhist(I(:, :, 3)); title('B直方图');结果
I = imread('football.jpg');
figure;
subplot(1, 3, 1); imhist(I(:, :, 1)); title('R直方图');
subplot(1, 3, 2); imhist(I(:, :, 2)); title('G直方图');
subplot(1, 3, 3); imhist(I(:, :, 3)); title('B直方图');结果
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询