图像分析之图像特征点及匹配

2024-05-31 22:32

本文主要是介绍图像分析之图像特征点及匹配,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Overview

持续更新:

  • https://cgabc.xyz/posts/d12a5e77/
  • https://cgabc.xyz/posts/42295323/

Image Corners

Types of Image Feature:

  • Edges
  • Corners (also known as interest points)
  • Blobs (also known as regions of interest )

Harris

  • cv::cornerHarris
  • Harris corner detector

Define the auto-correlation surface or SSD surface or the weighted sum of squared differences:

E A C ( Δ u ) = ∑ i ω ( x i ) [ I 0 ( x i + Δ u ) − I 0 ( x i ) ] 2 ≈ ∑ i ω ( x i ) [ I 0 ( x i ) + ∇ I 0 ( x i ) ⋅ Δ u − I 0 ( x i ) ] 2 = ∑ i ω ( x i ) [ ∇ I 0 ( x i ) ⋅ Δ u ] 2 = Δ u T ⋅ M ⋅ Δ u \begin{aligned} E_{AC}(\Delta \mathbf{u}) &= \sum_{i} \omega(\mathbf{x}_i) [ \mathbf{I}_0 ( \mathbf{x}_i + \Delta \mathbf{u} ) - \mathbf{I}_0 (\mathbf{x}_i) ]^2 \\ &\approx \sum_{i} \omega(\mathbf{x}_i) [ \mathbf{I}_0(\mathbf{x}_i) + \nabla \mathbf{I}_0(\mathbf{x}_i) \cdot \Delta\mathbf{u} - \mathbf{I}_0(\mathbf{x}_i) ]^2 \\ &= \sum_{i} \omega(\mathbf{x}_i) [ \nabla \mathbf{I}_0(\mathbf{x}_i) \cdot \Delta\mathbf{u} ]^2 \\ &= \Delta\mathbf{u}^T \cdot \mathbf{M} \cdot \Delta\mathbf{u} \end{aligned} EAC(Δu)=iω(xi)[I0(xi+Δu)I0(xi)]2iω(xi)[I0(xi)+I0(xi)ΔuI0(xi)]2=iω(xi)[I0(xi)Δu]2=ΔuTMΔu

where

∇ I 0 ( x i ) = ( ∂ I 0 ∂ x , ∂ I 0 ∂ y ) ( x i ) \nabla \mathbf{I}_0(\mathbf{x}_i) = ( \frac{\partial{\mathbf{I}_0}}{\partial{x}}, \frac{\partial{\mathbf{I}_0}}{\partial{y}} ) (\mathbf{x}_i) I0(xi)=(xI0,yI0)(xi)

written by simply the gradient

∇ I = [ I x , I y ] \nabla \mathbf{I} = [\mathbf{I}_x, \mathbf{I}_y] I=[Ix,Iy]

and the auto-correlation matrix with the weighting kernel ω \omega ω

M = ω ∗ [ I x 2 I x I y I x I y I y 2 ] \mathbf{M} = \omega * \begin{bmatrix} \mathbf{I}_x^2 & \mathbf{I}_x\mathbf{I}_y \\ \mathbf{I}_x\mathbf{I}_y & \mathbf{I}_y^2 \end{bmatrix} M=ω[Ix2IxIyIxIyIy2]

then create a score equation, which will determine if a window can contain a corner or not

R = d e t ( M ) − k ( t r a c e ( M ) ) 2 R = det(\mathbf{M}) - k (trace(\mathbf{M}))^2 R=det(M)k(trace(M))2

where

d e t ( M ) = λ 1 λ 2 det(\mathbf{M}) = \lambda_1 \lambda_2 det(M)=λ1λ2

t r a c e ( M ) = λ 1 + λ 2 trace(\mathbf{M}) = \lambda_1 + \lambda_2 trace(M)=λ1+λ2

and, λ 1 \lambda_1 λ1 and λ 2 \lambda_2 λ2 are the eigen values of M \mathbf{M} M, we can compute it by

d e t ( λ E − M ) = 0 det(\lambda E - M) = 0 det(λEM)=0

So the values of these eigen values decide whether a region is corner, edge or flat

  • When $ |R| $ is small, which happens when λ 1 \lambda_1 λ1 and λ 2 \lambda_2 λ2 are small, the region is flat.
  • When R < 0 R<0 R<0, which happens when λ 1 > > λ 2 \lambda_1 >> \lambda_2 λ1>>λ2 or vice versa, the region is edge.
  • When R R R is large, which happens when λ 1 \lambda_1 λ1 and λ 2 \lambda_2 λ2 are large and λ 1 ∼ λ 2 \lambda_1 \sim \lambda_2 λ1λ2, the region is a corner.

