#pragma once #include #include #include "../vp_node.h" #include "../../objects/shapes/vp_point.h" #include "../../objects/shapes/vp_line.h" #include "../../objects/vp_image_record_control_meta.h" #include "../../objects/vp_video_record_control_meta.h" namespace vp_nodes { // behaviour analysis node for stop (support multi channels) class vp_ba_wrong_direction_node: public vp_node { private: // channel -> vertexs of line, 1 channel supports only 1 left line at most (can be 0, which means no jam check on this channel) std::map> all_left_lines; // channel -> vertexs of region, 1 channel supports only 1 right line at most (can be 0, which means no jam check on this channel) std::map> all_right_lines; // channel -> status of targets (id -> num of hit frames) std::map> all_wrong_direction_checking_status; // channel -> jam status of channel (jam or not) std::map all_wrong_direction_results; // channel -> last frame index to notify jam std::map all_last_notifys; int half_width = 320; // record params bool need_record_image; bool need_record_video; // check if point inside of polygon bool point_in_poly(vp_objects::vp_point p, std::vector region); // check if direction is in right direction bool check_wrong_direction(std::vector test_line, std::vector right_line,double angle_tolerance); // jam checking logic parameters which may be configed by constructor passed in by user const int check_interval_frames = 5; const int check_min_hit_frames = 25 * 1; // 25 fps * 2 seconds const int check_notify_interval = 10; // interval time (seconds) to notify (ensure not frequently) protected: virtual std::shared_ptr handle_frame_meta(std::shared_ptr meta) override; public: vp_ba_wrong_direction_node(std::string node_name, std::map> all_left_lines, std::map> all_right_lines, int half_width, bool need_record_image = true, bool need_record_video = true); ~vp_ba_wrong_direction_node(); std::string to_string() override; }; }