博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Finding Correspondences lec4
阅读量:5872 次
发布时间:2019-06-19

本文共 987 字,大约阅读时间需要 3 分钟。

similarity measure

********************
SAD: Sum of Absolute Differences
SAD=Σin|Xi-Yi|

(similar lighting)some distinct points work well others don’t such as: edges, areas of uniformity

(some lighting changes and slight (2 degrees)rotation)SAD adds up constant lighting changes.

If two images are identical, but offset(偏移) in greyscale intensity by D, then the SAD score will differ by nD

**********************
SSD: Sum of Squared Differences
SSD=Σi(Xi-Yi)2
Enhances effect of very different pixels

Derive how SSD is the same as NCC if patches are normalized

(done on the board, show normalized SSD=2-2NCC : the bigger NCC is, the lower SSD is

Correlation =ΣinXiYi

•NCC =(ΣXiYi)/(||X|| ||Y||) -turn each patch into unit vector
•CSM = Σ(Xi-Xu)(Yi-Yu) -subtract mean for lighting level
•VNC =(Σ(Xi-Xu)(Yi-Yu) /Nsd(X)sd(Y)
        =(Σ(Xi-Xu)(Yi-Yu)/Nsqrt[Σ(Xi-Xu)(Xi-Xu)/N]sqrt[Σ(Yi-Yu)(Yi-Yu)/N]-compensate for both lighting level and brightnes

 

转载于:https://www.cnblogs.com/CVGNAY/p/3462817.html

你可能感兴趣的文章
Android View.onMeasure方法的理解
查看>>
Node.js 爬虫初探
查看>>
ABP理论学习之仓储
查看>>
centos7下使用yum安装mysql
查看>>
How can I set ccshared=-fPIC while executing ./configure?
查看>>
2.移植uboot-添加2440单板,并实现NOR、NAND启动
查看>>
hadoop-2.6.5安装
查看>>
vmware虚拟机里的LINUX不能上网的原因一:虚拟网卡设置
查看>>
监控摄像机的区别和分类
查看>>
Java学习——对象和类
查看>>
ElasticSearch 组合过滤器
查看>>
HttpClient连接池的连接保持、超时和失效机制
查看>>
数据中心操作人员:艰难地在针对VM构建的基础设施上运行容器
查看>>
基于Go语言来理解Tensorflow
查看>>
QCon讲师对对碰——洪小军采访梁宇鹏:就是爱Golang
查看>>
[elixir! #0016] 在 phoenix 项目里配置 elm
查看>>
使用swiftenv管理swift版本
查看>>
Node.js 模块系统
查看>>
Android单元测试 - Sqlite、SharedPreference、Assets、文件操作 怎么测?
查看>>
D3.js 力导向图来处理拓扑图
查看>>