Search Results

0
votes

Algorithm for detecting “clusters” of dots

Fit a probability density function to the data. I would use a "mixture of Gaussians" and fit it using Expectation Maximisation learning primed by the K-means algorithm. The K-means by itself …
4
votes

Finding an interesting frame in a video

If the video contains structure, i.e. several shots, then the standard techniques for video summarisation involve (a) shot detection, then (b) use the first, mid, or nth frame to represent each sho …
2
votes

Showing too much ‘skin’ detection in software

See the seminal paper "Finding Naked People" by Fleck/Forsyth published in ECCV. (Advanced). http://www.cs. …
0
votes

How do I efficiently segment 2D images into regions/blobs of similar values?

An alternative to flood-fill is the connnected-components algorithm. So, Cheaply classify your …