惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Full Disclosure
WordPress大学
WordPress大学
小众软件
小众软件
Cloudbric
Cloudbric
AWS News Blog
AWS News Blog
腾讯CDC
量子位
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Vulnerabilities – Threatpost
Scott Helme
Scott Helme
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
C
CXSECURITY Database RSS Feed - CXSecurity.com
The Hacker News
The Hacker News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
Jina AI
Jina AI
Attack and Defense Labs
Attack and Defense Labs
S
SegmentFault 最新的问题
Simon Willison's Weblog
Simon Willison's Weblog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
Google Online Security Blog
Google Online Security Blog
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
罗磊的独立博客
L
LINUX DO - 最新话题
博客园 - Franky
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
The Last Watchdog
The Last Watchdog
J
Java Code Geeks
AI
AI
C
Cisco Blogs
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Cyber Attacks, Cyber Crime and Cyber Security
Cisco Talos Blog
Cisco Talos Blog
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
Help Net Security
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
I
Intezer
S
Securelist

drew's dev blog

Hunting a production-only proxy bug in SvelteKit Artisanal Handcrafted Git Repositories Everything you need to know about Python 3.13 – JIT and GIL went up the hill How Postgres stores oversized values – let's raise a TOAST How Postgres stores data on disk – this one's a page turner Bumper Comtrade QuEST Rust Wrapper Dotfiles How long is a cucumber? 🥒 Jekyll KaTeX Block Using make and latexmk for easy LaTeX compilation Custom Jekyll plugins with GitHub Pages Calculating meters per pixel from aerial photographs Proper line numbers with Jekyll Compiling zsh without root Coding cheatsheet
Calculating the overlap of aerial photos
Drew Silcock · 2014-07-31 · via drew's dev blog

· 3 min read

The setup is as follows: you have a camera attached to a UAV which is taking pictures regularly every five seconds, and you need at least 80% overlap between the photos in order to properly stitch them together into a Digital Elevation Model (DEM). What do you do? How far apart should each photo be? How fast do you need to fly your UAV in order to achieve this?

This post demonstrates how to go about calculating the required maximum distance between successive photos in order to ensure a certain percentage overlap between those photos, as a function of the required overlap, the angle of view of the camera and your height above the ground.

I then go on to show how to simply work out how fast you need to fly your UAV to achieve this overlap, given the time between successive photographs.

Calculating inter-photo distance

The geometry of the situation is shown below:

geometry of overlap

Let’s call the inter-photo distance dintd_{int}, the angle of view αy\alpha_y, the height hh and the required overlap fraction ω\omega (i.e. if we want 80% overlap, then ω=0.8\omega = 0.8).

dint=2htan⁡(αy2)−overlapd_{int} = 2h\tan\left(\frac{\alpha_y}{2}\right) - \text{overlap}                   =2htan⁡(αy2)−2hωtan⁡(αy2)~~~~~~~~~~~~~~~~~~ = 2h\tan\left(\frac{\alpha_y}{2}\right) - 2h\omega\tan\left(\frac{\alpha_y}{2}\right)  =2htan⁡(αy2)[1−ω]~ = 2h\tan\left(\frac{\alpha_y}{2}\right)\left[ 1 - \omega \right]

Calculating UAV speed

The speed that a UAV must fly at, vUAVv_{UAV} , given the time interval between successive photos, tintt_{int}, is then simply given by:

vUAV=dinttint=2htan⁡(αy2)[1−ω]tintv_{UAV} = \frac{d_{int}}{t_{int}} = \frac{2h\tan\left(\frac{\alpha_y}{2}\right)\left[ 1 - \omega \right]}{t_{int}}

Taking a reasonable value for the angle of view, αy=48.9∘\alpha_y = 48.9^{\circ}, the time interval betweem successive photos, tint=5t_{int} = 5 seconds and taking ω=0.8\omega = 0.8 thus gives the very reasonable value for the velocity of the UAV as:

vUAV=0.182h meters/secondv_{UAV} = 0.182h ~ \text{meters/second}

So if you’re taking photos at a reasonable h=50h = 50 meters, then:

vUAV=9.09 meters/secondv_{UAV} = 9.09 ~ \text{meters/second}

Luckily, this is a very reasonable value! (Remembering that this is the maximum speed you can go before your overlap becomes too small for proper photogrammetry.)