Questions tagged [image-recognition]

Classification of a detected object into different known categories.

The classical problem in computer vision, image processing, and machine vision is that of determining whether or not the image data contains some specific object, feature, or activity. There are different varieties of this , such as object detection, Identification (like face recognition ), Content-based image retrieval ( like similar images option in google image search) etc.

1351 questions
-1
votes
1 answer

get probability how two numpy arrays are close to each other python

Wanna know if two numpy arrays are close to each other... like if we had 2 (2-d) numpy arrays of 2 images I wanna know if they close to each other (are they similar or not) not equal also, there is anyway to know if the probability of similarity are…
-1
votes
2 answers

Camera image recognition with small sample set

I need to visually recognise some flat pictures showed to camera. There are not many of them (maybe 30) but discrimination may depend on details. The input may be partly obscured or shadowed and is suspect to lighting changes. The samples need to be…
dronus
  • 10,774
  • 8
  • 54
  • 80
-1
votes
1 answer

How to classify image and crop it using tensorflow?

I want to do something as follow 1.I want to identify number plate from an image 2.crop that image Using tensorflow Does anyone knows how to do it ?? If yes then please help me I haven't tried any code Help appreciated
-1
votes
1 answer

Random results from pre-trained InceptionV3 CNN

I'm trying to create an InceptionV3 CNN which has previously been trained on Imagenet. While the creation and the loading of the checkpoint seems to be working correctly, the result seems to be random, as everytime I run the script, I get a…
-1
votes
2 answers

Explain the intuition behind a two dimensional image with multiple channels in computer vision

Consider a 2D image of dimensions 46*46*3 (length x height X no of channels). It means the image is of the specified length and height with three channels - red, blue & green. I have then come across an image of dimensions 20*20*32. What does it…
RPM
  • 151
  • 1
  • 1
  • 9
-1
votes
1 answer

Image Processing in C# to Count Shapes

Looking to write a piece of software that can take in images like this, and count the number of circular "holes" in the picture. You can see that there are circular holes, as well as non-circular holes. The image is basically a plastic plane…
Sakamoto Kazuma
  • 2,573
  • 7
  • 34
  • 75
-1
votes
1 answer

How does Flixtools work?

I have been using an app named flixtools from http://flixtools.com/, It got me really curious about how it searches for the movie name. I renamed the movie file with some random text and yet it finds the correct name of the movie for finding…
-1
votes
2 answers

Very simple image recognition on iOS

Is it possible to do very basic image recognition to compare an image against a database of images and determine which image in the database is the best match? I don't need to do any processing of any of the images, but simply differentiate between…
Retsam
  • 30,909
  • 11
  • 68
  • 90
-1
votes
1 answer

How to programatically determine the center of a circle and crescent?

So I recently took a few hundred photographs of the solar eclipse using a solar filter. All the photos contain a close to pure black background with a very bright near-white solar crescent, usually somewhere near the center of the photograph. All…
Radmilla Mustafa
  • 311
  • 1
  • 2
  • 11
-1
votes
1 answer

Recognize borders of each stone on the photo

My Question: How can I recognize borders of each stone on the photo below? Size calculation will be an easy task. First of all I have to tell you that I’m a new kid in image recognition, and I’ll be thankful for any: propositions useful links book…
Nuzhdin Vladimir
  • 1,714
  • 18
  • 36
-1
votes
1 answer

Tensorflow doesnt generate pb file.How Solve it?

I am using Tensorflow Image Recognition Trainer. But I cant get .pb and .txt files of training. I cant find them. When I add flag "--output-graph" it doesnt create any file. There is not any problem with permission of folder. I dont know how solve…
-1
votes
1 answer

How to integrate Image recognition with website?

I am a web designer, and I am thinking of building a face recognition application using machine learning concept. I want to build a website where people will upload photos (with Face) and the website will compare the face in image with the database…
karn
  • 80
  • 1
  • 10
-1
votes
1 answer

Image recognition on led lights in dashboard and Augmented reality

I want to recognise an image and also to extract information from the image. Like while pointing the camera on vehicle dashboard it should detect all the led lights and should show an Augmented reality information for each led lights and what is the…
-1
votes
1 answer

Dealing with occluded objects in CNN image recognition

I'm trying to find methods for dealing with occluded objects for a Tensorflow CNN image recognition project. The underlying objects are mostly visible, but similar objects often cross over. Most of the crossover points are literally a cross shape…
-1
votes
1 answer

About precision and recall in prediction

I am confused about precision and recall in prediction. My task is about object detection in an image. If there is no object in the image, and my predict number is 1: then false positive = 1 If there is one object in the image, and my predict number…