Shi-Tomas

  • cv::goodFeaturesToTrack

The Shi-Tomasi corner detector is based entirely on the Harris corner detector. However, one slight variation in a “selection criteria” made this detector much better than the original. It works quite well where even the Harris corner detector fails.

Later in 1994, J. Shi and C. Tomasi made a small modification to it in their paper Good Features to Track which shows better results compared to Harris Corner Detector.

The scoring function in Harris Corner Detector was given by (Harris corner strength):

R = λ 1 λ 2 − k ( λ 1 + λ 2 ) 2 \mathbf{R} = \lambda_1 \lambda_2 - k(\lambda_1 + \lambda_2)^2 R=λ1λ2k(λ1+λ2)2

Instead of this, Shi-Tomasi proposed (get the minimum eigenvalue):

R = m i n ( λ 1 , λ 2 ) R=min(\lambda_1,\lambda_2) R=min(λ1,λ2)

If R R R is greater than a certain predefined value, it can be marked as a corner

FAST

  • cv::FastFeatureDetector
  • FAST Algorithm for Corner Detection

FAST (Features from Accelerated Segment Test) algorithm was proposed by Edward Rosten and Tom Drummond in their paper “Machine learning for high-speed corner detection” in 2006 (Later revised it in 2010).

Feature Detection

检测 局部像素灰度 变化明显的地方。

  • 在图像中选取像素p,假设它的亮度为 I p I_p Ip
  • 设置一个阈值 T T
  • 以像素 p p p 为中心,选取半径为3的 Bresenham圆 上的16个像素;
  • 假设选取的圆上有连续的N个点的亮度大于 I p + T I_p+T Ip+T I p − T I_p-T IpT,则该点 p p 可被认为是特征点(N通常取12,即为 FAST-12,其他常用的N取值有9和11,分别被成为 FAST-9FAST-11);
  • 循环以上四步;

Non-maximal Suppression

FAST角点经常出现“扎堆”的情况,通过 非极大值抑制,在一定区域内仅保留响应极大值的角点,避免角点集中的问题。

SIFT

in 2004, D.Lowe, University of British Columbia, came up with a new algorithm, Scale Invariant Feature Transform (SIFT) in his paper, Distinctive Image Features from Scale-Invariant Keypoints, which extract keypoints and compute its descriptors.

该算法具有一定的仿射不变性,视角不变性,旋转不变性和光照不变性,所以在图像特征提高方面得到了最广泛的应用。

SURF

In 2006, three people, Bay, H., Tuytelaars, T. and Van Gool, L, published another paper, “SURF: Speeded Up Robust Features” which introduced a new algorithm called SURF. As name suggests, it is a speeded-up version of SIFT.

2006年,Bay和Ess等人基于SIFT算法的思路,提出了加速鲁棒特征(SURF),该算法主要针对于SIFT算法速度太慢,计算量大的缺点,使用了近似Harr小波方法来提取特征点,这种方法就是基于Hessian行列式(DoH)的斑点特征检测方法。通过在不同的尺度上利用积分图像可以有效地计算出近似Harr小波值,简化了二阶微分模板的构建,搞高了尺度空间的特征检测的效率。

SURF算法在积分图像上使用了盒子滤波器对二阶微分模板进行了简化,从而构建了Hessian矩阵元素值,进而缩短了特征提取的时间,提高了效率。

BRIEF

  • Binary Robust Independent Elementary Features

在特征点周围邻域内选取若干个像素点对,通过对这些点对的灰度值比较,将比较的结果组合成一个二进制串字符串用来描述特征点。最后,使用汉明距离来计算在特征描述子是否匹配。

BRISK

BRISK算法在特征点检测部分没有选用FAST特征点检测,而是选用了稳定性更强的AGAST算法。在特征描述子的构建中,BRISK算法通过利用简单的像素灰度值比较,进而得到一个级联的二进制比特串来描述每个特征点,这一点上原理与BRIEF是一致的。BRISK算法里采用了邻域采样模式,即以特征点为圆心,构建多个不同半径的离散化Bresenham同心圆,然后再每一个同心圆上获得具有相同间距的N个采样点。

ORB

  • ORB (Oriented FAST and Rotated BRIEF)

As an OpenCV enthusiast, the most important thing about the ORB(Oriented FAST and Rotated BRIEF) is that it came from “OpenCV Labs”. This algorithm was brought up by Ethan Rublee, Vincent Rabaud, Kurt Konolige and Gary R. Bradski in their paper ORB: An efficient alternative to SIFT or SURF in 2011. As the title says, it is a good alternative to SIFT and SURF in computation cost, matching performance and mainly the patents. Yes, SIFT and SURF are patented and you are supposed to pay them for its use. But ORB is not !!!

