
darknet
小小一剑侠
邮箱:582891884@qq.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ffmpeg对接darknet优化
#include "H264DecoderThread.h" #include "Poco/Thread.h" #include<iostream> #include<fstream> #include <stdlib.h> #include <stdio.h> #include <sys/time.h> #include <u...原创 2019-06-17 14:26:12 · 587 阅读 · 0 评论 -
ffmpeg对接darknet解码与检测方式优选
方法一: 从ffmpeg 生成bgr => cv::mat => image_t , 调用detect 1, 解码线程, 解码rtsp协议 264格式流 生成 w = 1280 h = 720 yuv420p 2, 通过 sws_scale函数将 yuv420p 缩小成 w = 1280 h = 720 AV_PIX_FMT_BGR24 格式 3, 通过opencv的IplIma...原创 2019-06-17 17:25:41 · 816 阅读 · 0 评论 -
使用darknet作物体检测
if (m_notificationq.size() <= m_config.m_tolerableDelay) { SharedIplImage pImg; pImg = pWorkNf->videoFrame.pImg; cv::Mat src(pImg); ...原创 2019-06-18 11:13:53 · 818 阅读 · 0 评论 -
OpenCV3.2+CUDA10.0 环境搭建
详见:https://blog.youkuaiyun.com/pwb1994001/article/details/81119339 OpenCV3.2+CUDA9.0+Cmake3.9 环境搭建 原因解析: cuda9不再支持2.0架构所以不用opencv 2.4而用 opencv3.2 1, 下载OpenCV 3.2.0 wget https://jaist.dl.sourceforge....转载 2019-07-15 17:55:22 · 3199 阅读 · 0 评论 -
pkg-config的用法
pkg-config的用法 pkg-config pkg-config程序是干什么用的?简单的说就是向用户向程序提供相应库的路径、版本号等信息的程序。 譬如说我们运行以下命令: pkg-config 查看gcc的CFLAGS参数 $pkg-config--libs --cflags opencv 会显示如下信息: -I/usr/include/opencv -lcxcore -lc...转载 2019-07-17 15:47:49 · 987 阅读 · 0 评论 -
cudnn安装
2.2.Downloading cuDNN In order to download cuDNN, ensure you are registered for theNVIDIA Developer Program. Go to:NVIDIA cuDNN home page. ClickDownload. Complete the short survey and click...转载 2019-07-17 16:19:30 · 985 阅读 · 0 评论