测试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

相关推荐
Scout-leaf3 天前
WPF新手村教程(三)—— 路由事件
c#·wpf
用户298698530143 天前
程序员效率工具:Spire.Doc如何助你一键搞定Word表格排版
后端·c#·.net
mudtools4 天前
搭建一套.net下能落地的飞书考勤系统
后端·c#·.net
玩泥巴的4 天前
搭建一套.net下能落地的飞书考勤系统
c#·.net·二次开发·飞书
唐宋元明清21885 天前
.NET 本地Db数据库-技术方案选型
windows·c#
lindexi5 天前
dotnet DirectX 通过可等待交换链降低输入渲染延迟
c#·directx·d2d·direct2d·vortice
qq_454245035 天前
基于组件与行为的树状节点系统
数据结构·c#
bugcome_com5 天前
C# 类的基础与进阶概念详解
c#
雪人不是菜鸡5 天前
简单工厂模式
开发语言·算法·c#
铸人5 天前
大数分解的Shor算法-C#
开发语言·算法·c#