Tao Peng

Results 52 comments of Tao Peng

Hi @mrAceT we are planning to expose SfM coordinates and camera angles in https://www.mapillary.com/developer/api-documentation/#images

@richlv maybe this isn't an issue if you process your images once, and then keep uploading. Instead of keeping processing and uploading: ```sh mapillary_tools process_and_upload path/to/images ``` use this workflow:...

@AnkEric could you check if it's fixed in https://github.com/mapillary/mapillary_tools/pull/446 (which upgrade the gpx library to latest) while you are extensively testing mapillary_tools ;)

Could you check: ``` python3 -m pip show gpxpy Name: gpxpy Version: 1.4.2 Summary: GPX file parser and GPS track manipulation library Home-page: https://github.com/tkrajina/gpxpy Author: Tomo Krajina ... ``` It...

Hey, both the reported issue and the date formatting issue should be fixed in master. Please update and retry. Thanks for reporting. ``` python3 -m pip install --upgrade --force-reinstall git+https://github.com/mapillary/mapillary_tools...

It looks like the video time is out of scope of the time scope in gpx file, and it's 6254.836 seconds behind gpx start time or beyond the end time.Try...

Hey, the fixes are pushed to the master, please update tools: ```bash # use --force-reinstall python3 -m pip install --force-reinstall --upgrade git+https://github.com/mapillary/mapillary_tools ``` and try again. If it doesn't work,...

@cmuerau Thanks for providing the videos. I tested processing them locally and all were processed correctly. From the error traces it doesn't seems to be the latest mapillary_tools. Could you...

Hey @cmuerau thanks for help debugging. Do you have a chance trying out the latest mapillary_tools v0.8.0 ``` mapillary_tools video_process "$VIDEO_PATH" "$IMAGE_PATH" --geotag_source "gopro_videos" --interpolate_directions --video_sample_interval 1 --overwrite_EXIF_gps_tag ```

That's caused by some breaking changes introduced in `v0.8.0`. Instead of `mapillary_tools --import_path=IMAGE_DIR --video_import_path=VIDEO_DIR`, try ``` mapillary_tools video_process VIDEO_DIR IMAGE_DIR ``` Also `--number_threads` and `--advanced` are not needed, so just...