上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
转载自: https://blog.csdn.net/u011070171/article/details/52292680 这是因为当前版本的caffe的cudnn实现与系统所安装的cudnn的版本不一致引起的。 解决办法: 1.将./include/caffe/util/cudnn.hpp 换成 Read More
posted @ 2018-03-28 11:38 rainsoul Views(2028) Comments(0) Diggs(1) Edit
参考: https://www.pyimagesearch.com/2015/09/07/blur-detection-with-opencv/ https://www.cnblogs.com/arkenstone/p/7900978.html 先对图像用拉普拉斯算子进行滤波,然后求取得到的结果图像 Read More
posted @ 2018-03-26 14:40 rainsoul Views(8520) Comments(0) Diggs(0) Edit
转载自:http://tbfungeek.github.io/2016/03/05/Opencv-%E5%AE%89%E8%A3%85%E8%BF%87%E7%A8%8B%E4%B8%AD%E5%87%BA%E7%8E%B0%E7%9A%84%E9%94%99%E8%AF%AF/ 3.Qt 编写的代 Read More
posted @ 2018-03-08 11:38 rainsoul Views(10464) Comments(0) Diggs(0) Edit
https://www.zhihu.com/question/28385679 如上,将三维的操作转换到二维上面去做,然后调用GEMM库进行矩阵间的运算得到最后结果。 两个矩阵相乘,需要中间的那个维度相同,这个相同的维度就是C×K×K,其中C是Feature map的维度,K为卷积核的边长。 按照卷 Read More
posted @ 2018-03-02 09:15 rainsoul Views(408) Comments(0) Diggs(0) Edit
原文:http://yangguang2009.github.io/2016/12/18/deeplearning/recurrent-neural-networks-for-deep-learning/ 由于平时接触大都是图像处理,因此对于CNN比较熟悉,但是对于RNN(主要用于时序信号处理),却 Read More
posted @ 2018-03-01 17:42 rainsoul Views(253) Comments(0) Diggs(0) Edit
Tesla V100 cuda9.0 caffe编译的时候报上述错误,修改方法: 将前面两行注释掉,再次编译。 Read More
posted @ 2018-02-28 10:27 rainsoul Views(11268) Comments(0) Diggs(2) Edit
首先选取图像中的Roi区域,然后对Roi区域进行赋值,那么原图像相应的区域也跟着变化了: 上述代码是将Roi区域进行随机的颜色填充 再例如: 再例如: 另外生成一定范围的随机数:https://www.cnblogs.com/vathena/articles/4356646.html Read More
posted @ 2018-02-27 17:22 rainsoul Views(6020) Comments(0) Diggs(0) Edit
https://stackoverflow.com/questions/38369565/how-to-get-learning-rate-or-iteration-times-when-define-new-layer-in-caffe 参考上述网址上的方法,需要修改 common.hpp sol Read More
posted @ 2018-02-27 16:27 rainsoul Views(5960) Comments(0) Diggs(0) Edit
转自:http://www.cnblogs.com/dwdxdy/p/3261742.html 一、问题描述 问题描述:N个人分配N项任务,一个人只能分配一项任务,一项任务只能分配给一个人,将一项任务分配给一个人是需要支付报酬,如何分配任务,保证支付的报酬总数最小。 问题数学描述: 二、实例分析 穷 Read More
posted @ 2018-02-24 17:43 rainsoul Views(3870) Comments(0) Diggs(0) Edit
代码如上,参考https://docs.opencv.org/trunk/d8/d19/tutorial_stitcher.html 运行时报错cv::Stitcher::ERR_NEED_MORE_IMGS (1),后来查找原因,发现是我随便选取了两张图片进行拼接,然而这两张图片并没有重叠的部分, Read More
posted @ 2018-02-08 09:27 rainsoul Views(3202) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页