// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // https://opensource.org/licenses/BSD-3-Clause // // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. //modified 12-31-2021 Q-engineering #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> #include <stdio.h> #include <vector> #include "yolo-fastestv2.h" yoloFastestv2 yoloF2; const int color_list[81][3] = { //{255 ,255 ,255}, //bg {216 , 82 , 24}, {236 ,176 , 31}, {125 , 46 ,141}, {118 ,171 , 47}, { 76 ,189 ,237}, {238 , 19 , 46}, { 76 , 76 , 76}, {153 ,153 ,153}, {255 , 0 , 0}, {255 ,127 , 0}, {190 ,190 , 0}, { 0 ,255 , 0}, { 0 , 0 ,255}, {170 , 0 ,255}, { 84 , 84 , 0}, { 84 ,170 , 0}, { 84 ,255 , 0}, {170 , 84 , 0}, {170 ,170 , 0}, {170 ,255 , 0}, {255 , 84 , 0}, {255 ,170 , 0}, {255 ,255 , 0}, { 0 , 84 ,127}, { 0 ,170 ,127}, { 0 ,255 ,127}, { 84 , 0 ,127}, { 84 , 84 ,127}, { 84 ,170 ,127}, { 84 ,255 ,127}, {170 , 0 ,127}, {170 , 84 ,127}, {170 ,170 ,127}, {170 ,255 ,127}, {255 , 0 ,127}, {255 , 84 ,127}, {255 ,170 ,127}, {255 ,255 ,127}, { 0 , 84 ,255}, { 0 ,170 ,255}, { 0 ,255 ,255}, { 84 , 0 ,255}, { 84 , 84 ,255}, { 84 ,170 ,255}, { 84 ,255 ,255}, {170 , 0 ,255}, {170 , 84 ,255}, {170 ,170 ,255}, {170 ,255 ,255}, {255 , 0 ,255}, {255 , 84 ,255}, {255 ,170 ,255}, { 42 , 0 , 0}, { 84 , 0 , 0}, {127 , 0 , 0}, {170 , 0 , 0}, {212 , 0 , 0}, {255 , 0 , 0}, { 0 , 42 , 0}, { 0 , 84 , 0}, { 0 ,127 , 0}, { 0 ,170 , 0}, { 0 ,212 , 0}, { 0 ,255 , 0}, { 0 , 0 , 42}, { 0 , 0 , 84}, { 0 , 0 ,127}, { 0 , 0 ,170}, { 0 , 0 ,212}, { 0 , 0 ,255}, { 0 , 0 , 0}, { 36 , 36 , 36}, { 72 , 72 , 72}, {109 ,109 ,109}, {145 ,145 ,145}, {182 ,182 ,182}, {218 ,218 ,218}, { 0 ,113 ,188}, { 80 ,182 ,188}, {127 ,127 , 0}, {127 ,127 , 127}, }; const char* class_names[] = { "background", "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" }; static void draw_objects(cv::Mat& cvImg, const std::vector<TargetBox>& boxes) { int person_qty = 0; for(size_t i = 0; i < boxes.size(); i++) { // std::cout<<boxes[i].x1<<" "<<boxes[i].y1<<" "<<boxes[i].x2<<" "<<boxes[i].y2 // <<" "<<boxes[i].score<<" "<<boxes[i].cate<<std::endl; if (boxes[i].cate == 0) person_qty++; char text[256]; sprintf(text, "%s %.1f%%", class_names[boxes[i].cate+1], boxes[i].score * 100); cv::Scalar color = cv::Scalar(color_list[boxes[i].cate][0], color_list[boxes[i].cate][1], color_list[boxes[i].cate][2]); int baseLine = 0; cv::Size label_size = cv::getTextSize(text, cv::FONT_HERSHEY_SIMPLEX, 0.5, 1, &baseLine); int x = boxes[i].x1; int y = boxes[i].y1 - label_size.height - baseLine; if (y < 0) y = 0; if (x + label_size.width > cvImg.cols) x = cvImg.cols - label_size.width; cv::rectangle(cvImg, cv::Rect(cv::Point(x, y), cv::Size(label_size.width, label_size.height + baseLine)), color, -1); cv::putText(cvImg, text, cv::Point(x, y + label_size.height), cv::FONT_HERSHEY_SIMPLEX, 0.5, cv::Scalar(255, 255, 255)); cv::rectangle (cvImg, cv::Point(boxes[i].x1, boxes[i].y1), cv::Point(boxes[i].x2, boxes[i].y2), color); } std::string persons = cv::format("Persons: %d", person_qty); int baseLine = 0; cv::Size label_size = cv::getTextSize(persons, cv::FONT_HERSHEY_SIMPLEX, 0.6, 1.5, &baseLine); int height = label_size.height + 15 + 5; cv::rectangle(cvImg, cv::Rect(cv::Point(0, height), cv::Size(label_size.width + 20, label_size.height + 15)), cv::Scalar(0, 0, 0), -1); putText(cvImg, persons, cv::Point(10, height + 20), cv::FONT_HERSHEY_SIMPLEX, 0.6, cv::Scalar(255, 255, 0), 1.5); } int main(int argc, char** argv) { if (argc != 3) { fprintf(stderr, "usage: %s [cam_id] [cpus]. \n cam_id is video source id;\n cpus is num threads;\n", argv[0]); return -1; } int cam_id = atoi(argv[1]); int num_threads = atoi(argv[2]); cv::Mat frame; auto tick_meter = cv::TickMeter(); yoloF2.init(false, num_threads); //we have no GPU yoloF2.loadModel("data/yolo-fastestv2-opt.param","data/yolo-fastestv2-opt.bin"); cv::VideoCapture cap(cam_id); if (!cap.isOpened()) { std::cerr << "ERROR: Unable to open the camera" << std::endl; return 0; } std::cout << "Start grabbing, press ESC on Live window to terminate" << std::endl; while(1){ cap >> frame; if (frame.empty()) { std::cerr << "ERROR: Unable to grab from the camera" << std::endl; break; } tick_meter.start(); std::vector<TargetBox> boxes; yoloF2.detection(frame, boxes); draw_objects(frame, boxes); tick_meter.stop(); //calculate frame rate float fps = (float)tick_meter.getFPS(); std::string text = cv::format("FPS: %0.2f", fps); int baseLine = 0; cv::Size label_size = cv::getTextSize(text, cv::FONT_HERSHEY_SIMPLEX, 0.6, 1.5, &baseLine); cv::rectangle(frame, cv::Rect(cv::Point(0, 0), cv::Size(label_size.width + 20, label_size.height + 15)), cv::Scalar(0, 0, 0), -1); putText(frame, text, cv::Point(10, 20), cv::FONT_HERSHEY_SIMPLEX, 0.6, cv::Scalar(0, 255, 0), 1.5); //show outputstd::cerr << "ERROR: Unable to grab from the camera" << std::endl; if (frame.empty()) { continue; } cv::namedWindow("image", cv::WINDOW_NORMAL); cv::imshow("image", frame); //cv::imwrite("test.jpg",frame); tick_meter.reset(); char esc = cv::waitKey(5); if(esc == 27) break; } return 0; }