HomeSort by relevance Sort by last modified time
    Searched defs:map_y (Results 1 - 7 of 7) sorted by null

  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
Remap_Demo.cpp 17 Mat map_x, map_y; variable
32 /// Create dst, map_x and map_y with the same size as src:
35 map_y.create( src.size(), CV_32FC1 );
49 /// Update map_x & map_y. Then apply remap
51 remap( src, dst, map_x, map_y, INTER_LINEAR, BORDER_CONSTANT, Scalar(0, 0, 0) );
61 * @brief Fill the map_x and map_y matrices with 4 types of mappings
76 map_y.at<float>(j,i) = 2*( j - src.rows*0.25f ) + 0.5f ;
80 map_y.at<float>(j,i) = 0 ;
85 map_y.at<float>(j,i) = (float)(src.rows - j) ;
89 map_y.at<float>(j,i) = (float)j
    [all...]
  /external/opencv3/modules/stitching/src/
warpers_cuda.cpp 55 void buildWarpPlaneMaps(int tl_u, int tl_v, PtrStepSzf map_x, PtrStepSzf map_y,
59 void buildWarpSphericalMaps(int tl_u, int tl_v, PtrStepSzf map_x, PtrStepSzf map_y,
63 void buildWarpCylindricalMaps(int tl_u, int tl_v, PtrStepSzf map_x, PtrStepSzf map_y,
91 GpuMat map_y = _map_y.getGpuMat(); local
93 device::imgproc::buildWarpPlaneMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(),
117 GpuMat map_y = _map_y.getGpuMat(); local
119 device::imgproc::buildWarpSphericalMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(), scale, StreamAccessor::getStream(stream));
142 GpuMat map_y = _map_y.getGpuMat(); local
144 device::imgproc::buildWarpCylindricalMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(), scale, StreamAccessor::getStream(stream));
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast_priv.h 110 int map_x, map_y, map_w, map_h; member in struct:dri_swrast_renderbuffer
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_mipmap_tree.c 1369 int map_x = map->x + x, map_y = map->y + y; local
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 173 GLuint map_x, map_y, map_w, map_h; member in struct:xmesa_renderbuffer
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.h 92 int map_x, map_y, map_w, map_h; member in struct:radeon_renderbuffer
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 1677 Mat map_x, map_y, dst; local
    [all...]

Completed in 409 milliseconds