Skip to content

Instantly share code, notes, and snippets.

View VolDonets's full-sized avatar
🍊
Machines is going to be a better version of us

Volodymyr Donets VolDonets

🍊
Machines is going to be a better version of us
View GitHub Profile
@VolDonets
VolDonets / demo.cpp
Created September 2, 2020 10:59 — forked from yiling-chen/demo.cpp
Usage of OpenCV C++ API to perform objection detection using MobileNet and SSD
#include <opencv2/dnn.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/core/utils/trace.hpp>
using namespace cv;
using namespace cv::dnn;
#include <fstream>
#include <iostream>
#include <cstdlib>
using namespace std;