Home | History | Annotate | Download | only in test

Lines Matching refs:mapx

638     Mat mapx, mapy;
654 CV_ImageWarpBaseTest(), mapx(), mapy(),
673 // generating the mapx, mapy matrices
675 mapx.create(dst.size(), mapx_types[rng.uniform(0, sizeof(mapx_types) / sizeof(int))]);
681 switch (mapx.type())
685 MatIterator_<Vec2s> begin_x = mapx.begin<Vec2s>(), end_x = mapx.end<Vec2s>();
724 MatIterator_<float> begin_x = mapx.begin<float>(), end_x = mapx.end<float>();
738 int width = mapx.cols << 1;
740 for (int y = 0; y < mapx.rows; ++y)
742 float * ptr = mapx.ptr<float>(y);
761 remap(src, dst, mapx, mapy, interpolation, borderType, borderValue);
766 if (mapx.type() != CV_16SC2)
767 convertMaps(mapx.clone(), mapy.clone(), mapx, mapy, CV_16SC2, interpolation == INTER_NEAREST);
775 mapy.type() == CV_16SC1) && mapx.type() == CV_16SC2);
830 CV_Assert(mapx.type() == CV_16SC2 && mapy.empty());
838 const short* yM = mapx.ptr<short>(dy);
876 CV_Assert(mapx.type() == CV_16SC2 && mapy.type() == CV_16UC1);
897 const short* yMx = mapx.ptr<short>(dy);
1066 mapx.create(dsize, CV_16SC2);
1082 short* yM = mapx.ptr<short>(dy);
1100 CV_Assert(mapx.type() == CV_16SC2 && ((inter == INTER_NEAREST && mapy.empty()) || mapy.type() == CV_16SC1));
1101 cv::remap(_src, _dst, mapx, mapy, inter, borderType, borderValue);
1193 mapx.create(dsize, CV_16SC2);
1202 short* yMx = mapx.ptr<short>(dy);
1227 CV_Assert(mapx.type() == CV_16SC2 && ((inter == INTER_NEAREST && mapy.empty()) || mapy.type() == CV_16SC1));
1228 cv::remap(_src, _dst, mapx, mapy, inter, borderType, borderValue);