Implementing equation doe 3x3 matrix

2 Ansichten (letzte 30 Tage)
FIR
FIR am 19 Dez. 2012
I have a image below ,please tell how to implement the equation for a 3x3 matrix
please assist

Akzeptierte Antwort

Matt J
Matt J am 19 Dez. 2012
Bearbeitet: Matt J am 19 Dez. 2012
qVMF=median(q(:));
  2 Kommentare
Walter Roberson
Walter Roberson am 19 Dez. 2012
Bearbeitet: Walter Roberson am 19 Dez. 2012
Will the median necessarily be the one that minimizes the sums ? Wouldn't the pixel that is closest to the mean be the one that minimizes the sums ?
Matt J
Matt J am 19 Dez. 2012
Bearbeitet: Matt J am 19 Dez. 2012
Yes, the median is the known solution to this problem, which you can also verify by comparing it with the output of the code in your Answer.
The mean minimizes the sum of squared differences.
It would get slightly complicated if there were an even number of pixels, because then the median wouldn't be attained at any of the q(i). Here, however, there are an odd number of pixels.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 19 Dez. 2012
[minsum, minidx] = min( sum(abs(bsxfun(@minus, q(:), q(:).'))) );
qVFM = q(minidx);

Kategorien

Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by