ORB is basically a fusion of FAST keypoint detector and BRIEF descriptor with many modifications to enhance the performance.

oriented FAST

  • use FAST to find keypoints, then apply Harris corner measure to find top N points among them

  • multiscale

    • use pyramid to produce multiscale-features
  • rotation invariance (Orientation)

    • It computes the intensity weighted centroid of the patch with located corner at center. The direction of the vector from this corner point to centroid gives the orientation. To improve the rotation invariance, moments are computed with x and y which should be in a circular region of radius r, where r is the size of the patch.

rotated BRIEF

  • Binary Robust Independent Elementary Features

旋转部分计算:

  • 在一个小的图像块 B 中,定义 图像块的一阶矩 为:

M p q = ∑ x , y ∈ B x p y q I ( x , y ) , p , q ∈ { 0 , 1 } M_{pq} = \sum_{x,y \in B} x^p y^q I(x,y), \quad p,q \in \{ 0,1\} Mpq=x,yBxpyqI(x,y),p,q{0,1}

  • 通过矩找到图像块的质心:

C = ( M 10 M 00 , M 01 M 00 ) C = \bigg( \frac{M_{10}}{M_{00}}, \frac{M_{01}}{M_{00}} \bigg) C=(M00M10,M00M01)

  • 几何中心 O O O 与 质心 C C C 连接得到 方向向量 O C ⃗ \vec{OC} OC ,于是特征点的方向定义为:

θ = a r c t a n ( M 01 M 10 ) \theta = arctan( \frac{M_{01}}{M_{10}} ) θ=arctan(M10M01)

FREAK

  • Fast Retina KeyPoint

根据视网膜原理进行点对采样,中间密集一些,离中心越远越稀疏。并且由粗到精构建描述子,穷举贪婪搜索找相关性小的。42个感受野,一千对点的组合,找前512个即可。这512个分成4组,前128对相关性更小,可以代表粗的信息,后面越来越精。匹配的时候可以先看前16bytes,即代表精信息的部分,如果距离小于某个阈值,再继续,否则就不用往下看了。

SubPixel Corners

  • Subpixel Corners: Increasing accuracy
  • Use the OpenCV function cornerSubPix to find more exact corner positions (more exact than integer pixels)

在 亚像素角点 q \mathbf{q} q 的求解中,“垂直向量,乘积为0”

< ∇ I ( p i ) , q − p i > = 0 <\nabla \mathbf{I}(\mathbf{p}_i), \mathbf{q} - \mathbf{p}_i> = 0 <I(pi),qpi>=0

图像金字塔

use pyramid to produce multiscale-features

  • 均值金字塔:2*2邻域均值滤波
  • 高斯金字塔:向下降采样图像(4层),高斯核5*5
  • 拉普拉斯金字塔

Feature Matching

相似度

  • SSD (Sum of Squared Distance)

D ( I A , I B ) S S D = ∑ x , y [ I A ( x , y ) − I B ( x , y ) ] 2 {D(I_A,I_B)}_{SSD} = \sum_{x,y}[{I_A}(x,y)-{I_B}(x,y)]^2 D(IA,IB)SSD=x,y[IA(x,y)IB(x,y)]2

  • SAD (Sum of Absolute Difference)

D ( I A , I B ) S A D = ∑ x , y ∣ I A ( x , y ) − I B ( x , y ) ∣ {D(I_A,I_B)}_{SAD} = \sum_{x,y} | {I_A}(x,y)-{I_B}(x,y) | D(IA,IB)SAD=x,yIA(x,y)IB(x,y)

  • NCC (Normalized Cross Correlation)

D ( I A , I B ) N C C = ∑ x , y I A ( x , y ) I B ( x , y ) ∑ x , y I A ( x , y ) 2 ∑ x , y I B ( x , y ) 2 {D(I_A,I_B)}_{NCC} = \frac { \sum_{x,y} {I_A}(x,y) {I_B}(x,y) } { \sqrt { \sum_{x,y} {I_A}(x,y)^2 \sum_{x,y} {I_B}(x,y)^2 } } D(IA,IB)NCC=x,yIA(x,y)2x,yIB(x,y)2 x,yIA(x,y)IB(x,y)

  • 去均值 版本

