Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions to install wheels from pypi #16

Merged
merged 1 commit into from
Sep 8, 2021

Conversation

johnwlambert
Copy link
Contributor

Hi Mihai, thanks for your great work making this interface.

I got a bit sick of building COLMAP and pycolmap on different machines, so I decided to just make standalone wheels for your library. They should be in pypi now.

I'm adding some instructions to the readme about how to use it. Can you try installing the wheels using these instructions to see if they work for you?

@sarlinpe
Copy link
Collaborator

Hi John,
This is great, thanks a lot! Installing from pypi works for me.

We often also need to run the COLMAP executable, e.g. the triangulator, so we would anyway need to build COLMAP. Is it possible to include the executable in the wheel? This would simplify a lot of installs. Alternatively, we could provide a Python interface to all commands in COLMAP/src/exe/. That is cleaner but requires more work.

@johnwlambert
Copy link
Contributor Author

Hi @skydes, good to hear it's working.

I believe to include the executable functionality in the wheel, we would need to wrap the following commands in Pybind:

int RunAutomaticReconstructor(int argc, char** argv);
int RunBundleAdjuster(int argc, char** argv);
int RunColorExtractor(int argc, char** argv);
int RunMapper(int argc, char** argv);
int RunHierarchicalMapper(int argc, char** argv);
int RunPointFiltering(int argc, char** argv);
int RunPointTriangulator(int argc, char** argv);
int RunRigBundleAdjuster(int argc, char** argv);

Maybe we can use the interface defined from https://github.com/colmap/colmap/blob/dev/src/exe/sfm.cc.

@mihaidusmanu
Copy link
Collaborator

Thanks a lot for your contribution!

I will merge this and create an issue to track the wrapping of colmap exe utilities.

@mihaidusmanu mihaidusmanu merged commit e3ee6a3 into colmap:master Sep 8, 2021
@farhadinima75
Copy link

Hi there.
first of all, thanks for the great interface and useful wheel library.
is it possible to run sift feature detection on CUDA enabled device just like colmap?
thanks in advance.

sarlinpe pushed a commit that referenced this pull request Jan 5, 2022
Add instructions to install wheels from pypi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants