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++

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
I'll try, my friend. Thanks – marionmaiden Mar 23 '10 at 19:27
feedback
#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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.