https://github.com/gunjanmimo/imagesimilarity
https://github.com/gunjanmimo/imagesimilarity
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gunjanmimo/imagesimilarity
- Owner: gunjanmimo
- Created: 2021-12-12T17:55:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-12T18:23:29.000Z (over 3 years ago)
- Last Synced: 2025-01-01T06:42:47.320Z (5 months ago)
- Language: Python
- Size: 38 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Similarity
### TODO/IDEA:
1. Calculate brightness difference of two images, which indicates if the image was taken in sunny day or cloudy day
2. Count total no of tree and calculate the difference of tree of two images
3. check visual similarity b/w two images### custom module details
1. TreeCount: Used different image processing steps to get contours and calculate no of contours using template matching
2. VisualSimilarity: Used pre-trained model VGG16 and used the model upto flatten layer for the similarity calculation and here I used cosine similarity to calculate similarity b/w two input images### Steps to run the code
1. use **requirements.txt** to install necessary modules
```
pip install -r requirements.txt
```2. Run the python file using
```
python ImageDifference.py
```