sum of absolute differences

Good evening everyone,
I have two images which I seek correspondence by correlation using the sum of absolute differences (SAD) to find the disparity map.
I do not know how to apply the formula of SAD.
thank you

1 Kommentar

vimal
vimal am 26 Jun. 2012
You can directly use correlation method..
corr2(im1,im2) is the code for calculating the correlation between two images.
for more details type
doc corr2
in command window..

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Jan
Jan am 26 Jun. 2012

3 Stimmen

While imabsdiff is implemented as efficient MEX (no temporary array created), you can calculate the "sum of absolute differences" easily by hand also:
img1 = rand(640, 480, 3);
img2 = rand(640, 480, 3);
difference = img1 - img2;
absolute = abs(difference);
result = sum(absolute(:));
It is less obvious for UINT8 images, because abs(uint8(10) - uint8(20)) is not uint8(10), uint8(0) due to the saturation effects. If this is not wanted, convert the UINT8 image to double at first.
Alex Taylor
Alex Taylor am 30 Mär. 2012

1 Stimme

If you have the Image Processing Toolbox, consider looking at the function imabsdiff as a starting point for computing the absolute difference between two images.
help imabsdiff
indhumathi gunasekar
indhumathi gunasekar am 29 Sep. 2016

0 Stimmen

i have two 16*16 matrix,i need to find SAD between this. can anyone help me out?

Gefragt:

am 30 Mär. 2012

Community Treasure Hunt

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

Start Hunting!

Translated by