opencv c 调用 tensorflow 模型、caffe模型-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3574027
  • 博文数量: 365
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2522
  • 用 户 组: 普通用户
  • 注册时间: 2019-10-28 13:40
文章分类

(365)

  • (365)
文章存档

(8)

(130)

(155)

(50)

(22)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: python/ruby

2021-06-30 17:18:05

#include

#include

#include

#include

#include

#include

using namespace std;

using namespace cv;

const char* classnames[]= {"background", "person", "bicycle", "car", "motorcycle", "airplane", "bus", "train", "truck", "boat", "traffic light",

"fire hydrant", "background", "stop sign", "parking meter", "bench", "bird", "cat", "dog", "horse", "sheep", "cow", "elephant", "bear", "zebra", "giraffe", "background", "backpack",

"umbrella", "background", "background", "handbag", "tie", "suitcase", "frisbee","skis", "snowboard", "sports ball", "kite", "baseball bat","baseball glove", "skateboard", "surfboard", "tennis racket",

"bottle", "background", "wine glass", "cup", "fork", "knife", "spoon","bowl", "banana",  "apple", "sandwich", "orange","broccoli", "carrot", "hot dog",  "pizza", "donut",

"cake", "chair", "couch", "potted plant", "bed", "background", "dining table", "background", "background", "toilet", "background","tv", "laptop", "mouse", "remote", "keyboard",

"cell phone", "microwave", "oven", "toaster", "sink", "refrigerator", "background","book", "clock", "vase", "scissors","teddy bear", "hair drier", "toothbrush"};

int main()

{

string weights = "models/frozen_inference_graph.pb";

string prototxt = "models/ssd_mobilenet_v1_coco.pbtxt";

const size_t width = 300;

const size_t height = 300;

videocapture capture;

capture.open(0);

namedwindow("input", cv_window_autosize);

int w = capture.get(cap_prop_frame_width);

int h = capture.get(cap_prop_frame_height);

printf("frame width : %d, frame height : %d", w, h);

// set up net

dnn::net net = cv::dnn::readnetfromtensorflow(weights, prototxt);

mat frame;

/*

while (1) // 模式1:测试单张图像

{

frame = imread("models/car.jpg");

imshow("input", frame);

*/

while (capture.read(frame)) // 模式2:调用摄像头

{

//预测

cv::mat inputblob = cv::dnn::blobfromimage(frame, 1. / 255, size(width, height));

net.setinput(inputblob);

mat output = net.forward();

//检测

mat detectionmat(output.size[2], output.size[3], cv_32f, output.ptr());

float confidence_threshold = 0.5;

for (int i = 0; i < detectionmat.rows; i ) {

float confidence = detectionmat.at(i, 2);

if (confidence > confidence_threshold) {

size_t objindex = (size_t)(detectionmat.at(i, 1));

float tl_x = detectionmat.at(i, 3) * frame.cols;

float tl_y = detectionmat.at(i, 4) * frame.rows;

float br_x = detectionmat.at(i, 5) * frame.cols;

float br_y = detectionmat.at(i, 6) * frame.rows;

rect object_box((int)tl_x, (int)tl_y, (int)(br_x - tl_x), (int)(br_y - tl_y));

rectangle(frame, object_box, scalar(0, 255, 0), 2, 8, 0);

puttext(frame, format("%s", classnames[objindex]), point(tl_x, tl_y), font_hershey_simplex, 1.0, scalar(0, 255, 0), 2);

}

}

imshow("ssd-video-demo", frame);

char c = waitkey(5);

if (c == 27)

{ // esc退出

break;

}

}

capture.release();

waitkey(0);

return 0;

}

阅读(2415) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图