I am doing this
Write a MATLAB function which computes the 2D joint histogram, GXY ,
of a pair of images, X and Y, of equal size. Test it on the red and green
components of the Queen Butterfly image.
Display the joint histogram, GXY , as a grey level image.
here is my attempt:
function h=histogramtest
A=imread('queen_butterfly_fish.ppm');
h=zeros(size(A,1),size(A,2));
red=A(:,:,1);
green=A(:,:,2);
row=double(red(:)+1);
col=double(green(:)+1);
%h = zeros(256,256);
for i=1:256
for j=1:256
for k = 1:size(row)
% count number of occurences where i == row(k) and j == col(k)
end
% set h(i,j) = count value you get from previous loop
end
end
imshow(h)
end
it's not working at all . Thanks in advance for help in edit the code.

3 件のコメント

KSSV
KSSV 2019 年 9 月 4 日
Why you want to run a loop and count? YOu have functions to do that..read about hist.
Brave A
Brave A 2019 年 9 月 4 日
it might a mistakes.
I tried to implement what questions asked, any help?
Brave A
Brave A 2019 年 9 月 4 日
I don't want his function becaue I have colored pictured and I want to show in gray. the first part of my code is correct but the second part , is where I am struggling .

サインインしてコメントする。

 採用された回答

Bruno Luong
Bruno Luong 2019 年 9 月 4 日
編集済み: Bruno Luong 2019 年 9 月 4 日

0 投票

% Test data
A = imread('ngc6543a.jpg');
red=A(:,:,1);
green=A(:,:,2);
% h = histcounts2(green,red,256); % compute
% or plot
histogram2(green(:),red(:),256);

4 件のコメント

Brave A
Brave A 2019 年 9 月 4 日
i don't want to use histogram function. would you plase look to the requiremnt and my code. So in my code first part is correct but the problem is in the second part. the result should be in gray
Brave A
Brave A 2019 年 9 月 4 日
you can say I need to implement the function instead of using functions does that for me :)
Bruno Luong
Bruno Luong 2019 年 9 月 4 日
編集済み: Bruno Luong 2019 年 9 月 4 日
Yeah because the loops obviously are wrong. It come down to understand what is an histogram. If it's homework, then I can't help you more.
Brave A
Brave A 2019 年 10 月 29 日

サインインしてコメントする。

その他の回答 (1 件)

Bruno Luong
Bruno Luong 2019 年 9 月 4 日
編集済み: Bruno Luong 2019 年 9 月 4 日

0 投票

% Test data
A = imread('ngc6543a.jpg');
red=A(:,:,1);
green=A(:,:,2);
h = accumarray([green(:),red(:)]+1,1,[256 256]);

カテゴリ

タグ

質問済み:

2019 年 9 月 4 日

コメント済み:

2019 年 10 月 29 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by