The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
33 views

image processing for quality control

I am working on a college project where I have to use image processing using opencv to detect manufacturing defects in cookies. The program must be able to detect oversized, undersized, distorted ...
2
votes
2answers
60 views

Need help for merging one image with another image

Suppose programmatically I was comparing between two images. After extracting the difference between two images suppose I store the difference in another Bitmap variable called bmp3 I got a code ...
-3
votes
0answers
33 views

What is the best library for comparing images and generating image diff for python? [closed]

I thought of doing it using PythonMagick but I think it is missing the comparison function. How about WAND or PIL or any other useful library that I can use?
-2
votes
2answers
29 views

Better image editor like mspaint? [closed]

When trying to save a BMP format image captured by external camera and accessed using mspaint.exe, there are some conversion loss occurring. When the image is compared with a selected co-ordinate ...
2
votes
2answers
92 views

Detecting a Specific Watermark in a Photo with Python (without SciPy)

I have a large number of images (hundreds of thousands) and, for each one, I need to say whether or not it has a watermark in the top right corner. The watermark is always the same and is in the same ...
6
votes
1answer
106 views

Algorithm optimization - parallel AsyncTasks or threads?

I currently have a single AsyncTask which currently compares images using the bubble sort technique using OpenCV. Say, I have to compare 400 images to each other. This would mean 400*401/2=80,200 ...
0
votes
0answers
77 views

Homomorphic filtering in java

Has anyone know the concept and working of homomorphic filtering and its java implementation. i need to compare two images . from camera to database . i am using naive similarity algorithm. it is ...
0
votes
1answer
133 views

Image comparison android

I have developed an app for image comparison. here i am comparing colors. the reference chart is in the database. the working of my app is like.. Capturing the colors by camera . camera is controlled ...
6
votes
4answers
1k views

OpenCV image comparison in Android

[EDIT] I have devised some code for image comparison. The matching part is still a bit flawed and I would love some assitance. The project can be found at - GitHub. I have these two images : Img1 ...
-1
votes
1answer
144 views

Find/compare camera-clicked photos from/with images of book covers in huge dataset [closed]

I have a big dataset of book cover images (example - book thumbnails + info on Amazon). When someone clicks a picture of a physical book and uploads it to my server, I need to be able to fetch the ...
0
votes
1answer
106 views

cvNorm isn't recognized as OpenCV function

I'm trying to compare to images in my phone's SDcard, so I wrote this piece of code. package com.example.test; import java.io.File; import android.os.Bundle; import android.app.Activity; import ...
1
vote
1answer
397 views

How to compare two images pixel by pixel and frame new image from the dirty part of image

I am capturing the screen using robot.screenCapture() and frame bufferedImage1. Again I am capturing desktop screen and frame bufferedImage2. Could please tell me how to compare these 2 images ...
2
votes
3answers
402 views

Comparing image in url to image in filesystem in python

Is there a quick and easy way to do such comparison? I've found few image compare questions from stackoverflow but none of those actually proved answer for this question. I have images files in my ...
0
votes
1answer
104 views

Apply diff image on the original image c#

suppose i have two image with same height and width. pic1.jpg & pic2.jpg. two image look pretty same with minimum difference. with the help of below routine we can get the difference between two ...
1
vote
3answers
439 views

Two image compare using win32 api c#

i have two images and i want to compare two image and want to get difference. i search google and found a link from where i copy paste the code for image comparison using win32 api. so this is the url ...
1
vote
0answers
427 views

compare two images and extract the difference using emgu cv library

i want to compare two images like image1.png and image2.png.both the images look pretty same with some difference. so i want to get the difference and want to apply the difference on first image ...
1
vote
1answer
334 views

Find the differences between two images for screen sharing apps

Hi I'm writing a client/server remote viewer (desktop sharing) application where screenshots of the desktop are sent across the network over a socket. I'd like to reduce the size of the transfer by ...
2
votes
1answer
357 views

Getting stuck on Matlab's subplot mechanism for matching images' points for vlfeat

