We are worried about face recognition. When you look at waffles like we do all day, sometimes it's hard to recognize Ethel and Doris when they've just had a new hair-do. It doesn't help matters when the grease from the 'sear-o-matic' splatters up our glasses. This is a problem. But we kind of know what they look like, maybe we can get our computer to help us out. We've also been on the look-out for Elvis.
The 'Elvis Similarity Index'
You don't have to be thicker than maple syrup to know that people do a good job at recognizing folks. If computers are so smart, then what's the problem? We've got stuff built into our brains that allows us to distinguish Mom, say, from that weird old man who always orders his grits extra-soggy. There's a whole bunch of people called 'computer scientists' , you can spot them by their pasty complexions and Star Trek t-shirts, who want to try and make computers think like people. The problem is that even the head-shrinks don't know how people are wired. But we can try and simulate how the brain works...
Hey! Wanna take a tour of GRACELAND!
The 'Dick Nixon Similarity Index'
"I want to talk to you tonight from my heart on a subject of deep concern to every American. And that is our own sense of self. Me? I always like to draw attention to myself, anything and everything. Televised speeches, baby kissing events, you name it! Hell, when things calmed down and people started to forget about me, I had to do something to hit the front page ... but that's another story.
"To have served in this project is to have felt a very personal sense of kinship with each and every American. I mean, there's a little Dick in everyone, right? In leaving it, I do so with this prayer: May God's grace be with you in all the days ahead.
The 'Alien Similarity Index'
The 'Jackie Similarity Index'
Active Contours
One of the chief virtues of snake representations is that it is possible to specify a wide range of snake properties, through a function called the energy by analogy with physical systems. A program controlling a snake causes it to evolve so as to reduce its energy, so by specifying an appropriate energy function, we can make a snake that will evolve to have particular properties, such as smoothness. Along the same lines, this can be used to track objects. The idea behind tracking moving objects is then simple. In the first frame, let the snake minimize around the object. Then, for subsequent frames, just use the current position of the snake as the original position for the next frame. However there are issues such as sensitivity to noise. For a reasonable contour run, solid background is needed. Any texture in the background confuses the contour. Additionally, high contrast between the foreground object being tracked and the background is necessary. Bold lights and dark work best. The sensitivity to noise requires that a good initial placement be given. That is, the original snake drawn as an oval must be close to the object. The principal disadvantage is then of a serial nature; errors generated at a low-level are passed on through the system without the possibility of correction. The principal advantage of snakes is that the image data, the initial estimate, desired contour properties and knowledge-based constraints are integrated into a single extraction process. Snakes incorporate a global view of edge detection by assessing continuity and curvature combined with the local edge strength to determine an edge.
|
![]()
|
Hough Transform
The Hough Transform is a popular method for detecting curve segments like line segments, circles, ellipses etc. in an image. These global features can be used for solving machine vision problems like recognition and classification of objects in industrial applications. Hough transforms are used to change the mode of representation of a data set to facilitate detection of specific geometric forms. For example: detecting ellipses of a specified diameter (red corpuscules) in a numeric micro-photograph of a drop of blood. Parametric representations are chosen to characterize the edge pattern the hough transform is detecting. The idea is to accumulate evidence for different line equation parameters in "parameter space" for each edge point in "image space". The hough transform calculates the gradient magnitude, thresholds to get edge points, and plots curves in (r,t) space for each point. Local maxima in the (r,t) image are identified and uses these values to draw the corresponding line segments in an output image. The circular hough transform is generally used for roundness estimation of objects. And the linear hough transform for arrangement analysis and classification. The circular Hough transform finds circles of a given size in an image. he transform is computed by taking the gradient of the original image (in this case, the Sobel gradient) and accumulating each non-zero point from the gradient image into every point that is one radius distance away from it. That way, edge points that lie along the outline of a circle of the given radius all contribute to the transform at the center of the circle, and so peaks in the transformed image correspond to the centers of circular features of the given size in the original image. Once a peak is detected and a circle 'found' at a particular point, nearby points (within one-half of the original radius) are excluded as possible circle centers to avoid detecting the same circular feature repeatedly. One of the most robust methods is the circular Hough transform to fit to the data. This will tell you the local radius of curvature in a "best fit" sense using all of the pixel data present, as well as the location of the center of the local arc and the fraction of the total curve that contributes to that arc.
|
![]() ![]() ![]() |