darknet
晨海1024
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
error:conversion frim "cv::Mat"
解决方法:使用下面的函数替换掉原来的转换函数 Mat image_to_mat(image im) { image copy = copy_image(im); constrain_image(copy); if(im.c == 3) rgbgr_image(copy); Mat m(cv::Size(im.w,im.h), CV_8UC(im.c)); int x,y,c; int step...原创 2020-03-03 22:24:00 · 443 阅读 · 0 评论 -
CUDA Error: out of memory:darknet: ./src/cuda.c:36: check_error: Assertion `0' failed.
用GPU跑yolov3模型时,出现下面错误 layer filters size input output 0 conv 16 3 x 3 / 1 224 x 224 x 3 -> 224 x 224 x 16 0.043 BFLOPs 1 CUDA Error: out of...原创 2020-03-03 22:20:36 · 905 阅读 · 0 评论 -
Makefile:92: recipe for target 'obj/convolutional_kernels.o' failed
单独用GPU编译darknet源码时出现如下错误: 解决方法: 修改Makefile NVCC = /usr/local/cuda-9.0/bin/nvcc 重新编译,错误解决 make 测试一下GPU版本的yolov3 ./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg 出现如下错误: ./darknet: error...原创 2020-03-01 21:54:46 · 4838 阅读 · 0 评论
分享