
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 · 410 阅读 · 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 · 860 阅读 · 0 评论 -
Makefile:92: recipe for target 'obj/convolutional_kernels.o' failed
单独用GPU编译darknet源码时出现如下错误:解决方法: 修改MakefileNVCC = /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 · 4792 阅读 · 0 评论