https://github.com/mertyildiran/rapideye
An Image Search Toolkit based on OpenCV
https://github.com/mertyildiran/rapideye
computer-vision histogram opencv
Last synced: about 1 year ago
JSON representation
An Image Search Toolkit based on OpenCV
- Host: GitHub
- URL: https://github.com/mertyildiran/rapideye
- Owner: mertyildiran
- License: mit
- Created: 2016-03-03T12:18:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-25T20:14:16.000Z (almost 10 years ago)
- Last Synced: 2025-03-29T22:11:28.675Z (about 1 year ago)
- Topics: computer-vision, histogram, opencv
- Language: Python
- Homepage: https://pypi.python.org/pypi/rapideye
- Size: 98.6 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RapidEye
An Image Search Toolkit based on OpenCV's histogram comparison methods:
- **cv2.cv.CV_COMP_CORREL**: Computes the correlation between the two histograms.
- **cv2.cv.CV_COMP_CHISQR**: Applies the Chi-Squared distance to the histograms.
- **cv2.cv.CV_COMP_INTERSECT**: Calculates the intersection between two histograms.
- **cv2.cv.CV_COMP_BHATTACHARYYA**: Bhattacharyya / Hellinger distance, used to measure the “overlap” between the two histograms.
### Version
0.1.6
### Installation
```Shell
sudo apt-get install python-opencv
sudo pip install rapideye
```
### Usage
```Shell
rapideye --dataset PATH_TO_DATASET_DIRECTORY --query PATH_TO_REFERENCE_IMAGE
```
Example:
```Shell
rapideye --dataset dataset/ --query queries/103100.png
```