https://github.com/feroult/imsearch
Image Search
https://github.com/feroult/imsearch
Last synced: 10 months ago
JSON representation
Image Search
- Host: GitHub
- URL: https://github.com/feroult/imsearch
- Owner: feroult
- Created: 2015-04-27T18:42:49.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-01-25T13:27:36.000Z (over 8 years ago)
- Last Synced: 2025-02-01T12:09:56.622Z (over 1 year ago)
- Language: C++
- Size: 6.26 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Search: Computer Vision QuickStart
## Installing
#### Docker
Build the OpenCV Docker Image:
git clone https://github.com/feroult/imsearch.git
cd imsearch
docker build -t opencv3 .
#### For Linux Hosts
xhost +
docker run --rm -ti -v /tmp/.X11-unix:/tmp/.X11-unix -v $(pwd):/imsearch -e DISPLAY=$DISPLAY opencv3
#### For OSX Hosts
brew cask install xquartz
brew install socat
socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
docker run --rm -ti -v $(pwd):/imsearch -e DISPLAY={HOST_IP}:0 opencv3
## Building and running a sample
./build.sh src/cpp/surf_flann_matcher.cpp
./bin/surf_flann_matcher data/query-image.jpg data/image1.jpg
## TODO
* Some samples were writen when OpenCV 3.0 was still beta. They may not compile/run.
We have to update them.
## Some Links
* http://answers.opencv.org/question/10459/surf-matching-against-a-database-of-images/
* http://opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_feature2d/py_matcher/py_matcher.html