image-recognition

Using keypoints to compute object similarity

一世执手 提交于 2019-12-08 04:41:00
问题 I'm not sure, but can I use keypoints of an image for object recognition? I have MATLAB implementation of Harris keypoint extraction. Its output is an array of points, I don't know how can I use these points (the number of points in Harris algorithm vary) for recognizing purpose. There is another method, LoG (Laplace of Gaussian) that produce 120x3 for each image. Keypoints example: It's my objects dataset: http://www.vision.ee.ethz.ch/datasets/downloads/Obj_DB.tar.gz , images background is

Use Processing and Opencv For android development?

孤者浪人 提交于 2019-12-08 00:33:00
问题 Does anyone know if you can use the OpenCV library within the processing Android template ? I want to do some image recognition/comparison for these devices within Processing. What are the means to do such? and does anyone have an example of source code for it? Thanks! 回答1: The OpenCV library that you would normally use (http://ubaa.net/shared/processing/opencv/) will not work for Android. However, Android has it's own port of OpenCV, which is available here: http://opencv.org/platforms

How to find blank field on scanned document image

a 夏天 提交于 2019-12-07 20:18:17
问题 I want my application to fill in a single field in a form that exists as an black-and-white image file. The form always starts as the same paper version, but by the time my application gets it from my users, it may have been scanned or faxed more than once. Because of that, the field I need is not in the same place in every file. My users do not always get the blank form from me, so I do not have the ability to print a mark or placeholder that I can recognize later. There is text on the

How to use neural nets to recognize handwritten digits

假如想象 提交于 2019-12-07 16:00:26
问题 I followed a tutorial for creating a simple neural network using signoidal function "Using neural nets to recognize handwritten digits", the tutorial is very simple with theory and code examples. The problem is that it does not give any examples of digits recognition using network.py. For example, I have the following number and I want to recognize it as 0 from the image below What should I do next for number recognition? To make recognition of number requires the use of other technologies

Can I use openCV to compare two faces on two different images?

自古美人都是妖i 提交于 2019-12-07 12:12:47
问题 I am very new in openCV, I saw it could figure out the face and return a rectangle to indicate the face. I am wondering whether there is anyway for openCV to access two images, with which contains one face, and I expect openCV to return the possibility of whether those two people are the same. Thanks. 回答1: OpenCV does not provide a full face recognition engine. You might want to check out this work: The One-Shot Similarity Kernel which proposes something similar to what you need. It also

Can anyone suggest good algorithms for CBIR?

醉酒当歌 提交于 2019-12-07 08:40:53
问题 Project: Content Based Image Retrieval - Semi-supervised (manual tagging is done on images while training) Description I have 1000000 images in the database. The training is manual (supervised) - title and tags are provided for each image. Example: coke.jpg Title : Coke Tags : Coke, Can Using the images and tags, I have to train the system. After training, when I give a new image (already in database/ completely new) the system should output the possible tags the image may belong to and

Image Preprocessing for OCR - Tessaract

给你一囗甜甜゛ 提交于 2019-12-07 07:13:14
问题 Obviously this image is pretty tough as it is low clarity and is not a real word. However, with this code, I'm detecting nothing close: import pytesseract from PIL import Image, ImageEnhance, ImageFilter image_name = 'NedNoodleArms.jpg' im = Image.open(image_name) im = im.filter(ImageFilter.MedianFilter()) enhancer = ImageEnhance.Contrast(im) im = enhancer.enhance(2) im = im.convert('1') im.save(image_name) text = pytesseract.image_to_string(Image.open(image_name)) print(text) outputs ,

Using keypoints to compute object similarity

时光毁灭记忆、已成空白 提交于 2019-12-06 16:41:21
I'm not sure, but can I use keypoints of an image for object recognition? I have MATLAB implementation of Harris keypoint extraction. Its output is an array of points, I don't know how can I use these points (the number of points in Harris algorithm vary) for recognizing purpose. There is another method, LoG (Laplace of Gaussian) that produce 120x3 for each image. Keypoints example: It's my objects dataset: http://www.vision.ee.ethz.ch/datasets/downloads/Obj_DB.tar.gz , images background is white, as seen in the above image. What I want is training a Neural Network with a train set (some of

How to find blank field on scanned document image

对着背影说爱祢 提交于 2019-12-06 09:35:47
I want my application to fill in a single field in a form that exists as an black-and-white image file. The form always starts as the same paper version, but by the time my application gets it from my users, it may have been scanned or faxed more than once. Because of that, the field I need is not in the same place in every file. My users do not always get the blank form from me, so I do not have the ability to print a mark or placeholder that I can recognize later. There is text on the original blank form, but because it may have been faxed, I have only 200 dpi of resolution. The text is

Google cloudml Always Gives Me The Same Results

只谈情不闲聊 提交于 2019-12-06 07:30:33
I'm working on machine learning and I would like to use Google Cloud ml service. At this moment, I have trained my model with retrain.py code of Tensorflow ( https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/image_retraining/retrain.py#L103 ) and I have exported the results to a cloudml (export and export.meta files). However when I try to make a prediction of new data with command ( https://cloud.google.com/ml/reference/commandline/predict ): gcloud beta ml predict it always returns the same result (I want to predict different data). How is it possible? My data are