I'm trying to align a face-image to a reference face-image by using the Sum of squared Difference as an error metric (Image registration). Basically, trying achieve a similar functionality of the cvMatchTemplate function (however I don't have a template image but a common facial expression). When trying to square the difference image, I get an assertion failed error:-215. My question exactly would be: Do I have to use the Matrix multiplication operator A*A or the Per-element multiplication A.mul(A) to get the square of my difference image? (Currently I use A*A)
//Start search
Mat result;
for(int i= 0; i<15; i++){
for(int j= 0; j<15; j++){
xTrans = i; //Translation on x-Axis
yTrans = j; //Translation on y-Axis
//Initialize translation matrix
double m[2][3] = {{1,0,xTrans}, {0,1,yTrans}};
Mat map = Mat(2,3,CV_64F, m);
//Get the transformed image
warpAffine(displaced, aligned, map, aligned.size());
//Calculate the sum of squared differences
absdiff(reference,aligned,result);
try{
squared = result*result; //Error line
} catch (Exception const & e){
cerr<<"OpenCV exception: "<<e.what()<<std::endl;
}
SSD = sum(squared)[0]; //Sum of squared difference
cout <<xTrans << "," << yTrans << ","<<SSD<<endl;
}
}
Here's the error:
OpenCV Error: Assertion failed (type == B.type() && (type == CV_32FC1 || type ==
CV_64FC1 || type == CV_32FC2 || type == CV_64FC2)) in unknown function, file ..
\..\..\src\opencv\modules\core\src\matmul.cpp, line 711
OpenCV exception: ..\..\..\src\opencv\modules\core\src\matmul.cpp:711: error: (-
215) type == B.type() && (type == CV_32FC1 || type == CV_64FC1 || type == CV_32F
C2 || type == CV_64FC2)
Both images have same size and type as warpAffine is working fine. Any suggestions on why this error occurs or the correctness of my implementation would be much appreciated!
