#ifndef PAIMAGEDRAWELEMENT_H #define PAIMAGEDRAWELEMENT_H #include #include #include #include "../StructureApp/TrackingTrigger.h" class PaImageDrawElement : public ImageFactoryElement { public: PaImageDrawElement(); // ImageFactoryElement interface void setYoloObjects(std::vector value); private: virtual void processImage(cv::Mat &) override; void darwProperty(cv::Mat &image, string key, string value, int x, int y); private: DoubleBufferedData> yoloObjects; }; #endif // IMAGEDRAWELEMENT_H