Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 1.5 KB

Documentation.md

File metadata and controls

15 lines (13 loc) · 1.5 KB

Documentation

Image Plagarism

Plagiarism of images is really no different than plagiarism of words, music, or any original work. Copying an image from a book or the internet without citing the original source (or gaining permission of the creator when necessary) constitutes plagiarism. Plagiarism is academic fraud with serious repercussions.So our attempt is to make a Image based plagarism checker for checking the plagarism between two given images.

Library used

opencv contrib


OpenCV (open source computer vision) is a very powerful library for image processing and machine learning tasks which also supports Tensorflow, Torch/Pytorch and Caffe. The library is cross platform and you can pip install it (where you are using it with Python) with CPU support.
To install opencv contirb use:
pip install opencv-contrib-python
for more details about opencv refer the documentation.

We use ORB and FREAK algorithms for identifying the features of the given images.
We used Brute Force Knn Matcher for matching the features of images to compare similarity. Then using the distance ratio we calcuate the good matches from the matched descriptors.