块匹配

  • 假设图像I1和图像I2,分别对应的角点为p1i和p2j,在图像I2角点中找到与图像I1对应的角点;
  • 以角点p1i为中心,在图像I1中提取9*9的像素块作为模板图像T1i;
  • 在图像I2中p1i点周围(以角点p1i为中心20*20的像素 范围)查找所有的角点p2jm(m<=n,n为该范围内角点数);
  • 遍历所有的角点p2jm,以角点p2jm为中心,在图像I2中提取9*9的像素块,计算该像素块与T1i的SSD;
  • SSD最小对应的角点p2jm,即为图像I2中与图像I1中角点p1i对应的匹配角点;
  • 循环执行以上5步,查找图像I2中与图像I1对应的所有匹配角点;

描述子匹配

Brute-Force

FLANN

这篇关于图像分析之图像特征点及匹配的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1019217

相关文章

Python正则表达式匹配和替换的操作指南

《Python正则表达式匹配和替换的操作指南》正则表达式是处理文本的强大工具,Python通过re模块提供了完整的正则表达式功能,本文将通过代码示例详细介绍Python中的正则匹配和替换操作,需要的朋... 目录基础语法导入re模块基本元字符常用匹配方法1. re.match() - 从字符串开头匹配2.

SpringBoot3匹配Mybatis3的错误与解决方案

《SpringBoot3匹配Mybatis3的错误与解决方案》文章指出SpringBoot3与MyBatis3兼容性问题,因未更新MyBatis-Plus依赖至SpringBoot3专用坐标,导致类冲... 目录SpringBoot3匹配MyBATis3的错误与解决mybatis在SpringBoot3如果

Android 缓存日志Logcat导出与分析最佳实践

《Android缓存日志Logcat导出与分析最佳实践》本文全面介绍AndroidLogcat缓存日志的导出与分析方法,涵盖按进程、缓冲区类型及日志级别过滤,自动化工具使用,常见问题解决方案和最佳实... 目录android 缓存日志(Logcat)导出与分析全攻略为什么要导出缓存日志?按需过滤导出1. 按

Linux中的HTTPS协议原理分析

《Linux中的HTTPS协议原理分析》文章解释了HTTPS的必要性:HTTP明文传输易被篡改和劫持,HTTPS通过非对称加密协商对称密钥、CA证书认证和混合加密机制,有效防范中间人攻击,保障通信安全... 目录一、什么是加密和解密?二、为什么需要加密?三、常见的加密方式3.1 对称加密3.2非对称加密四、

MySQL中读写分离方案对比分析与选型建议

《MySQL中读写分离方案对比分析与选型建议》MySQL读写分离是提升数据库可用性和性能的常见手段,本文将围绕现实生产环境中常见的几种读写分离模式进行系统对比,希望对大家有所帮助... 目录一、问题背景介绍二、多种解决方案对比2.1 原生mysql主从复制2.2 Proxy层中间件:ProxySQL2.3

python使用Akshare与Streamlit实现股票估值分析教程(图文代码)

《python使用Akshare与Streamlit实现股票估值分析教程(图文代码)》入职测试中的一道题,要求:从Akshare下载某一个股票近十年的财务报表包括,资产负债表,利润表,现金流量表,保存... 目录一、前言二、核心知识点梳理1、Akshare数据获取2、Pandas数据处理3、Matplotl

python panda库从基础到高级操作分析

《pythonpanda库从基础到高级操作分析》本文介绍了Pandas库的核心功能,包括处理结构化数据的Series和DataFrame数据结构,数据读取、清洗、分组聚合、合并、时间序列分析及大数据... 目录1. Pandas 概述2. 基本操作:数据读取与查看3. 索引操作:精准定位数据4. Group

MySQL中EXISTS与IN用法使用与对比分析

《MySQL中EXISTS与IN用法使用与对比分析》在MySQL中,EXISTS和IN都用于子查询中根据另一个查询的结果来过滤主查询的记录,本文将基于工作原理、效率和应用场景进行全面对比... 目录一、基本用法详解1. IN 运算符2. EXISTS 运算符二、EXISTS 与 IN 的选择策略三、性能对比

MySQL 内存使用率常用分析语句

《MySQL内存使用率常用分析语句》用户整理了MySQL内存占用过高的分析方法,涵盖操作系统层确认及数据库层bufferpool、内存模块差值、线程状态、performance_schema性能数据... 目录一、 OS层二、 DB层1. 全局情况2. 内存占js用详情最近连续遇到mysql内存占用过高导致

深度解析Nginx日志分析与499状态码问题解决

《深度解析Nginx日志分析与499状态码问题解决》在Web服务器运维和性能优化过程中,Nginx日志是排查问题的重要依据,本文将围绕Nginx日志分析、499状态码的成因、排查方法及解决方案展开讨论... 目录前言1. Nginx日志基础1.1 Nginx日志存放位置1.2 Nginx日志格式2. 499