EmguCv中的SURF功能:如何提取固定数量的功能

时间:2013-04-14 10:42:45

标签: c# emgucv surf

我想训练一个神经网络,以便对不同类别的灰度图像进行分类。

作为此网络的输入,我想使用SURF-128算法提取的功能。以下代码(example provided with EmguCV library的简化)显示了我如何使用API​​:

SURFDetector surfCPU = new SURFDetector(500, true);
VectorOfKeyPoint observedKeyPoints;

BriefDescriptorExtractor descriptor = new BriefDescriptorExtractor();

observedKeyPoints = surfCPU.DetectKeyPointsRaw(img, null);
Matrix<Byte> observedDescriptors = descriptor.ComputeDescriptorsRaw(img, null, observedKeyPoints);

使用以下代码:

observedDescriptors.Save(@"SURF.bmp");

我可以保存一些结果。下图显示上面的代码提取了不同大小的功能(右侧是使用上一行代码保存的结果):

Image tests

我想要的是获得具有固定大小的矢量。

如何使用EmguCV库为C#提供的API,在128维数组中转换通用灰度图像?

1 个答案:

答案 0 :(得分:0)

问题解决了。

为了获得描述灰度图像的128维阵列,其中存储了与固定关键点(例如图像中心)相关的特征,我使用了以下代码:

SURFDetector surfCPU = new SURFDetector(400, true);

float x = 30, y = 50; //KeyPoint position
float kpSize = 20;    //KeyPoint size

MKeyPoint[] keyPoints = new MKeyPoint[1];
keyPoints[0] = newMKeyPoint(x, y, kpSize); //This method is written below

ImageFeature<float>[] features = surfCPU.ComputeDescriptors<float>(img, null, keyPoints);

float[] array_of_128_elements = features[0].Descriptor;

private static MKeyPoint newMKeyPoint(float x, float y, float size)
{
    MKeyPoint res = new MKeyPoint();
    res.Size = size;
    res.Point = new PointF(x, y);
    //res.Octave = 0;
    //res.Angle = -1;
    //res.Response = 0;
    //res.ClassId = -1;

    return res;
}