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

  /external/libxcam/modules/ocl/
cl_utils.cpp 349 PointFloat2 image_coord =
352 map_table[row * width + col] = image_coord;
384 PointFloat2 image_coord = map_table[row * top_view_resolution_w + col];
386 map_to_specific_view (top_view_mem, stitch_mem, row, col, image_coord.x, image_coord.y, top_view_info, stitch_info);
422 PointFloat2 image_coord = map_table[row * rectified_view_resolution_w + col]; local
424 map_to_specific_view (rectified_view_mem, stitch_mem, row, col, image_coord.x, image_coord.y, rectified_view_info, stitch_info);
  /external/libxcam/xcore/
surview_fisheye_dewarp.cpp 68 PointFloat2 image_coord; local
86 cal_image_coord(cam_coord, image_coord);
88 map_table[row * table_w + col] = image_coord;
146 SurViewFisheyeDewarp::cal_image_coord(const PointFloat3 &cam_coord, PointFloat2 &image_coord)
148 image_coord.x = cam_coord.x;
149 image_coord.y = cam_coord.y;
153 PolyFisheyeDewarp::cal_image_coord(const PointFloat3 &cam_coord, PointFloat2 &image_coord)
172 image_coord.x = image_x * intrinsic_param.c + image_y * intrinsic_param.d + intrinsic_param.xc;
173 image_coord.y = image_x * intrinsic_param.e + image_y + intrinsic_param.yc;
175 image_coord.x = intrinsic_param.xc
    [all...]

Completed in 172 milliseconds