필터 지우기
필터 지우기

Finding value of a matrix

조회 수: 2 (최근 30일)
FIR
FIR 2012년 12월 19일
I have a 3x3 matrix, for example:
d=rand(3,3)
Now i want to implement the equation
V=1/2(d(q4,q5)+d(q5,q6))
where q5 is the centre pixel
q4,46 are neighbouring pixels
for example
d= q1 q2 q3
q4 q5 q6
q7 q8 q9
please assist
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 12월 19일
q4 and q5 and so on are values of those pixels?

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

채택된 답변

Walter Roberson
Walter Roberson 2012년 12월 19일
Hard to tell. You might be asking for
oldMatrix = double(ImageMatrix);
NewMatrix = ( oldMatrix(:,1:end-1) + oldMatrix(:,2:end) ) ./ 2;
But perhaps your "d" matrix is trying to talk about weighting the pixel values ? If so then let w1 be the weight for what you showed as d(q4,q5), and let w2 be the weight for what you showe as d(q5,q6), and then
NewMatrix = ( w1 .* oldMatrix(:,1:end-1) + w2 .* oldMatrix(:,2:end) ) ./ 2;
  댓글 수: 12
FIR
FIR 2012년 12월 19일
편집: Walter Roberson 2012년 12월 19일
Thanks walter
another thing i tought of doing it in a loop because ihave to replace some values so i tried for 7x7 from link
in the code for 7x7 matrix
for i=2:6
for j=2:6
K= A(i-1:i+1,j-1:j+1);
B(i,j)=median(K);
end
end
i get error
Subscripted assignment dimension mismatch.
Walter Roberson
Walter Roberson 2012년 12월 19일
B(i,j)=median(K(:));

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

추가 답변 (2개)

Muruganandham Subramanian
Muruganandham Subramanian 2012년 12월 19일
편집: Muruganandham Subramanian 2012년 12월 19일
d=ones(3);
V=1/2*(d(d(2,2),d(2,2))+d(d(2,2),d(2,3)))
but, If you're using rand(), d(2,2),etc.. can't be accessible, if not using ceil() or floor()..Is this you want?
  댓글 수: 7
Walter Roberson
Walter Roberson 2012년 12월 19일
The confusion is between pixel locations and pixel values. You wrote the question with d(q4,q5) which based on the way you wrote the question is trying to access the matrix d() at row index which is the value of the pixel you labeled q4, and column index which is the value of the pixel you labeled q5.
Muruganandham Subramanian
Muruganandham Subramanian 2012년 12월 19일
@FIR, I din't worked on images, anyway, by using imread() read your image and do the calculation

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


Image Analyst
Image Analyst 2012년 12월 19일
By chance do you mean just convolution with a [1 2 1]/4 kernel, where you take the average of the left pair of pixels and the right pair of pixels? If so, you'd need to extract each color plane first and then use conv2() to get the output image one color plane at a time.

Community Treasure Hunt

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

Start Hunting!

Translated by