
源代码
O天涯海阁O
主要从事图像分析算法设计、深度学习
展开
-
MKL sparse QR solver for least square
COO to CSR format#include <vector>#include <iostream>#include <mkl.h>#ifdef __linux__#include <stdlib.h> //for aligned alloc!#include <cstring> //believe it or not for memcpy!!#endif#include "mkl_sparse_qr.h"// -----原创 2022-03-18 10:02:24 · 788 阅读 · 0 评论 -
函数参数传递常用的三种方式
https://www.runoob.com/cprogramming/c-functions.html示例程序均以交换两个整数为例。值传递#include <stdio.h>void swap(int x, int y);void swap(int x, int y){ int temp; temp = x; x = y; y = t...转载 2019-05-21 13:30:28 · 1147 阅读 · 0 评论 -
ubuntu16.04 opencv多版本管理与切换
https://blog.csdn.net/u012986684/article/details/77490824大家好,今天说说,OpenCV的多版本切换问题!其实总的来说很简单,说下方法!1 首先当然准备两个不同版本opencv (比如2.4.9和3.1.0)2 cmake-gui 设置 CMAKE_INSTALL_PREFIX2.4.9 安装路径:/usr/local/opencv...转载 2018-12-10 15:39:33 · 2227 阅读 · 0 评论 -
Image Stitching 代码
https://github.com/kushalvyas/Python-Multiple-Image-Stitchinghttps://github.com/AmazingZhen/ImageStitchinghttps://github.com/yihui-he/panoramahttps://github.com/nothinglo/NISwGSPhttps://github.com...原创 2018-12-05 14:12:04 · 3413 阅读 · 0 评论 -
vim 编辑器安装 使用
sudo apt-get install vimubuntu 16.04 开机开启数字小键盘解决方法sudo apt-get install numlockxsudo vim /etc/rc.local:修改文件内容,在exit 0前增加以下内容并保存if [-x /usr/bin/numlockx ]; then numlockx on fivim怎么插入内容呢?...原创 2018-03-01 15:31:45 · 1941 阅读 · 0 评论 -
CNN网络优化加速开源代码汇总
网络裁剪加速 Learning Efficient Convolutional Networks through Network Slimming ICCV2017 https://github.com/liuzhuang13/slimmingCNN网络通道裁剪加速 Channel Pruning for Accelerating Very Deep Neural Networks ICC原创 2017-12-26 14:32:21 · 4499 阅读 · 1 评论 -
有开源代码的文献
目标检测开源代码汇总跟踪算法开源代码汇总人脸检测识别代码汇总人群分析、人群计数 开源代码文献及数据库语义分割+视频分割 开源代码文献集合网络优化加速开源代码汇总计算机视觉&amp;amp;amp;amp;amp;amp;amp;amp;amp;深度学习相关资源汇总 https://joshua19881228.github.io/2016-08-25-my-jumble-of-computer-vision/https://git.原创 2016-11-21 16:52:55 · 8058 阅读 · 0 评论 -
目标检测开源代码汇总 object detection algorithm codes
目标检测 Faster RCNN + SSD Single-Shot Refinement Neural Network for Object Detection https://github.com/sfzhang15/RefineDet目标检测 A Unified Multi-scale Deep Convolutional Neural Network for Fast Objec原创 2017-12-26 14:31:00 · 15033 阅读 · 2 评论 -
语义分割+视频分割 开源代码文献集合
基于单张训练样本的视频运动物体分割 Video Object Segmentation Without Temporal Information One-Shot Video Object Segmentation http://www.vision.ee.ethz.ch/~cvlsegmentation/osvos/图像语义匹配 SCNet: Learning Semantic Corre原创 2017-10-10 10:57:59 · 8858 阅读 · 2 评论 -
人群分析、人群计数 开源代码文献及数据库
Multi-scale Convolution Neural Networks for Crowd Counting Inception module 用于人群密度估计 tensorflow: https://github.com/Ling-Bao/mscnn人群密度估计 利用未标记数据辅助训练网络 Leveraging Unlabeled Data for Crowd Coun...原创 2017-10-10 11:01:11 · 8724 阅读 · 1 评论 -
VOC2012 分割数据 转 lmdb 格式 python 代码
import numpy as npimport sysfrom PIL import Imageimport lmdbimport randomimport ossys.path.append('/home/guest/caffe/python/')import caffeif __name__ == '__main__' : train_list_file = '/home/g转载 2017-07-28 10:30:01 · 2111 阅读 · 0 评论 -
Wing IDE Pro (Wing pro 6.0) for Ubuntu/linux
Wing IDE Pro (Wing pro 6.0) for Ubuntu/linux 激活首先将下面的代码保存为aa.py 文件 代码源自:http://blog.csdn.net/u012885320/article/details/68980323# aa.pyimport stringimport randomimport shaBASE16 = '0123456789ABCDE转载 2017-07-25 14:35:59 · 2300 阅读 · 1 评论 -
如何改变anaconda 的 gcc 版本?
https://www.zhihu.com/question/56272908需要讲anaconda 的 gcc 4.8 降级为 4.7去:: Anaconda Cloud 搜索gcc,找对应版本,然后运行里面给出的命令即可切换成你要的gcc,安装后,可运行 gcc –version检查版本。 需要注意的是anaconda默认的python是用gcc4.4编译的,所以,无论你怎么安装gcc,输入转载 2017-07-27 11:36:08 · 18157 阅读 · 1 评论 -
查看 CUDA cudnn 版本 & 测试 cuda 和 cudnn 有效性
https://medium.com/@changrongko/nv-how-to-check-cuda-and-cudnn-version-e05aa21daf6ccuda 版本 cat /usr/local/cuda/version.txtcudnn 版本 cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2原创 2017-08-01 15:27:09 · 244690 阅读 · 9 评论