Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waldemarnt/holmes
holmes is a project used to find images in the inner of images, using javacv and opencv
https://github.com/waldemarnt/holmes
Last synced: 20 days ago
JSON representation
holmes is a project used to find images in the inner of images, using javacv and opencv
- Host: GitHub
- URL: https://github.com/waldemarnt/holmes
- Owner: waldemarnt
- Created: 2014-12-14T21:11:10.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-12T00:55:25.000Z (almost 10 years ago)
- Last Synced: 2023-08-05T10:07:54.445Z (over 1 year ago)
- Language: Java
- Size: 195 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Holmes
Holmes is a software to detect images in another images using JavaCV and OpenCV.
- Send the images to holmes and the url to save the new image
- Holmes will crop for you based in the area of needed image
- A new image will be created based in the needed image### Installation
Usign eclipse with maven: download from git and export as runnable jar file.
After the creation of jar file, you can make the image match passing parameter for the holmes.jar like this.
```sh
$ holmes.jar "C:\\Users\\Waldema\\Desktop\\imagem1.jpg" "C:\\Users\\Waldema\\Desktop\\image-to-find.jpg" "C:\\Users\\Waldema\\Desktop\\new-image.jpg" 300 500 true
```
The first parameter is the big image.Second parameter is the image to search in this big image
Third parameter is the new image created after find
Fourth parameter is the width of new image
Fifth parameter is the height of new image
Last parameter is a boolean to show window with new image preview
### Libs
We use 2 libs to make it happens
* bytedeco/javacv
* OpenCv