So we have found an area with at leas开发者_C百科t N points around some center point that fit our criteria on some giant field(image created with MLDemos and paint) what are algorithms that can be use
So we have found an area with at leas开发者_C百科t N
points around some center point that fit our criteria on some giant field
(image created with MLDemos and paint) what are algorithms that can be used to get area borders (shown in yellow)? (area is 2d function and algorithm could not know full picture)
You can use a one-class SVM. LibSVM supports it.
It defines a region that contains X% of the data, where X is provided by the user. During testing, the SVM will tell you whether or not the test data is inside the region.
精彩评论