Home
last modified time | relevance | path

Searched refs:ImageOperator (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/hwi/
H A Dimage_processor.h49 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 Dimage_processor.cpp67 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()