上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页
摘要: 本文转自: https://blog.csdn.net/thisiszdy/article/details/89576389 SSD原理解读-从入门到精通 https://blog.csdn.net/qianqing13579/article/details/82106664 目标检测中anchor 阅读全文
posted @ 2021-05-14 17:32 无左无右 阅读(455) 评论(0) 推荐(0)
摘要: R-CNN,Fast R-CNN,Faster R-CNN这些是深度学习目标检测的鼻祖。看各种博客分析,东看看西看看,不系统。这里准备系统的记录一下深度学习目标检测的发展史。这里大部分摘录其他博客。参考链接见下。 R-CNN,Fast R-CNN,Faster R-CNN原理及执行与训练的实例+实现 阅读全文
posted @ 2021-05-14 11:55 无左无右 阅读(657) 评论(0) 推荐(0)
摘要: example_1 import numpy as np import cv2 import os color_segmentation=np.asarray([ [0,0,0], #[0]背景 [180,120,120], [6,230,230], [80,50,50], [4,200,3], [ 阅读全文
posted @ 2021-05-13 11:05 无左无右 阅读(129) 评论(0) 推荐(0)
摘要: 1.PyTorch-SE-ResNet https://github.com/moskomule/senet.pytorch https://github.com/StickCui/PyTorch-SE-ResNet 2.resnet https://github.com/lxztju/pytorc 阅读全文
posted @ 2021-05-08 15:59 无左无右 阅读(326) 评论(0) 推荐(0)
摘要: 以下是为了训练识别,轻微的数据增强方法 import os import cv2 import numpy as np import random def colorjitter(img): ''' ### Different Color Jitter ### img: image cj_type: 阅读全文
posted @ 2021-05-07 20:11 无左无右 阅读(92) 评论(0) 推荐(0)
摘要: 一些打印代码: caffe.proto里面关于LayerParameter的描述 message LayerParameter { optional string name = 1; // the layer name optional string type = 2; // the layer t 阅读全文
posted @ 2021-04-28 20:27 无左无右 阅读(53) 评论(0) 推荐(0)
摘要: 1.senet SE模块主要为了提升模型对channel特征的敏感性,这个模块是轻量级的,而且可以应用在现有的网络结构中,只需要增加较少的计算量就可以带来性能的提升。 https://zhuanlan.zhihu.com/p/65459972/ https://www.cnblogs.com/bon 阅读全文
posted @ 2021-04-25 16:24 无左无右 阅读(100) 评论(0) 推荐(0)
摘要: 活久见的c++语法问题。 对于全局变量,只能初始化,不能赋值。 std::string path_wts; path_wts = "/data_1/everyday/0419/psenet/psenet0419.wts"; 在全局范围内这么写居然编译不过!报错如下: error: ‘path_wts 阅读全文
posted @ 2021-04-19 11:14 无左无右 阅读(117) 评论(0) 推荐(0)
摘要: what(): PyTorch is not linked with support for cuda devices Exception raised from getDeviceGuardImpl at /data_1/code/Libtorch/pytorch_1.7.1/c10/core/i 阅读全文
posted @ 2021-04-14 16:22 无左无右 阅读(1059) 评论(0) 推荐(0)
摘要: # cuda10.0 include_directories(/usr/local/cuda/include) link_directories(/usr/local/cuda/lib64) # tensorrt 7.0.0.11 set(TENSORRT_ROOT ${CMAKE_SOURCE_D 阅读全文
posted @ 2021-04-13 10:12 无左无右 阅读(356) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页