YOLOv3在OpenCV4.0.0/OpenCV3.4.2上的C++ demo实现

6 篇文章 0 订阅
4 篇文章 0 订阅

参考:

[1] https://pjreddie.com/darknet/yolo/

[2] https://www.learnopencv.com/deep-learning-based-object-detection-using-yolov3-with-opencv-python-c/

 

1. 运行环境:

Ubuntu16.04+OpenCV3.4.2/OpenCV4.0.0

Intel® Core™ i7-8700K CPU @ 3.70GHz × 12

GeForce GTX 1060 5GB/PCIe/SSE2

注:未使用GPU,在CPU上运行,大约160ms/帧图像,貌似OpenCV对其做了优化,我尝试过直接编译darknet的源码用CPU运行,每张图片需要30s+。

2. yolo_opencv.cpp

对参考网址上的代码进行了整合和修改,能够读取图片、视频文件、摄像头。

//YOLOv3 on OpenCV
//reference:https://www.learnopencv.com/deep-learning-based-object-detection-using-yolov3-with-opencv-python-c/
//by:Andyoyo@swust
//data:2018.11.20

#include <opencv2/opencv.hpp>
#include <opencv2/dnn.hpp>
#include <opencv2/dnn/shape_utils.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <iostream>
#include <fstream>


// Remove the bounding boxes with low confidence using non-maxima suppression
void postprocess(cv::Mat& frame, std::vector<cv::Mat>& outs);

// Get the names of the output layers
std::vector<cv::String> getOutputsNames(const cv::dnn::Net& net);

// Draw the predicted bounding box
void drawPred(int classId, float conf, int left, int top, int right, int bottom, cv::Mat& frame);

// Initialize the parameters
float confThreshold = 0.5; // Confidence threshold
float nmsThreshold = 0.4;  // Non-maximum suppression threshold
int inpWidth = 416;        // Width of network's input image
int inpHeight = 416;       // Height of network's input image

static const char* about =
"This sample uses You only look once (YOLO)-Detector (https://arxiv.org/abs/1612.08242) to detect objects on camera/video/image.\n"
"Models can be downloaded here: https://pjreddie.com/darknet/yolo/\n"
"Default network is 416x416.\n"
"Class names can be downloaded here: https://github.com/pjreddie/darknet/tree/master/data\n";

static const char* params =
"{ help         | false              | ./yolo_opencv -source=../data/3.avi }" 
"{ source       | ../data/dog.jpg    | image or video for detection        }" 
"{ device       | 0                  | video for detection                 }"
"{ save         | false              | save result                         }";


std::vector<std::string> classes;