I am doing vlfeat in Matlab and I am following this question here. These below are my simple testing images: Left Image: Right Image: I did a simple test with 2 simple images here (the ...
2
votes
1answer
418 views

Compare histograms of specific areas of two images? OpenCV

Basically, I want to be able to compare two histograms, but not of whole images just specific areas. I have image A and have a specific rectangular region on it that I want to compare to another image ...
0
votes
2answers
294 views

java.util.zip.CRC32 comparing image files

Is there any suggestion (piece of code) that helps me to understand the concept of how to compare two different image files whether they are same or not? Thanks in advance. EDIT: I mean, for ...
0
votes
1answer
262 views

Captured screen & convetion to Byte[] (image comparison methods)

I've red a few posts regarding image comparison, and I tried to save image captured from screen then store it in file system . I used conversion methods to convert captured image into byte[] for ...
0
votes
2answers
126 views

units less then a pixel , Screen cupture searching partial image of screen within larger portion of screen

the whole thing is , that with CopyFromScreen() Method i was able to compare an image (previously captured) to an image that is the same as the captured one cause it actually captured from that ...
5
votes
2answers
348 views

How to use SIFT for image comparison

I recently stumbled upon a SIFT implementation for C#. I thought it would be great fun to play around with it, so that's what I did. The implementation generates a set of "interest points" for any ...
2
votes
3answers
2k views

python code to compare images in python

I am working on a project in which at one point I need to compare two images.can anybody please help me with a method to do so..By the way the images are screenshots of a software. i wanted to check ...
0
votes
1answer
639 views

Comparing two byte arrays which represent two pictures

I am programming a small application for android and I need to compare between two pictures. The pictures are represented as two byte array. Is there an algorithm to compare between them? I need to ...
0
votes
1answer
124 views

Comparing images taken from Camera with already present images [closed]

I am new to this platform. I am developing application where I already have 100 images previously stored and want to compare image which I take from camera and see it that image matched with from ...
0
votes
0answers
366 views

How to compare two images (.png or jpg) using java and webdriver [closed]

I have a requirement where i need to get two images from different pages and compare them to see they are same/equal for my testing purpose. In my project i am using selenium webdrive and java to ...
1
vote
3answers
385 views

How to Compare the quality of two images?

I have applied Two different Image Enhancement Algorithm on a particular Image and got two resultant image , Now i want to compare the quality of those two image in order to find the effectiveness of ...
8
votes
2answers
2k views

Image comparison method with C++ and OpenCV

I am new to OpenCV. I would like to know if we can compare two images (one of the images made by photoshop i.e source image and the otherone will be taken from the camera) and find if they are same or ...
1
vote
1answer
737 views

Using ImageMagick.NET to compare images

I need to do a "fuzzy" image comparison in c# - I have used ImageMagick.NET for stuff in the past and know it's good for the job. There is a compare command in Image Magick: ...
1
vote
0answers
225 views

iOS: Compare the image against image

I am looking for something interesting but not sure whether it's possible or not in iOS. Ideally I want to take a photo of any tree using iPhone and want to recognize what tree is it! This is beyond ...
2
votes
1answer
186 views

Finding Duplicate or Similar Images on a specific directory on a database

I am new on this, and my objection is to build some web application that implement the user to store an image on a database as a storage, and all I want is to reduce if there is a couple or some image ...
0
votes
0answers
844 views

Compare two images using OpenCV in Android

I need to develop an app that captures the picture using Camera API and compare that picture with all other pictures in the database. For comparing the images i'm going to use OpenCV. But i'm new to ...
1
vote
2answers
283 views

How can I get the rectangular areas of difference between two images?

I feel like I have a very typical problem with image comparison, and my googles are not revealing answers. I want to transmit still images of a desktop every X amount of seconds. Currently, we send a ...
1
vote
2answers
509 views

Is my segmentation accurate?

I have segmented liver from CT images using Region Growing. I need to calculate RMS error between the reference image and the segmented region. When I run the code, I get an output of 1.1146. Whwn I ...
3
votes
3answers
1k views

Euclidean distance returning strange results

im writing a program to compare two images against each other based on color and im using the Euclidean distance algorithm however when i run it and pass in two images i get one distance and then when ...
4
votes
5answers
530 views

Irregular Shape Comparison

I'm trying to come up with a scoring system for some behavioural psychology research. I ask people to draw a letter, then trace over it, both on a graphics tablet. I want to assess the accuracy of ...
2
votes
3answers
163 views

Distance between N images: incrementally! (same crop, but re-compressed/adjusted)

I'm trying to figure out a geo-hashing method for images. It is hard because the space of possible images is of much higher dimensionality than lat/lng. (geo-hashing converts a location to a string ...
1
vote
1answer
874 views

Histogram comparation for Content Based Image Retrieval. Different color spaces (RGB,HSV,etc..)

I'm doing a final degree proyect in Content Based Image Retrieval using OpenCv. I have started comparing histograms. The thing is that I have seen a lot of post saying that RGB is the worst color ...
4
votes
2answers
626 views

Find differences between two images but *not* pixel to pixel

I hope someone will be able to help me. I have pairs of black and white images that resulted from scanning texts with a large scanner (resulting files are up 500M). The texts scanned are nearly ...
10
votes
3answers
2k views

Image comparison module for PHP

Is there any basic (free or not), but usable - not like libpuzzle - image fingerprinting/similarity/compare module for PHP, which works akin to TinEye or Google image upload search? It's basically ...
3
votes
2answers
953 views

Determining Similarity of Edge-Detection-Processed Images

I was hoping that I could achieve some guidance from the stackoverflow community regarding a dilemma I have run into for my senior project. First off, I want to state that I am a novice programmer, ...
1
vote
0answers
612 views

java code for sift algorithm [duplicate]

Possible Duplicate: Implementing SIFT in Java Hi I need to compare an image with images in database using sift algorithm Can anyone tell where I can get java coding for implementing this ...
3
votes
1answer
955 views

Searching an Image Database Using SIFT

Several questions have been asked about the SIFT algorithm, but they all seem focussed on a simple comparison between two images. Instead of determining how similar two images are, would it be ...
3
votes
3answers
635 views

How can I compare images of the same origin that were cropped?

Suppose I have an image file/URL, and I want my software to search it within a set of up to 100 images (or at least in that order of magnitude). The target image that the software should find should ...
3
votes
2answers
4k views

compare two images using OpenCV

I want to compare two images using OpenCV. Could I filter the nearest matching result among other training data set..? Example : the Database containing training image which show number 5 in using one ...
0
votes
1answer
698 views

How to work out two images's degree of similarity using php

there are two jpg files binary data,how to work out their degree of similarity using php. if it is possible to get color infomation from binary code.what's more ,the server cant surport gd,it's a ...
0
votes
1answer
1k views

euclidean algorithm for image comparison

i am going to develop an application for image comparison on java. For this i have choosen euclidean algorithm. This application involves with 2 images. 1. Actual image 2. Part of the actual image. ...
20
votes
5answers
3k views

Open Source Digital Video Fingerprinting

Are there any Open Source Digital Video Fingerprinting initiatives? ie: Something that could compare two video files of disparate quality but indicate they are of the same event, program etc.
5
votes
2answers
627 views

A good method for detecting the presence of a particular feature in an image

I have made a videochat, but as usual, a lot of men like to ehm, abuse the service (I leave it up to you to figure the nature of such abuse), which is not something I endorse in any way, nor do most ...

1 2