pycolmap
pycolmap copied to clipboard
Python bindings for COLMAP
Hi, I observed an error that occurs for me when constructing an `Image` object manually: import pycolmap points = [pycolmap.Point2D((100, 200))] pts = pycolmap.ListPoint2D(points) image = pycolmap.Image("image.png", pts) In 0.1.0...
I am trying to install pycolmap. But I cannot install openblas package with vcpkg. here are my parameters: Python 3.6 Microsoft Visual Studio 2019 Windows 10 And here the Error...
Dear author, Command line warning D9002: ignoring unknown option '-std=c++11' when I installed old pycolmap did not occur error
There is no easy way to get detection scores out of VLFeat. The current approach is very hacky and bug-prone as I recover the scores directly from the DoG pyramid....
Problem: COLMAP uses [Eigens aligned allocator](https://eigen.tuxfamily.org/dox/group__TopicStlContainers.html) for vectors of [Point2D](https://github.com/colmap/colmap/blob/dev/src/base/point2d.h#L96). This PR ensures that `pycolmap.ListPoint2D` also uses this aligned allocator (previously caused `MaxRecursionError` in some cases).
There is one more if in colmap (https://github.com/colmap/colmap/blob/dev/src/exe/sfm.cc#L227) but it does not work in this case - a new output directory (output_path_) is not created if input_path_ is given.
Reorganize the readme by highlighting the core reconstruction API on top and describe how to retrieve available and default parameters.
- Add poisson and delaunay meshing (#92) - Delaunay meshing is only supported if COLMAP was compiled with CGAL support