int main(int argc, char** argv)
{
    cv::CommandLineParser parser(argc, argv, params);
    // Load names of classes
    std::string classesFile = "../coco.names"; 
    std::ifstream classNamesFile(classesFile.c_str());
    if (classNamesFile.is_open())
    {
        std::string className = "";
        while (std::getline(classNamesFile, className))
            classes.push_back(className);
    }
    else{
        std::cout<<"can not open classNamesFile"<<std::endl;
    }
 
    // Give the configuration and weight files for the model
    cv::String modelConfiguration = "../yolov3.cfg";
    cv::String modelWeights = "../yolov3.weights";
 
    // Load the network
    cv::dnn::Net net = cv::dnn::readNetFromDarknet(modelConfiguration, modelWeights);
    std::cout<<"Read Darknet..."<<std::endl;
    net.setPreferableBackend(cv::dnn::DNN_BACKEND_OPENCV);
    net.setPreferableTarget(cv::dnn::DNN_TARGET_CPU);

    cv::String  outputFile = "../data/yolo_out_cpp.avi";
    std::string str;
    cv::VideoCapture cap;
    double frame_count;
    if (parser.get<bool>("help"))
    {
        std::cout << about << std::endl;
        parser.printMessage();
        return 0;
    }
    if (parser.get<cv::String>("source").empty())
    {
        int cameraDevice = parser.get<int>("device");
        cap = cv::VideoCapture(cameraDevice);
        if (!cap.isOpened())
        {
            std::cout << "Couldn't find camera: " << cameraDevice << std::endl;
            return -1;
        }
    }
    else
    {
        str=parser.get<cv::String>("source");
        cap.open(str);
        if (!cap.isOpened())
        {
            std::cout << "Couldn't open image or video: " << parser.get<cv::String>("video") << std::endl;
            return -1;
        }
        frame_count=cap.get(cv::CAP_PROP_FRAME_COUNT);
        std::cout<<"frame_count:"<<frame_count<<std::endl;
    }
 
    // Get the video writer initialized to save the output video
    cv::VideoWriter video;
    if (parser.get<bool>("save"))
    {
        if(frame_count>1)
        {
            video.open(outputFile, cv::VideoWriter::fourcc('M','J','P','G'), 28, cv::Size(cap.get(cv::CAP_PROP_FRAME_WIDTH),cap.get(cv::CAP_PROP_FRAME_HEIGHT)));
        }
        else
        {
            str.replace(str.end()-4, str.end(), "_yolo_out.jpg");
            outputFile = str;
        }
        
    }

// Process frames.
std::cout <<"Processing..."<<std::endl;
cv::Mat frame;
while (1)
{
    // get frame from the video
    cap >> frame;

    // Stop the program if reached end of video
    if (frame.empty()) {
        std::cout << "Done processing !!!" << std::endl;
        if(parser.get<bool>("save"))
        std::cout << "Output file is stored as " << outputFile << std::endl;
        std::cout << "Please enter Esc to quit!" << std::endl;
        if(cv::waitKey(0)==27)
        break;
    }

    //show frame
    cv::imshow("frame",frame);

    // Create a 4D blob from a frame.
    cv::Mat blob;
    cv::dnn::blobFromImage(frame, blob, 1/255.0, cv::Size(inpWidth, inpHeight), cv::Scalar(0,0,0), true, false);
     
    //Sets the input to the network
    net.setInput(blob);
     
    // Runs the forward pass to get output of the output layers
    std::vector<cv::Mat> outs;
    net.forward(outs, getOutputsNames(net));
     
    // Remove the bounding boxes with low confidence
    postprocess(frame, outs);
     
    // Put efficiency information. The function getPerfProfile returns the 
    // overall time for inference(t) and the timings for each of the layers(in layersTimes)
    std::vector<double> layersTimes;
    double freq = cv::getTickFrequency() / 1000;
    double t = net.getPerfProfile(layersTimes) / freq;
    std::string label = cv::format("Inference time for a frame : %.2f ms", t);
    cv::putText(frame, label, cv::Point(0, 15), cv::FONT_HERSHEY_SIMPLEX, 0.5, cv::Scalar(0, 0, 255));
     
    // Write the frame with the detection boxes
    cv::Mat detectedFrame;
    frame.convertTo(detectedFrame, CV_8U);
    //show detectedFrame
    cv::imshow("detectedFrame",detectedFrame);
    //save result
    if(parser.get<bool>("save"))
    {
        if(frame_count>1)
        {
            video.write(detectedFrame);
           
        }    
        else 
        {
            cv::imwrite(outputFile, detectedFrame);
        } 
    }

    if(cv::waitKey(10)==27)
    {
        break;
    }
  
}
    std::cout<<"Esc..."<<std::endl;
    return 0;
}


// Get the names of the output layers
std::vector<cv::String> getOutputsNames(const cv::dnn::Net& net)
{
    static std::vector<cv::String> names;
    if (names.empty())
    {
        //Get the indices of the output layers, i.e. the layers with unconnected outputs
        std::vector<int> outLayers = net.getUnconnectedOutLayers();
         
        //get the names of all the layers in the network
        std::vector<cv::String> layersNames = net.getLayerNames();
         
        // Get the names of the output layers in names
        names.resize(outLayers.size());
        for (size_t i = 0; i < outLayers.size(); ++i)
        names[i] = layersNames[outLayers[i] - 1];
    }
    return names;
}


