(no title)
pretty_dumm_guy | 5 years ago
If the hiking trails are accessible enough, you should have a look at SLAM technique. SLAM allows you to create smooth and rough approximate map of the environment through which you navigate your camera. Colorization of this map could be done by a GAN(might be an interesting side project).
I am adding some pointers below :
1. https://www.doc.ic.ac.uk/~ajd/ - Prof. Davison and his group's work is impressive in this area. 2. https://vision.in.tum.de/research/vslam - Prof. Cremers group have some SOTA algorithms in this area.
P.S: You don't need a heavy setup for this. A single or a stereo camera should do the job.
TaylorAlexander|5 years ago
https://github.com/ivalab/gf_orb_slam2
I feel like vslam could be the the first step in a post-processing pipeline that would reduce a lot of the computational complexity of solving large maps. Once I can easily make large maps I can build simulated environments and use those for training an agent.
Thanks again for the tips!