Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

subtract one image from another using openCV

How can I subtract one image from another using openCV?

Ps.: I coudn't use the python implementation because I'll have to do it in C++

like image 547
marionmaiden Avatar asked Mar 23 '10 17:03

marionmaiden


4 Answers

Instead of using diff or just plain subtraction im1-im2 I would rather suggest the OpenCV method cv::absdiff

using namespace cv;
Mat im1 = imread("image1.jpg");
Mat im2 = imread("image2.jpg");
Mat diff;
absdiff(im1, im2, diff);

Since images are usually stored using unsigned formats, the subtraction methods of @Dat and @ssh99 will kill all the negative differences. For example, if some pixel of a BMP image has value [20, 50, 30] for im1 and [70, 80, 90] for im2, using both im1 - im2 and diff(im1, im2, diff) will produce value [0,0,0], since 20-70 = -50, 50-80 = -30, 30-90 = -60 and all negative results will be converted to unsigned value of 0, which, in most cases, is not what you want. Method absdiff will instead calculate the absolute values of all subtractions, thus producing more reasonable [50,30,60].

like image 83
John Smith Avatar answered Oct 15 '22 19:10

John Smith


use cv::subtract() method.

Mat img1=some_img;
Mat img2=some_img;

Mat dest;

cv::subtract(img1,img2,dest); 

This performs elementwise subtract of (img1-img2). you can find more details about it http://docs.opencv.org/modules/core/doc/operations_on_arrays.html

like image 27
ssh99 Avatar answered Oct 15 '22 21:10

ssh99


#include <cv.h>
#include <highgui.h>

using namespace cv;

Mat im = imread("cameraman.tif");
Mat im2 = imread("lena.tif");

Mat diff_im = im - im2;

Change the image names. Also make sure they have the same size.

like image 44
Dat Chu Avatar answered Oct 15 '22 20:10

Dat Chu


Use LoadImage to load your images into memory, then use the Sub method.

This link contains some example code, if that will help: http://permalink.gmane.org/gmane.comp.lib.opencv/36167

like image 31
Justin Ethier Avatar answered Oct 15 '22 20:10

Justin Ethier