How to find the 2-D correlation coefficient between the two images, each having same pixels?
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
I have to calculate the 2-D correlation coefficient between the images img1 and img2, each having same pixels. I am doing the following:
img1 = zeros(256);
img2 = ones(256); or you can take all white image
Corr_Coeff = corr2(img1, img2)
Output: NaN (??)
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!