1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #21908 from cpoerschke:issue-21459-alternative

This commit is contained in:
OpenCV Pushbot
2022-04-27 17:27:57 +00:00
committed by GitHub
-11
View File
@@ -1137,17 +1137,6 @@ static void check_resize_area(const Mat& expected, const Mat& actual, double tol
///////////////////////////////////////////////////////////////////////////
TEST(Imgproc_cvWarpAffine, regression)
{
Mat src(Size(100, 100), CV_8UC1);
Mat dst(Size(100, 100), CV_8UC1);
int w = src.cols;
int h = src.rows;
Mat M = getRotationMatrix2D(Point2f(w*0.5f, h*0.5f), 45.0, 1.0);
warpAffine(src, dst, M, Size(w, h));
}
TEST(Imgproc_fitLine_vector_3d, regression)
{
std::vector<Point3f> points_vector;