whats the meaning of this statement average = sum ( sum ( x(:,:) ) ) / n / n; ?

조회 수: 9 (최근 30일)
Gursheen
Gursheen 2014년 3월 3일
댓글: Gursheen 2014년 3월 3일
i am using this formula for increasing the contrast of the image. this is the formula used to calculate the average value of the after getting the size of the array of the image by using n=size(x,1); ? where x is the image on which we are working..

채택된 답변

Daniel Shub
Daniel Shub 2014년 3월 3일
The meaning of the statement
average = sum ( sum ( x(:,:) ) ) / n / n;
is that whoever wrote the code knows very little about MATLAB. Assuming x is an n x n matrix, the code calculates the average/mean by summing over all the columns to create a row of sums and then summing across the row to get the total sum of the matrix. It then divides by n twice to get the average. The same thing can be done much more clearly with
average = mean(x(:));
where (:) is needed to turn a matrix into a column vector.
  댓글 수: 1
Gursheen
Gursheen 2014년 3월 3일
wow..thanks a lot.. THERE IS ALSO A CODE THAT FOLLOWS WHICH NEEDS UNDERSTANDING...PLEASE HELP ME OUT WITH THIS AS WELL. HERE GRAY IS THE NAME OF THE IMAGE gray=double(gray);
gray3d(1,:,:) = circshift ( gray, [ -1, -1 ] ); gray3d(2,:,:) = circshift ( gray, [ -1, 0 ] ); gray3d(3,:,:) = circshift ( gray, [ -1, 1 ] ); gray3d(4,:,:) = circshift ( gray, [ 0, -1 ] ); gray3d(5,:,:) = circshift ( gray, [ 0, 1 ] ); gray3d(6,:,:) = circshift ( gray, [ 1, -1 ] ); gray3d(7,:,:) = circshift ( gray, [ 1, 0 ] ); gray3d(8,:,:) = circshift ( gray, [ 1, 1 ] );
gray_average = sum ( gray3d ) / 8.0;
% The SUM operation on an (L,M,N) array returns a (1,M,N) array.
gray_average_2d(1:m,1:n) = gray_average(1,1:m,1:n);
I AM UNABLE TO UNDERSTAND THE CODE...PLEASE HELP....THANKS ALOT

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by