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

  /external/libxcam/wrapper/gstreamer/
main_pipe_manager.h 46 void set_image_processor (XCam::SmartPtr<XCam::CLPostImageProcessor> &processor) {
50 XCam::SmartPtr<XCam::CLPostImageProcessor> &get_image_processor () {
59 XCam::SmartPtr<XCam::CLPostImageProcessor> _image_processor;
main_dev_manager.h 80 void set_cl_post_image_processor (XCam::SmartPtr<XCam::CLPostImageProcessor> &processor) {
84 XCam::SmartPtr<XCam::CLPostImageProcessor> &get_cl_post_image_processor () {
97 XCam::SmartPtr<XCam::CLPostImageProcessor> _cl_post_image_processor;
gstxcamfilter.cpp 511 SmartPtr<CLPostImageProcessor> image_processor;
533 image_processor = new CLPostImageProcessor ();
536 image_processor->set_defog_mode ((CLPostImageProcessor::CLDefogMode) xcamfilter->defog_mode);
557 (CLPostImageProcessor::CL3DDenoiseMode) xcamfilter->denoise_3d_mode, xcamfilter->denoise_3d_ref_count);
726 SmartPtr<CLPostImageProcessor> processor = pipe_manager->get_image_processor();
    [all...]
gstxcamsrc.cpp     [all...]
  /external/libxcam/modules/ocl/
cl_post_image_processor.cpp 43 CLPostImageProcessor::CLPostImageProcessor ()
44 : CLImageProcessor ("CLPostImageProcessor")
49 , _defog_mode (CLPostImageProcessor::DefogDisabled)
53 , _3d_denoise_mode (CLPostImageProcessor::Denoise3DDisabled)
69 XCAM_LOG_DEBUG ("CLPostImageProcessor constructed");
72 CLPostImageProcessor::~CLPostImageProcessor ()
74 XCAM_LOG_DEBUG ("CLPostImageProcessor destructed");
78 CLPostImageProcessor::set_output_format (uint32_t fourcc
    [all...]
cl_post_image_processor.h 47 class CLPostImageProcessor
75 explicit CLPostImageProcessor ();
76 virtual ~CLPostImageProcessor ();
108 XCAM_DEAD_COPY (CLPostImageProcessor);
  /external/libxcam/tests/
test-pipe-manager.cpp 202 SmartPtr<CLPostImageProcessor> cl_post_processor;
270 defog_mode = CLPostImageProcessor::DefogDisabled;
272 defog_mode = CLPostImageProcessor::DefogRetinex;
274 defog_mode = CLPostImageProcessor::DefogDarkChannelPrior;
314 denoise_3d_mode = CLPostImageProcessor::Denoise3DDisabled;
316 denoise_3d_mode = CLPostImageProcessor::Denoise3DYuv;
318 denoise_3d_mode = CLPostImageProcessor::Denoise3DUV;
403 cl_post_processor = new CLPostImageProcessor ();
405 cl_post_processor->set_defog_mode ((CLPostImageProcessor::CLDefogMode) defog_mode);
407 cl_post_processor->set_3ddenoise_mode ((CLPostImageProcessor::CL3DDenoiseMode) denoise_3d_mode, denoise_3d_ref_count)
    [all...]
test-device-manager.cpp 332 SmartPtr<CLPostImageProcessor> cl_post_processor;
514 defog_type = CLPostImageProcessor::DefogDisabled;
516 defog_type = CLPostImageProcessor::DefogRetinex;
518 defog_type = CLPostImageProcessor::DefogDarkChannelPrior;
559 denoise_3d_mode = CLPostImageProcessor::Denoise3DDisabled;
561 denoise_3d_mode = CLPostImageProcessor::Denoise3DYuv;
563 denoise_3d_mode = CLPostImageProcessor::Denoise3DUV;
840 cl_post_processor = new CLPostImageProcessor ();
843 cl_post_processor->set_defog_mode ((CLPostImageProcessor::CLDefogMode)defog_type);
845 cl_post_processor->set_3ddenoise_mode ((CLPostImageProcessor::CL3DDenoiseMode) denoise_3d_mode, denoise_3d_ref_count)
    [all...]

Completed in 192 milliseconds