资源简介
代码对求Zernike矩进行了封装,虽然封装的不是太好,可以参考,使用时仅需配置下opencv即可
代码片段和文件信息
// ZernikeTest.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
/************************************************************
********* * OpenCV example * By wilbur 2007.12 ***************
Fast Computation of Zernike Moments
Algorithm orinal by Mukundan
Email: wilbur8415@163.com
www.opencvchina.com
*************************************************************/
#include
#include “ZernikeMoment.h“
#include
using namespace std;
double factorial(long n)//////////////
{
if(n < 0)
return(0.0) ;
if(n == 0)
return(1.0) ;
else
return(n * factorial(n-1)) ;
}
float zernikeR(int n int l float r)/////////////////
{
int m ;
float sum = 0.0 ;
if( ((n-l) % 2) !
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1304 2015-06-05 10:03 Zernike\ZernikeMoment.h
文件 8223 2015-06-05 16:45 Zernike\ZernikeTest.cpp
文件 98 2015-06-05 16:48 Zernike\说明.txt
目录 0 2015-06-05 16:46 Zernike
----------- --------- ---------- ----- ----
9625 4
- 上一篇:基于xm
l的学生信息管理系统 - 下一篇:局域网的安全攻防测试与分析
相关资源
- promax速度格式转化成CGG速度格式的源
- 微信小程序全套源代码(后端为php)
- vfp仓库管理源代码
- FPGA实现FFT (设计报告+源代码)
- 通信大全开发源代码含modbus协议
- 局部路径规划的人工势场法 源代码
- OpenCVSharp 最新4.0 的19个
- 基于qt+opencv的人脸识别
- 张正友相机标定Opencv实现完整程序+棋
- 基于STM32 ESP8266 AT方式连接阿里云源代
- opencv2计算机视觉编程手册(中文)
- 大话数据结构原书 + 源代码
- 软件测试三角形问题的源代码及测试
- Qt+opencv+摄像头+人脸检测
- JSP基于网络超市商品销售管理系统的
- 《go语言编程3》pdf以及源代码
- c++和delphi 实现 屏幕传输/远程桌面/远
- 公司员工社会保险管理系统完整源代
- 贪吃蛇源代码
- 嵌入式linux应用开发完全手册(韦东山
- 俄罗斯方块源代码
- DSP F2812控制直流无刷电机源代码
- 计算机网络高级软件编程技术第6章
- Qt5 网络调试助手源代码 漂亮界面
- 能源管理系统-源代码,是初学者很好
- labview的josephus问题编程
- 电子万年历设计含有实验报告,原理
- CFORMView分割窗口源代码
- QT 智能家居源代码,可使用 实测通过
- 计算机网络课程设计 IP地址及其子网
评论
共有 条评论