ByteDance-Seed / ByteDance-Seed/Depth-Anything-3
Seems like a bug after colmap format exportation
Open
- Dominant language
- Python
- Stars
- 6.3k
- Forks
- 702
- PR merge metrics
- No merged PRs in 30d
Description
I use `export_format="colmap-gs_ply-gs_video"` sequence to produce both colmap and PLY, finding out that the intrinsic values will change after colmap files generation.
In line 65-66 (_src/depth_anything_3/utils/export/colmap.py_)
```
intrinsic[:1] *= orig_w / w
intrinsic[1:2] *= orig_h / h
```
Should not use self multiplication here, or make a copy in line 63 `intrinsic = prediction.intrinsics[fidx].copy()`, otherwise the gs video will show bad result.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.