WillBrennan / ImageStitching

Conducts image stitching upon an input video to generate a panorama in 3D
272 stars 58 forks source link

requirements.txt is missing #1

Closed Eirtrand closed 7 years ago

Eirtrand commented 7 years ago

In the makefile pip tries to find requirements.txt, can you include it to the project or am I missing something?

WillBrennan commented 7 years ago

Hey - Nice catch, thankyou!

You're not missing anything, I forgot to include one. I've just added a requirements.txt with numpy in it. ImageStitching also needs opencv which can't be installed through pip (please correct me if I'm wrong!).

You can install opencv with brew or apt-get.

brew install opencv3 --with-contrib --with-python3
sudo apt-get install libopencv-dev python-opencv
huadee commented 7 years ago

Does this only use for opencv3?

WillBrennan commented 7 years ago

It should support both opencv2 and opencv3. For opencv3 it will require the contributions module so that SIFT features can be computed.