Let’s identify some parts of the histogram: 1,dims: The number of parameters you want to collect data of. 2,bins: It is the number of subdivisions in ...
分类:
其他好文 时间:
2014-11-22 17:18:09
阅读次数:
140
用OpenCV的话,也要会一些绘图的操作。主要是画线、圆、矩形、椭圆。绘图的话,首先要了解两种类型:Point和Scalar。Point就是点的类,我们用它来表示图像当中的点,比如Point pt; pt.x = 10; pt.y = 8;或者Point pt = Point(10, 8);Scal...
分类:
其他好文 时间:
2014-11-21 23:10:37
阅读次数:
526
一、Mat类型:矩阵类型,Matrix。在openCV中,Mat是一个多维的密集数据数组。可以用来处理向量和矩阵、图像、直方图等等常见的多维数据。Mat有3个重要的方法:1、Mat mat = imread(const String* filename); 读取图像2、imshow(const st...
分类:
其他好文 时间:
2014-11-21 21:51:26
阅读次数:
269
近期项目中在学习全景相机相关知识
当然首先要开始将基本的MFC学会才能封装SDK
首先建立MFC对话框工程
具体的详细知识就不说了,网上有很多的教程。
添加如下控件
中间显示部分是picture control控件
采用定时器更新picture 显示框
首先包含opencv相关的头文件,在CUpanoCameraDlg.h中添加以下变量
pri...
分类:
编程语言 时间:
2014-11-21 20:36:18
阅读次数:
291
直方图均衡化 —— 其潜在的数学原理是一个分布(输入的亮度直方图)被映射到另一个分布 其目的是拉伸原始图像直方图,增强其对比度 To accomplish the equalization effect, the remapping should be the cumulative distribu...
分类:
其他好文 时间:
2014-11-21 18:36:44
阅读次数:
282
重定向,也就是把图像中的像素从一个地方对应到另一个地方 To accomplish the mapping process, it might be necessary to do some interpolation for non-integer pixel locations, since t...
分类:
移动开发 时间:
2014-11-21 18:24:17
阅读次数:
155
仿射变换 Affine Transformation 1,It is any transformation that can be expressed in the form of a matrix multiplication (linear transformation) followed by...
分类:
其他好文 时间:
2014-11-21 18:03:05
阅读次数:
184
[ERROR]/usr/sbin/mysqld:Thetable‘cps_effect_confirm_log_1301‘is今天对一个数据库恢复数据,是一个25G的库,在执行一半是,出现这样的报错一,查看的磁盘空间‘df-dh看到mysql的目录(不是安装目录)没有问题。二,打开mysql的配置文件my.cnf修改两个参数的大小(默认是16)..
分类:
数据库 时间:
2014-11-21 16:31:55
阅读次数:
246
/*
This program will generate
"diffuse or groundglass " effect.
*/
#include "PS_Algorithm.h"
#include
using namespace std;
using namespace cv;
int main(void)
{
string Img_name("4.jpg");...
分类:
其他好文 时间:
2014-11-21 16:14:51
阅读次数:
539
安装
https://help.ubuntu.com/community/OpenCV
bian...
分类:
其他好文 时间:
2014-11-21 12:39:16
阅读次数:
261