Questions tagged [image-comparison]

Methods, algorithms and techniques for the programmatic comparison of image data.

Methods, algorithms and techniques by which images can be programmatically compared, either to one another or to a database of extracted image features.

Meaningful image comparison will typically involve the extraction of some of features from the images in question, as metadata. Many techniques for feature extraction (and subsequent feature selection) come from the content-based image retrieval field.

Typical image-comparison schemes necessitate some manner of image processing as well.

206 questions
0
votes
1 answer

Perceptual hashing accuracy/precision

I want to find identical and very similar images within a truckload of photos. To do this, I want to compare the Levenstein (or Hamming, not decided yet) distances of their perceptual hashes. To calculate these, I want to use imghash (also not a…
marko-36
  • 1,309
  • 3
  • 23
  • 38
0
votes
2 answers

How to compare how similar two images are in Python?

I am trying to compare an image I am taking to an image I already have stored on my computer and return True if they are similar enough. Here is a question that is similar to this. I am using OpenCV, so using that would be good. My current work…
0
votes
0 answers

Compare two hand-drawn canvas diagram for similarity in php

I'm implementing the feature where users can draw the diagram on canvas for the prepositional phrase. When the user done with the diagram then I convert and save the diagram as an Image. Now I want to find out whether the diagram drawn by the user…
Dipti Gajjar
  • 51
  • 2
  • 7
0
votes
0 answers

Lengths of image hashes

I'm developing an application that involves hashing of images and storing those hash values. Based on the links in this post and other research I have done, am I understanding correctly that most image hashes are 64 bits in length? I do see some…
0
votes
0 answers

How to do OCR on a single character

I am writing a program that should be able to detect a single character from the image of it. I think it should be pretty easy given how powerful OCR software have become these days but I have no real idea how to do it. Here are the specifics: The…
Pouria P
  • 565
  • 1
  • 8
  • 21
0
votes
0 answers

Image Analyse / comparing color values

I'm working on an image comparsion algorithm and need a bit help. I do not want find identical images, but images with similar colors and color-temperatures. My first try was to use hash-values, second try was to use histograms. But both methods…
0
votes
1 answer

Before-After Image Slider in SwiftUI?

I have tried to find the Before-After slider effect for images in SwiftUI. But I cannot find any libraries or solutions. And finally I came up with below solution myself. Hope this help someone!!
john raja
  • 509
  • 4
  • 8
0
votes
1 answer

Why browser.saveScreen() function does not work in Image Comparison Service of WebdriverIO?

I try to create test to compare screenshots, using WebdriverIO with Image Comparison Service. In 'sync' mode everything is ok. But I want to use 'async' mode, since 'sync' mode will not be supported anymore (https://webdriver.io/docs/sync-vs-async).…
Artsiom
  • 107
  • 1
  • 10
0
votes
1 answer

How to add console to display the result in the layout field using pysimplegui

I want to compare two images using CANNY and FLANN framework. My image comparison code is ready but I want my result in the console or space in the same window of user input in below code of pysimplegui. import PySimpleGUI as sg sg.theme('Light…
Amaze_Rock
  • 163
  • 3
  • 16
0
votes
1 answer

How to manage MIN_MATCH_COUNT in image comparison using canny?

I am using canny for image comparison. I am getting correct results for matching and non matching objects after comparing using canny image edging. At times it is not giving the right result and for that I need to keep changing the…
0
votes
1 answer

How to identify same objects in a image with different background, size and dimension

My requirement is something different. I have an image of a key which is on table top. I have same key which in on floor. The dimension and size of photos and keys are different but keys are same. Now I want to compare only keys and show that those…
0
votes
1 answer

How to save an input image into a variable and call it in another function?

I have written a code to compare two images and it is working fine. Now I want to develop an UI to browse the two get the two images as an input and then my code of comparison should work and give the results. Below is my code two browse the two…
0
votes
1 answer

Is a PSNR score generated between 2 images with different pixel formats accurate?

I am attempting to validate some image conversion qualities between pixel formats. I have a base test image, and am converting it from a given pixel format (such as Y444) to a different one (say Y42B). I then compare the new image to the test image…
0
votes
1 answer

OpenCVSharp - Compare images - Sift/Surf/Hash/Orb

I know the subject was widely discussed over in the internet however I couldn't find an answer to my question... So the ultimate goal of mine is to extract an part of image and compare it with "Template". I've already extracted and cropped the part…
aberforth
  • 72
  • 11
0
votes
0 answers

Python Image Comparison on Colab

I am very new to coding and I am having trouble importing images into google colab. It is saying I have an atribute error. Can you help me! My goal is to spot the difference between two images. I used this persons codes…