// Remove the bounding boxes with low confidence using non-maxima suppression
void postprocess(cv::Mat& frame, std::vector<cv::Mat>& outs)
{
    std::vector<int> classIds;
    std::vector<float> confidences;
    std::vector<cv::Rect> boxes;
     
    for (size_t i = 0; i < outs.size(); ++i)
    {
        // Scan through all the bounding boxes output from the network and keep only the
        // ones with high confidence scores. Assign the box's class label as the class
        // with the highest score for the box.
        float* data = (float*)outs[i].data;
        for (int j = 0; j < outs[i].rows; ++j, data += outs[i].cols)
        {
            cv::Mat scores = outs[i].row(j).colRange(5, outs[i].cols);
            cv::Point classIdPoint;
            double confidence;
            // Get the value and location of the maximum score
            cv::minMaxLoc(scores, 0, &confidence, 0, &classIdPoint);

            if (confidence > confThreshold)
            {
                int centerX = (int)(data[0] * frame.cols);
                int centerY = (int)(data[1] * frame.rows);
                int width = (int)(data[2] * frame.cols);
                int height = (int)(data[3] * frame.rows);
                int left = centerX - width / 2;
                int top = centerY - height / 2;
                 
                classIds.push_back(classIdPoint.x);
                confidences.push_back((float)confidence);
                boxes.push_back(cv::Rect(left, top, width, height));
            }
        }
    }

    
    // Perform non maximum suppression to eliminate redundant overlapping boxes with
    // lower confidences
    std::vector<int> indices;
    cv::dnn::NMSBoxes(boxes, confidences, confThreshold, nmsThreshold, indices);
    for (size_t i = 0; i < indices.size(); ++i)
    {
        int idx = indices[i];
        cv::Rect box = boxes[idx];
        drawPred(classIds[idx], confidences[idx], box.x, box.y,
                 box.x + box.width, box.y + box.height, frame);
    }
}

// Draw the predicted bounding box
void drawPred(int classId, float conf, int left, int top, int right, int bottom, cv::Mat& frame)
{
    //Draw a rectangle displaying the bounding box
    cv::rectangle(frame, cv::Point(left, top), cv::Point(right, bottom), cv::Scalar(0, 0, 255));
     
    //Get the label for the class name and its confidence
    std::string label = cv::format("%.2f", conf);
    if (!classes.empty())
    {
        CV_Assert(classId < (int)classes.size());
        label = classes[classId] + ":" + label;
    }
    else
    {
        std::cout<<"classes is empty..."<<std::endl;
    }
     
    //Display the label at the top of the bounding box
    int baseLine;
    cv::Size labelSize = cv::getTextSize(label, cv::FONT_HERSHEY_SIMPLEX, 0.5, 1, &baseLine);
    top = std::max(top, labelSize.height);
    cv::putText(frame, label, cv::Point(left, top), cv::FONT_HERSHEY_SIMPLEX, 0.5, cv::Scalar(255,255,255));
}

3. CMakeLists.txt

本人使用的环境安装了OpenCV3.4.2和4.0.0两个版本,均调试通过,不用修改源码,只需在CMakeLists.txt文件中指定OpenCV版本即可。

cmake_minimum_required(VERSION 2.8)
#OpenCV4 must enable c++11
add_definitions(-std=c++11)
#setOpenCV_DIR
#set(OpenCV_DIR "/home/andyoyo/opencv/opencv-4.0.0-beta/build")

project(yolo_opencv)

find_package(OpenCV 4 REQUIRED)

#print OpenCV_VERSION on terminal
message(STATUS "OpenCV_VERSION:" ${OpenCV_VERSION})

file(GLOB native_srcs "src/*.cpp")

add_executable(${PROJECT_NAME} ${native_srcs})

target_link_libraries(${PROJECT_NAME} ${OpenCV_LIBS} )

4. 其他说明

运行前先下载yolov3的配置文件等,包括:coco.names,yolov3.cfg,yolov3.weights三个文件,可通过wget下载。

wget https://github.com/pjreddie/darknet/blob/master/data/coco.names?raw=true -O ./coco.names
wget https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg?raw=true -O ./yolov3.cfg
wget https://pjreddie.com/media/files/yolov3.weights

5.运行效果:

6.资源下载地址

由于有240M的资源大小限制,分成两部分上传 1)源码 2)yolov3的3个配置文件

  • 4
    点赞
  • 58
    收藏
    觉得还不错? 一键收藏
  • 25
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 25
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值