• Home
  • Raw
  • Download

Lines Matching refs:mapx

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