-
LBP特征提取
资源描述本代码为LBP特征提取代码,在Main中,包括uniformLBP提取和灰度不变的特征提取两种实现,文件中包含测试图片,效果很好,打开main中的注释就能运行。
- 2022-07-21 02:45:09下载
- 积分:1
-
显示互联网照片
资源描述
显示互联网上的照片
调用互联网地址读取照片信息,并写入至本地。供使用者使用与参阅,VB6.0版本
- 2023-08-20 09:10:03下载
- 积分:1
-
opencv中摄像头的调取与图像的处理
资源描述这里在VS2010和opencv2.4.9的环境下编码的调取摄像头并对摄像头捕捉到的图像进行处理。第一步:初始化摄像头。第二步:设置图像属性。第三步:获取一帧图像》第四步:显示图像cvshowimage().第五步:保存图像。第六步:对图像进行阈值分割。第七步:对图像进行二值化处理.
- 2022-03-04 05:12:48下载
- 积分:1
-
完整的指纹识别源代码 vc版
// FingerDemo.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "FingerDemo.h"
#include "MainFrm.h"
#include "ChildFrm.h"
#include "FingerDemoSet.h"
#include "FingerDemoDoc.h"
#include "FingerDemoView.h"
#include "FingerDBM.h"
#include "Authentication.h"
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-08-03 16:24:52下载
- 积分:1
-
ICM算法 用于图像分割
Markov 随机场 图像分割ICM算法步骤1.设定图像的分类数K、势函数B以及算法迭代次数IterMax2.使用K-均值算法计算初始分割结果3.估计特征场参数4.计算特征场能量 5.计算标记场能量6.根据能量最原则,估计新的分割结果7.判断终止条件是否满足,如果满足则算法停止,否则回到3
- 2023-01-05 08:35:03下载
- 积分:1
-
数字识别HOG+SVM
#include "stdafx.h"#include #include "windows.h"#include "fstream"#include using namespace std;using namespace cv;//为了方便,这一部分是利用提取HOG特征,SVM对图片进行分类。int _tmain(int argc, _TCHAR* argv[]){ vector img_path;////输入文件名变量 vector img_cat;//category类型 int nLine=0; //定义行 string buf; ifstream svm_data("C:UsersdellDesktopCharRegCharReghb1.txt"); //训练样本图片的路径都写在这个txt文件中使用bat批处理文件可以得到这个txt文件. unsigned long n; while (svm_data) //将训练样本文件依次读取进来 { if (getline(svm_data,buf))
- 2022-03-05 11:56:52下载
- 积分:1
-
Hilbert图像置乱
matlab练习程序(Hilbert图像置乱) 正好刚写了Hibert生成曲线,不如再加一篇应用的程序。关于Hilbert图像置乱,我在网上搜的应用领域主要集中在数字水印和图像加密上,而这两个领域我都没怎么接触过。大部分的图像置乱都是如下图的置乱1所示,至于置乱2则是我不小心生成的。置乱1是先把原图按hilbert曲线进行赋值,拉成一条一维数组,再reshape成一副图像。
- 2022-01-31 15:25:29下载
- 积分:1
-
获取本地摄像头,并拍照
应用背景
在线软件制作中,需要拍照上传图片,并对拍照所得图片进行处理;
将图片画在canvas画布中,对图片进行像素级的处理
关键技术canvas是HTML5新增的标签,结合JS可以实现对图像的像素级处理,这对开发在线图像处理软件提供了便利
- 2022-01-31 22:02:38下载
- 积分:1
-
labview图像二值化
图像处理在现实生活中用的越来越多,机器视觉内软件开发也越来越流行,编程语言也很多,labview变成门槛低,学的快,好用,实用。此程序使用labview的机器视觉控件进行了简单的图像二值化处理。
- 2022-03-05 16:50:32下载
- 积分:1
-
StL Data File Viewer
StereoLithography(StL) is something that is widely used in CAD/CAM, RapidPrototyping etc. The concept is that any surface or solid is exported to StL format by data exchange packages after they are modeled in commercial CAD packages. This data consists of triangulated facets that approximate the surface of the solid. No topological or geometric information is exported. The surface is subdivided into small triangles. The approximation uses chordal deflection for curved surfaces to smoothen the surface. More the smoothening required, more number of smaller triangles are generated by subdivision resulting in larger size of data file. Now, along with triangles, their facet normals are also generated. The data is written both in ASCII and binary formats. The data in ASCII is written like this:
- 2022-02-02 20:46:09下载
- 积分:1