HomeSort by relevance Sort by last modified time
    Searched refs:stitch_info (Results 1 - 5 of 5) sorted by null

  /external/libxcam/modules/ocl/
cl_image_360_stitch.cpp 166 StitchInfo stitch_info; local
170 stitch_info.merge_width[0] = 56;
171 stitch_info.merge_width[1] = 56;
173 stitch_info.crop[0].left = 96;
174 stitch_info.crop[0].right = 96;
175 stitch_info.crop[0].top = 0;
176 stitch_info.crop[0].bottom = 0;
177 stitch_info.crop[1].left = 96;
178 stitch_info.crop[1].right = 96;
179 stitch_info.crop[1].top = 0
    [all...]
cl_utils.cpp 190 const VideoBufferInfo& stitch_info)
192 XCAM_ASSERT (image_coord_y < stitch_info.height && image_coord_x < stitch_info.width);
199 uint32_t x1 = (x0 < stitch_info.width - 1) ? (x0 + 1) : x0;
201 uint32_t y1 = (y0 < stitch_info.height - 1) ? (y0 + 1) : y0;
208 y00 = stitch_mem[y0 * stitch_info.strides[0] + x0];
209 y01 = stitch_mem[y1 * stitch_info.strides[0] + x0];
210 y10 = stitch_mem[y0 * stitch_info.strides[0] + x1];
211 y11 = stitch_mem[y1 * stitch_info.strides[0] + x1];
213 u00 = stitch_mem[stitch_info.offsets[1] + y0 / 2 * stitch_info.strides[1] + XCAM_ALIGN_DOWN (x0, 2)]
    [all...]
cl_utils.h 67 const VideoBufferInfo &stitch_info,
74 const VideoBufferInfo &stitch_info,
cl_image_360_stitch.h 69 bool set_stitch_info (StitchInfo stitch_info);
  /external/libxcam/tests/
test-image-stitching.cpp 574 StitchInfo stitch_info = image_360->get_stitch_info (); local
584 cv::circle (mat, cv::Point(stitch_info.fisheye_info[i].center_x, stitch_info.fisheye_info[i].center_y),
585 stitch_info.fisheye_info[i].radius, cv::Scalar(0, 0, 255), 2);

Completed in 105 milliseconds