필터 지우기
필터 지우기

How to plot a 2D histogram of pixel pairs ?

조회 수: 3 (최근 30일)
Shounak Shastri
Shounak Shastri 2014년 3월 30일
답변: Image Analyst 2014년 3월 30일
I have a 'M by 2' matrix consisting of pixel pairs in an image. I want to find which pixel pairs occur more frequently. For this I need to plot a 2D histogram. Any suggestions ?

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 3월 30일
This looks like the previous question
If you can find the frequency of each pair, then you can find the most frequent one.
A=[1 2;3 4;1 2;5 6;1 2;5 6]
[ii,jj,kk]=unique(A,'rows')
f=histc(kk,1:numel(jj))
[a,idx]=max(f)
out=[ii(idx,:) a]

Image Analyst
Image Analyst 2014년 3월 30일
There is a special function made to exactly that. It's called graycomatrix() and is in the Image Processing Toolbox. It calculates what is called the Gray Level Cooccurrence Matrix. The GLCM is what you called the 2D histogram. My demo script is attached below in blue text. I show the GLCM as a 2D image, like a heat map.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by