123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #include "nodes/base/base.hpp"
- #include "nodes/stream/streamNode.hpp"
- #include "nodes/infer/inferNode.hpp"
- #include "nodes/draw/drawNode.hpp"
- #include "nodes/httpPush/httpPush.hpp"
- int main()
- {
- // create trt model
- // std::vector<std::string> names = {
- // "person", "bicycle", "car", "motorbike", "aeroplane", "bus", "train", "truck",
- // "boat", "traffic light", "fire hydrant", "stop sign", "parking meter", "bench",
- // "bird", "cat", "dog", "horse", "sheep", "cow", "elephant", "bear", "zebra",
- // "giraffe", "backpack", "umbrella", "handbag", "tie", "suitcase", "frisbee",
- // "skis", "snowboard", "sports ball", "kite", "baseball bat", "baseball glove",
- // "skateboard", "surfboard", "tennis racket", "bottle", "wine glass", "cup",
- // "fork", "knife", "spoon", "bowl", "banana", "apple", "sandwich", "orange",
- // "broccoli", "carrot", "hot dog", "pizza", "donut", "cake", "chair", "sofa",
- // "pottedplant", "bed", "diningtable", "toilet", "tvmonitor", "laptop", "mouse",
- // "remote", "keyboard", "cell phone", "microwave", "oven", "toaster", "sink",
- // "refrigerator", "book", "clock", "vase", "scissors", "teddy bear", "hair drier",
- // "toothbrush"
- // };
- std::vector<std::string> names = {"person", "clothes", "vest" };
- std::shared_ptr<Node::StreamNode> src_node0 = std::make_shared<Node::StreamNode>("src0", "rtsp://admin:lww123456@172.16.22.16:554/Streaming/Channels/101", 0, Node::DecodeType::GPU);
- src_node0->set_skip_frame(10);
- std::shared_ptr<Node::StreamNode> src_node1 = std::make_shared<Node::StreamNode>("src1", "rtsp://admin:lww123456@172.16.22.16:554/Streaming/Channels/201", 0, Node::DecodeType::GPU);
- src_node1->set_skip_frame(10);
- std::shared_ptr<Node::StreamNode> src_node2 = std::make_shared<Node::StreamNode>("src2", "rtsp://admin:lww123456@172.16.22.16:554/Streaming/Channels/301", 0, Node::DecodeType::GPU);
- src_node2->set_skip_frame(10);
- std::shared_ptr<Infer> model = load("model/yolo11s.engine", ModelType::YOLO11, names, 0, 0.25, 0.45);
- std::shared_ptr<Node::InferNode> infer_node = std::make_shared<Node::InferNode>("infer");
- infer_node->set_model_instance(model);
- std::shared_ptr<Node::DrawNode> draw_node = std::make_shared<Node::DrawNode>("draw");
- std::shared_ptr<Node::HttpPushNode> push_node = std::make_shared<Node::HttpPushNode>("push", "172.16.20.168", 8080, "/push");
- Node::LinkNode(src_node0, infer_node);
- Node::LinkNode(src_node1, infer_node);
- Node::LinkNode(src_node2, infer_node);
- Node::LinkNode(infer_node, draw_node);
- Node::LinkNode(draw_node, push_node);
- push_node->start();
- draw_node->start();
- infer_node->start();
- src_node0->start();
- src_node1->start();
- src_node2->start();
- getchar();
- return 0;
- }
- // TODO: 模型多路复用
- // TODO: 通过配置文件创建 pipeline
- // TODO:日志系统
- // TODO: 结果推送接口 http mqtt ...
- // TODO: 电子围栏
|