/* * @Description: * @Version: 1.0 * @Autor: lishengyin * @Date: 2022-03-22 14:00:35 * @LastEditors: Your Name lishengyin@sz-sunwin.com * @LastEditTime: 2022-05-14 13:44:39 */ #ifndef __INFINEFILTER_H_ #define __INFINEFILTER_H_ #include #include #include #include #include #include #include "cnstream_frame.hpp" #include "cnstream_module.hpp" #include "easyinfer/model_loader.h" #include "easytrack/easy_track.h" #include "cnstream_frame_va.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/dnn.hpp" #include "opencv2/opencv.hpp" #include "opencv2/highgui.hpp" #include "opencv2/imgcodecs/imgcodecs.hpp" #include #include #include #include #include #include #include #include #include #include #include using namespace std; namespace cnstream{ // Pointer for frame info using CNFrameInfoPtr = std::shared_ptr; /// Pointer for infer object using CNInferObjectPtr = std::shared_ptr; class InfineFilter : public cnstream::Module, public cnstream::ModuleCreator { using super = cnstream::Module; public: explicit InfineFilter(const std::string &name) : super(name) {} bool Open(cnstream::ModuleParamSet paramSet) override; void Close() override { std::cout << this->GetName() << " Close called" << std::endl; } int Process(std::shared_ptr data) override; bool filter(cv::Mat image, std::shared_ptr& object); bool getNight(); std::string getTime(); private: InfineFilter(const InfineFilter &) = delete; InfineFilter &operator=(InfineFilter const &) = delete; vector labels; bool saveFilterResult = true; std::string files = "./output/"; int start = 21; int end = 6; }; }; #endif