Searched refs:video_stab (Results 1 – 2 of 2) sorted by relevance
/external/libxcam/tests/ |
D | test-video-stabilization.cpp | 64 SmartPtr<CLVideoStabilizer> video_stab; in main() local 172 video_stab = create_cl_video_stab_handler (context).dynamic_cast_ptr<CLVideoStabilizer> (); in main() 173 XCAM_ASSERT (video_stab.ptr ()); in main() 174 video_stab->set_pool_type (CLImageHandler::CLVideoPoolType); in main() 192 video_stab->set_camera_intrinsics (focal_x, focal_y, offset_x, offset_y, skew); in main() 196 video_stab->align_coordinate_system (world_to_device, device_to_image); in main() 200 video_stab->set_motion_filter (radius, stdev); in main() 231 video_stab->reset_counter (); in main() 250 ret = video_stab->execute (input_buf, output_buf); in main()
|
/external/libxcam/modules/ocl/ |
D | cl_video_stabilizer.cpp | 318 SmartPtr<CLImageHandler> video_stab; in create_cl_video_stab_handler() local 321 video_stab = new CLVideoStabilizer (context); in create_cl_video_stab_handler() 322 XCAM_ASSERT (video_stab.ptr ()); in create_cl_video_stab_handler() 324 stab_kernel = create_kernel_video_stab (context, CL_IMAGE_CHANNEL_Y, video_stab); in create_cl_video_stab_handler() 326 video_stab->add_kernel (stab_kernel); in create_cl_video_stab_handler() 328 stab_kernel = create_kernel_video_stab (context, CL_IMAGE_CHANNEL_UV, video_stab); in create_cl_video_stab_handler() 330 video_stab->add_kernel (stab_kernel); in create_cl_video_stab_handler() 332 return video_stab; in create_cl_video_stab_handler()
|