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

推荐订阅源

美团技术团队
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
V
Visual Studio Blog
H
Help Net Security
Engineering at Meta
Engineering at Meta
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
博客园 - 【当耐特】
B
Blog
Stack Overflow Blog
Stack Overflow Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园 - 司徒正美
博客园 - 叶小钗
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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.)