测试FaceRecognitionDotNet报错“Error deserializing object of type int”

FaceRecognitionDotNet宣称是最简单的.net人脸识别模块,其内部使用Dlib、DlibDotNet、OpenCVSharp等模块实现人脸识别,网上有不少介绍文章。实际测试过程中,在调用FaceRecognition.Create函数创建FaceRecognition实例对象时,会报如下错误:

bash 复制代码
DlibDotNet.SerializationException:"An error occurred while trying to read the first object from the file E:\MyPrograms\C#\TestViewFaceCore\TestFaceRecognitionDotNet\Models\shape_predictor_68_face_landmarks.dat.
ERROR: Error deserializing object of type int


  开始认为是个人电脑中的模型文件有误,于是在参考文献4中重新下载了所有模型,然后运行程序还是报相同错误。
  百度错误信息,在stackoverflow中找到个类似问题(参考文献2),文章中提到有可能是shape_predictor_68_face_landmarks.dat文件不对,于是从参考文献1中下载FaceRecognitionDotNet源码,并将FaceRecognition中加载部分模型文件的代码注释,如下所示。

csharp 复制代码
private FaceRecognition(string directory)
{
    ...
    ...

    //this._PosePredictor68Point?.Dispose();
    //this._PosePredictor68Point = ShapePredictor.Deserialize(predictor68PointModel);

    ....
    ....
}

重新编译FaceRecognitionDotNet项目后再调用,上述报错问题解决。但又出现以下异常,从报错信息来看,缺少DlibDotNetNativeDnn.dll文件,但是将DlibDotNetNativeDnn.dll及DlibDotNetNative.dll文件复制到exe同级文件夹或者同级文件夹下的runtimes\win-x86\native文件夹内都不行。最后找到参考文献3,其内提到在exe同级文件夹下创建dll\x86子文件夹并复制dll文件,照此方式能解决报错问题,至此即可正常测试FaceRecognitionDotNet的用法了。

参考文献:

[1]https://github.com/takuya-takeuchi/FaceRecognitionDotNet/tree/master

[2]https://stackoverflow.com/questions/50349818/dlib-error-deserializing-object-of-type-unsigned-long-while-deserializing-object

[3]https://blog.csdn.net/qq_29881799/article/details/134267102

[4]https://github.com/ageitgey/face_recognition_models/tree/master/face_recognition_models/models

相关推荐
IT良8 小时前
c#增删改查 (数据操作的基础)
开发语言·c#
yufei-coder8 小时前
掌握 C# 中的 LINQ(语言集成查询)
windows·vscode·c#·visual studio
59678515413 小时前
DotNetty ChannelRead接收数据为null
tcp/ip·c#
weixin_4640780714 小时前
C#串口温度读取
开发语言·c#
明耀16 小时前
WPF RadioButton 绑定boolean值
c#·wpf
Death20018 小时前
Qt 中的 QListWidget、QTreeWidget 和 QTableWidget:简化的数据展示控件
c语言·开发语言·c++·qt·c#
Death20019 小时前
Qt 3D、QtQuick、QtQuick 3D 和 QML 的关系
c语言·c++·qt·3d·c#
yufei-coder19 小时前
C#基础语法
开发语言·c#·.net
yngsqq19 小时前
031集——文本文件按空格分行——C#学习笔记
笔记·学习·c#
新手unity自用笔记1 天前
项目-坦克大战学习-子弹的移动与销毁
笔记·学习·c#