资源简介
用c++配置opencv库实现的提取点特征的moravec算子,自己编写,完全可用
代码片段和文件信息
// M算子.cpp: 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include
#include“opencv2/highgui/highgui.hpp“
#include
#include
#include
using namespace std;
using namespace cv;
uchar getpix(Mat& src int x int y)
{
uchar* pt = src.ptr(y);
return pt[x];
}
void setMatpix(Mat& dst int x int y float value)
{
uchar* pt = dst.ptr(y);
pt[x] = value;
}
/*
src:输入图像
kernel:移动的窗口的大小
threshold:设置的阀值大小
*/
void Moravec(Mat& src int kernal float threshold vector* corPoint)
{
int halfKernal = kernal / 2;
//float moveValue[4] = { 0 };
float minValue;
Mat dst(src.size() CV_8UC1 Scalar(0));
//遍历图像时候,没有对图像的边缘进行处理(边缘是窗口大小一半)
for (int y = halfKernal; y < src.rows - halfKernal; y++)
{
for (int x = halfKernal; x < src.cols - halfKernal; x++)
{
float moveValue[4] = { 0 };
//对图像的每一个点在 0°、45°、90°135°的变化量
for (int win = -halfKernal; win < halfKernal; win++)
{
moveValue[0] += pow(getpix(src x + win y) - getpix(src x + win + 1 y) 2);//0°方向变化量
moveValue[1] += pow(getpix(src x + win y + win) - getpix(src x + win + 1 y + win + 1) 2);//45°方向变化量
moveValue[2] += pow(getpix(src x y + win) - getpix(src x y + win + 1) 2);//90°方向变化量
moveValue[3] += pow(getpix(src x - win y + win) - getpix(src x - win - 1 y + win + 1) 2);//135°方向变化量
}
//计算四个方向移动的最小值
minValue = moveValue[0];
minValue = minValue > moveValue[1] ? moveValue[1] : minValue;
minValue = minV
- 上一篇:FCFS和SJF调度算法C++
- 下一篇:数据结构——迷宫
相关资源
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- C++ mqtt 用法
- 商品库存管理系统 C++ MFC
- c++ 多功能计算器
- C++17 In Detail
- 人脸识别(opencv_facedetect_v4l2)
- 嵌入式QtC++编程课件
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- 基于opencv的模板匹配代码
评论
共有 条评论