image-recognition

Dice face value recognition

我们两清 提交于 2019-11-28 16:53:10
问题 I’m trying to build a simple application that will recognize the values of two 6-sided dice. I’m looking for some general pointers, or maybe even an open source project. The two dice will be black and white, with white and black pips respectively. Their distance to the camera will always be the same, but their position and orientation on the playing surface will be random. Dice http://www.freeimagehosting.net/uploads/9160bdd073.jpg (not the best example, the surface will be a more distinct

C# - Black points recognition from a photo

拜拜、爱过 提交于 2019-11-28 13:14:38
I have some photos of white pages with some black points drawn on, like this: photo (the points aren't very circular, I can draw them better), and I would find the coordinates of these points. I can binarize the images (the previous photo binarized: image ), but how can I find the coordinates of these black points? I need only the coordinates of one pixel for each point, the approximate center. This is for a school assignment. The basics for processing image data can be found in other questions , so I won't go into deeper detail about that, but for the threshold check specifically, I'd do it

OpenCV logo recognition

家住魔仙堡 提交于 2019-11-28 12:51:23
I was asked to recognize logo in an image using opencv. The lecturer told me that I don't have to do logo detection but logo recognition only. I am using opencv in c++. Can I know the easiest way to do it?? Ps: newbie in computer vision. Miki It largely depends on your kind of images. If your logo occupies say 90% of the image, you don't need detection, since you are probably good with color histograms. If the logo is small compared to the image, you should "find" the logo, in order to focus your comparison on that and not on the background clutter. There could be multiple logos on the same

Graphic Recognition of People

十年热恋 提交于 2019-11-28 06:12:48
问题 I would like to know what is the best approach to begin a project to perform graphical recognition of people. In other words, the computer will parse an image file and through a heuristic figure out if it sees the shape of a person. Any API's or open sources available, is this too ahead of the times? Thanks 回答1: Are you searching for face detection or people detection? If face-detection: OpenCV comes with samples for face detection. And OpenCV 2.4-beta has samples for face recognition also.

Fast Java library for circle recognition [closed]

我们两清 提交于 2019-11-28 05:42:08
问题 I'm looking for a Java library for circle recognition in a supplied bitmap. My Java knowledge is too basic to implement eg. Hough transform efficiently (Java newbie). Thanks! 回答1: You might want to have a look at the implementation in ImageJ, see here. 回答2: Sorry for posting this answer many years after the fact, but that question was asked again in 2012 and then closed for being a duplicate. As I said in my answer to that duplicate, I think the answer given here is overkill for such a simple

java framework for image pattern recognition?

倖福魔咒の 提交于 2019-11-28 05:05:45
I'm looking for a Java framework to help with some data mining specific to images. We have a set of historical images that I would like to categorize and classify. I'm was hoping to find something like weka http://www.cs.waikato.ac.nz/ml/weka/ or Marsyas http://marsyas.sness.net but more specific to sifting through image data to find patterns. Any suggestions? What about using the OpenCV library for Processing? Technically, Processing is not Java, but it runs on the JVM and shouldn't be difficult to get working. OpenCV is the standard choice for computer vision, which is what you're trying to

Finding a picture in a picture with java?

自闭症网瘾萝莉.ら 提交于 2019-11-28 04:34:05
what i want to to is analyse input from screen in form of pictures. I want to be able to identify a part of an image in a bigger image and get its coordinates within the bigger picture. Example: would have to be located in And the result would be the upper right corner of the picture in the big picture and the lower left of the part in the big picture. As you can see, the white part of the picture is irrelevant, what i basically need is just the green frame. Is there a library that can do something like this for me? Runtime is not really an issue. What i want to do with this is just generating

What are the correct usage/parameter values for HoughCircles in OpenCV for Iris detection?

混江龙づ霸主 提交于 2019-11-28 03:30:21
I've been reading about the subject but cannot get the idea in "plain English" about the usage and parameters for HoughCircles (specially the ones after CV_HOUGH_GRADIENT ). What's an accumulator threshold? Are 100 "votes" a right value? I could find and "mask" the pupil, and worked my way through the Canny function, but I'm struggling beyond that and my problem is the HoughCircles function. There seems to be failing at finding the Iris' circle and I don't know why. And this is the function I'm working on: def getRadius(area): r = 1.0 r = math.sqrt(area/3.14) return (r) def getIris(frame):

Image similarity comparison

左心房为你撑大大i 提交于 2019-11-27 18:32:42
I originally asked this question on cstheory.stackexchange.com but was suggested to move it to stats.stackexchange.com . Is there an existing algorithm that returns to me a similarity metric between two bitmap images? By "similar", I mean a human would say these two images were altered from the same photograph. For example, the algorithm should say the following 3 images are the same (original, position shifted, shrunken). Same I don't need to detect warped or flipped images. I also don't need to detect if it's the same object in different orientations. Different I would like to use this