图像处理
MarkovLGXu
这个作者很懒,什么都没留下…
展开
-
将检测的区域矩形化
#include #include #include #include #include #include #include #include using namespace std; IplImage翻译 2013-07-03 15:47:19 · 914 阅读 · 0 评论 -
matlab的输入输出
输入语句输入数值x=input('please input a number:')please input a number:22x = 22输入字符串x=input('please input a string:','s')please input a string:this is a stringx = this is a string输出语句输出显示命令自原创 2013-06-04 15:19:59 · 6840 阅读 · 0 评论 -
sift matlab 代码学习网站
http://www.robots.ox.ac.uk/~vedaldi/code/sift.html原创 2014-08-07 09:16:26 · 4396 阅读 · 0 评论 -
MATLAB中图像处理的函数
MATLAB 图像处理命令 MATLAB中图像处理的一些简单函数A、 imreadimread函数用于读入各种图像文件,其一般的用法为[X,MAP]=imread(‘filename’,‘fmt’)其中,X,MAP分别为读出的图像数据和颜色表数据,fmt为图像的格式,filename为读取的图像文件(可以加上文件的路径)。例:[X,MAP]=imread(’flowers.ti转载 2014-08-21 17:47:04 · 35986 阅读 · 1 评论 -
Deep Learning 教程翻译
Deep Learning 教程翻译 转载▼标签: 机器学习 大数据 深度学习 stanford 公开课分类: 众包项目非常激动地宣告,Stanford 教授 Andrew Ng 的 Deep Learning 教程,于今日,2013年4月8日,全部翻译成中文。这是中国屌转载 2014-08-15 16:33:28 · 1419 阅读 · 0 评论 -
wpf 调用opencv写的dll
用c调用opencv库,实现了一个dll文件,现在需要用wpf 进行调用该库实现的过程如下:原创 2014-10-15 10:09:57 · 4405 阅读 · 2 评论 -
matlab imfilter 对于 opencv filter2D 参数
将matlab img_l = imread("1.bmp");filter_edge = fspecial('sobel')';img_sobel_l = (imfilter(img_l,fspecial('sobel')','same'));对应opencv:cv::Mat srcL = cv::imread("1.bmp");cv::Point anchor(-1原创 2015-12-01 14:58:27 · 4967 阅读 · 2 评论 -
ckdtree.so: symbol _ZTINSt8ios_base7failureB5cxx11E, version GLIBCXX_3.4.21 not defined ..
caffe 编译python make pycaffe 正确;在import caffe 的时候出现错误:anaconda2/lib/python2.7/site-packages/scipy/spatial/ckdtree.so: symbol _ZTINSt8ios_base7failureB5cxx11E, version GLIBCXX_3.4.21 not defined原创 2017-12-07 17:40:43 · 2864 阅读 · 0 评论 -
The Face Recognition Algorithm That Finally Outperforms Humans
https://medium.com/the-physics-arxiv-blog/2c567adbf7fc转载 2014-05-19 14:51:16 · 870 阅读 · 0 评论 -
opencv 自带文件 peopledetect.cpp 中 HOGDescriptor hog出错,解决方法
在使用 HOGDescriptor原创 2014-06-17 10:49:58 · 5163 阅读 · 1 评论 -
OpenTLD-master MATLAB 编译的时候出错 “error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int”
该问题修改 :还一个编译器编译就可以了,我使用的vs2010 出现错误原创 2014-08-01 14:15:20 · 5928 阅读 · 3 评论 -
基于中值滤波或双边滤波方式的图像去雾效果的研讨。
http://www.cnblogs.com/Imageshop/p/3458963.html基于中值滤波或双边滤波方式的图像去雾效果的研讨。一、前言 实际上很久以前,当我初次接触图像去雾技术时,最先实现的是基于中值滤波的图像去雾,并且也有一定的效果,在我的Imageshop的集成软件中的去雾方案就是这个的实现,不过那个效果没有本文好。 而基于转载 2014-07-01 18:06:19 · 2180 阅读 · 1 评论 -
MATLAB实现hough矫正
%%%Hough变换矫正图像程序实现clcI1 = imread('111.jpg');%图像输入I = rgb2gray(I1); %转换为灰度图像I = mat2gray(I); %转换为二值图像%%bw = edge(I,'sobel','horizontal'); %sobel变换进行边缘提取[m,n]=size(bw);S=round(sqr原创 2013-08-12 11:08:47 · 4855 阅读 · 0 评论 -
opencv 实现将2副图片求和
opencv实现将2幅图像按照 通过在范围 内改变 ,这个操可以用来对两幅图像或两段视频产生时间上的 画面叠化 (cross-dissolve)效果。#include "stdafx.h"#include "opencv2/highgui/highgui.hpp"#include "opencv2/imgproc/imgproc.hpp"#incl原创 2013-07-12 20:00:58 · 1650 阅读 · 0 评论 -
腐蚀,膨胀,细化算法详解
在一个网站看到了,觉得写得很详细,转载一下http://www.cppblog.com/boob-wang/articles/62940.html腐蚀,膨胀,细化算法今天所讲的内容属于一门新兴的学科:数学形态学(Mathematical Morphology)。说起来很有意思,它是法国和德国的科学家在研究岩石结构时建立的一门学科。形态学的用途主要是获取物体拓扑和结构转载 2013-06-06 16:02:38 · 13662 阅读 · 0 评论 -
LoG算子
LoG算子在图像中,边缘可以看做是位于一阶导数较大的像素处,因此,我们可以求图像的一阶导数来确定图像的边缘,像sobel算子等一系列算子都是基于这个思想的。但是这存在几个问题:1. 噪声的影响,在噪声点处一阶导数也会取极大值 2. 求解极大值的复杂性 所以,有了使用二阶导数的方法。这里主要考虑LoG算子,即高斯-拉普拉斯算子。为什么要使用二阶导数呢? 这里要考虑转载 2014-06-04 11:08:06 · 3457 阅读 · 0 评论 -
基于区间统计的颜色直方图图像匹配算法
算法的原理在:点击打开链接原理大概意思是:将R,G,B各分量信息 颜色信息划分为 N 区间。例如下图:4X4X4 的区间 red0-6364-127128-191192-255blue0-63437818064-1274567332128-1911原创 2014-06-30 15:52:36 · 7520 阅读 · 0 评论 -
采集摄像头的视频流 并显示在picture控件上面
采集视频并显示在picture控件上面,void FunDraw(){m_pcapture = NULL;IplImage* image = 0;//original imageCvvImage cimg;m_dlg = (CTttestDlg *)GetDlgItem(IDC_VIEW1); //picture 控件的ID 值IDC_VIEW1CDC *pDC =原创 2013-04-24 21:31:34 · 2286 阅读 · 0 评论 -
installing Mayavi with pip - no module named vtk
installing Mayavi with pip - no module named vtkhttps://stackoverflow.com/questions/12182052/installing-mayavi-with-pip-no-module-named-vtk/12206868#12206868I had the same problem when i转载 2018-01-12 11:54:35 · 3377 阅读 · 0 评论