自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

OpenCV中文网

提问/交流可以在同名公众号后台私信

  • 博客(6)
  • 资源 (3)
  • 收藏
  • 关注

原创 OpenCV写float型Mat入硬盘

#include #include #include void writeMat(const std::string &path, const cv::Mat &m){ std::ofstream out(path.c_str()); if (out.is_open()) { for (size_t i = 0; i < m.rows; i++) { for (

2016-11-28 17:08:10 2678

转载 wget

http://www.cnblogs.com/lidp/archive/2010/03/02/1696447.htmlwget 下载整个网站,或者特定目录需要下载某个目录下面的所有文件。命令如下wget -c -r -np -k -L -p www.xxx.org/pub/path/在下载时。有用到外部域名的图片或连接。如果需要同时下载就要用-H参数。

2016-11-24 10:34:52 1044

原创 OpenCV计时函数

double t1 = (double)getTickCount();//your funt1 = (double)getTickCount() - t1;std::cout

2016-11-21 17:40:49 1296

原创 all about ubuntu tool install

1.driver and cudahttp://www.cnblogs.com/GingerZeng/p/5709032.html2.chrome http://jingyan.baidu.com/article/335530da98061b19cb41c31d.html3.libpinyin

2016-11-16 13:22:46 616

原创 根据图像色彩的背景确定阈值改变特定区域的饱和度

cv::Mat hls_Img = hlsImg.clone(); cv::MatND hist; int channels[] = { 0 }; int histSize[] = { 180 }; float hranges[] = { 0, 180 }; const float* ranges[] = { hranges }; calcHist(&hls_Img, 1, chann

2016-11-14 16:54:51 1037

原创 git用法,clone依赖的库

示例:git clone https://github.com/torrvision/crfasrnn.gitcd crfasrnngit submodule update --init --recursive

2016-11-01 13:33:53 9093

data for scikit classfication demo

data for scikit classfication demo,http://blog.csdn.net/bevison/article/details/53606975

2016-12-13

Spectral SIFT

原链接:http://ga.navi.cs.kumamoto-u.ac.jp/wiki/index.php?Spectral%20SIFT Scale-space Processing Using Polynomial Representations Spectral SIFT

2014-04-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除