Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rahulrathore44/imagecomparision
Course Link
https://github.com/rahulrathore44/imagecomparision
image-comparison image-processing
Last synced: 1 day ago
JSON representation
Course Link
- Host: GitHub
- URL: https://github.com/rahulrathore44/imagecomparision
- Owner: rahulrathore44
- Created: 2015-06-11T12:06:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-18T08:17:24.000Z (over 7 years ago)
- Last Synced: 2023-08-21T23:20:49.137Z (about 1 year ago)
- Topics: image-comparison, image-processing
- Language: Java
- Homepage: https://www.udemy.com/user/rahulrathore3/
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ImageComparision
This api will compare two images and return "true" or "false" based on the equality.
The call to api is as ImageHelper.areImgSame(Object aImg, Object bImg). The first argument should of type java.net.URL which refer to the image present at the weblink. The second argument should of type String which represent the image file present locally.# Usage
```java
ImageHelper.areImgSame(new URL("http://www.abc.com/image/src.jpg"),new URL("http://www.abc.com/image/dst.jpg"))
ImageHelper.areImgSame("c:\\src.jpg"),"c:\\dst.jpg")
```