You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
6 months ago | |
---|---|---|
doc | 6 months ago | |
public_include | 6 months ago | |
ref | 6 months ago | |
script | 6 months ago | |
stitch | 6 months ago | |
.gitattributes | 6 months ago | |
.gitignore | 6 months ago | |
CMakeLists.txt | 6 months ago | |
ReadMe.md | 6 months ago | |
S729.h | 6 months ago | |
main.cpp | 6 months ago |
ReadMe.md
航拍图像拼接系统
日志
- 1 2025/1/26 完成了基础的外参拼接+BA优化过程,目前不支持动态调整拼接大小位置比例尺等功能。当载体持续运动扫描时,无法支持连续拼接以及回溯。因此要求必须加入文件缓存机制,并使用瓦片对数据进行管理,这样可以极大扩展拼接范围,且输出内容更为标准化。
【初步设想】:建立二级文件缓存,其中第一级存储原始帧(图像+H矩阵等),第二级存储生成的标准瓦片。当系统工作时,根据当前视野范围和XYZ瓦片等级(X),开始从2级缓存搜索瓦片,如果存在瓦片则直接加载,如果不存在则从1级缓存读取原始帧生成瓦片,并将瓦片加入2级缓存。 【关键技术】:文件缓存技术、标准瓦片转换技术