0

我正在尝试在 C# 中使用 emguCV 的 SURF 特征检测器来检测图像的关键点。我正在使用这段代码:

Image<Gray, Byte> myImage = new Image<Gray, byte>("test.png");
SURFDetector surf = new SURFDetector(500, false);
VectorOfKeyPoint myKeyPoints = surf.DetectKeyPointsRaw(myImage, null);
Matrix<float> myDescriptors = surf.ComputeDescriptorsRaw(myImage, null, myKeyPoints);

所以我在那个矩阵中有关键点。我想要做的是将这些关键点保存/导出到 .xml 文件中。有人可以帮助我如何做到这一点吗?提前致谢。

4

1 回答 1

0

您可以使用 XxmlSerializer 和 StringBuilder 来完成

String filePath = "";
StringBuilder sb = new StringBuilder();
(new XmlSerializer(typeof(Matrix<float>))).Serialize(new StringWriter(sb), modelDescriptors); 

System.IO.File.WriteAllText(filePath , sb.ToString());

参考:

http://www.emgu.com/wiki/index.php/Working_with_Matrices

于 2012-09-25T16:07:10.897 回答