removed irrelevant assertion.

This commit is contained in:
Vadim Pisarevsky 2010-06-10 20:56:40 +00:00
parent 432e0e0cd8
commit 023e2b2850

View File

@ -175,7 +175,7 @@ void doIteration( const Mat& img1, Mat& img2, bool isWarpPerspective,
warpPerspectiveRand(img1, img2, H12, rng);
}
else
assert( !img2.empty() && img2.cols==img1.cols && img2.rows==img1.rows );
assert( !img2.empty()/* && img2.cols==img1.cols && img2.rows==img1.rows*/ );
cout << endl << "< Extracting keypoints from second image..." << endl;
vector<KeyPoint> keypoints2;