Fingerprinting Images for Near-Duplicate Detection

By realpython - 2021-01-22

Description

Let's look at how to to utilize image fingerprinting to perform near-duplicate image detection.

Summary

  • Orthogonal Matrix What is an Orthogonal Matrix?
  • In terms of geometry, orthogonal means that two vectors are perpendicular to each other.
  • Additionally you may select any two rows and find that the same property holds, as the transpose of an orthogonal matrix is itself an orthogonal matrix.
  • Because the transpose preserves the determinant, it is easy to show that the determinant of an orthogonal matrix must be equal to 1 or -1.

 

Topics

  1. Database (0.16)
  2. UX (0.1)
  3. NLP (0.09)

Similar Articles

Targeted adversarial attacks with Keras and TensorFlow

By PyImageSearch - 2020-10-26

In this tutorial, you will learn how to perform targeted adversarial attacks and construct targeted adversarial images using Keras, TensorFlow, and Deep Learning. Last week’s tutorial covered untarget ...

8 Image Processing Python Packages That You Must Try

By Medium - 2021-03-23

Python is one of the most used programming languages in the world. It is capable of doing many things with less effort and fewer lines of code. It can also be used to edit and recreate images very…