Searched refs:ImageOperator (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/hwi/ |
| H A D | image_processor.h | 49 class ImageOperator { 51 ImageOperator(const std::string name); 52 ImageOperator(const ImageOperator&) = delete; 53 ImageOperator& operator=(const ImageOperator&) = delete; 54 virtual ~ImageOperator() = default; 91 std::unique_ptr<ImageOperator> operator_;
|
| H A D | image_processor.cpp | 67 class RGAOperator : public ImageOperator { 69 RGAOperator() : ImageOperator("rga"){}; in RGAOperator() 223 ImageOperator::ImageOperator(const std::string name) : name_(name) {} in ImageOperator() function in RkCam::ImageOperator 225 XCamReturn ImageOperator::resize(const img_buffer_t& src, img_buffer_t& dst, double fx, double fy, in resize() 231 XCamReturn ImageOperator::crop(const img_buffer_t& src, img_buffer_t& dst, img_rect_t rect, in crop() 237 XCamReturn ImageOperator::cvtcolor(img_buffer_t& src, img_buffer_t& dst, int sfmt, int dfmt, in cvtcolor() 243 XCamReturn ImageOperator::rotate(const img_buffer_t& src, img_buffer_t& dst, int rotation, in rotate() 249 XCamReturn ImageOperator::flip(const img_buffer_t& src, img_buffer_t& dst, int mode, int sync) { in flip() 254 XCamReturn ImageOperator::copy(const img_buffer_t& src, img_buffer_t& dst, int sync) { in copy()
|