直播短视频源码,身份证图片识别
2021/7/15 14:36:34
本文主要是介绍直播短视频源码,身份证图片识别,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
直播短视频源码,进行身份验证时,对上传的身份证图片实现正确识别的相关代码
public class IDCardModel { public string name; public string sex; public string birthday; public string nation; public string address; public string IDCard; } /// <summary> /// 获取身份证解析结果 /// </summary> /// <param name="oldpath">身份证证件文件</param> /// <param name="temppathroot">身份证转换文件目录</param> /// <param name="toolroot">身份证转换工具目录</param> /// <returns></returns> public static IDCardModel GetIDCardModel(string oldpath, string temppathroot, string toolroot) { if (string.IsNullOrWhiteSpace(oldpath) || !File.Exists(oldpath) || !Directory.Exists(temppathroot)) { return null; } T9.Util.FileUtil.DeleteFolderFile(temppathroot + @"\", 0); IDCardModel idcardmodel = null; string extension = System.IO.Path.GetExtension(oldpath); string newpath = temppathroot + @"\60.jpg"; File.Copy(oldpath, newpath, true); Process process = new Process();//实例 process.StartInfo.CreateNoWindow = true;//设定不显示窗口 process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "c:\\Windows\\System32\\cmd.exe"; //设定程序名 process.StartInfo.RedirectStandardInput = true; //重定向标准输入 process.StartInfo.RedirectStandardOutput = true; //重定向标准输出 process.StartInfo.RedirectStandardError = true;//重定向错误输出 process.Start(); process.StandardInput.WriteLine(@"d: "); //先转到系统盘下 process.StandardInput.WriteLine(@"cd " + toolroot + " "); //再转到CMD所在目录下 process.StandardInput.WriteLine(@"test.exe "); //process.StandardInput.WriteLine(@"cd rec_idc "); //process.StandardInput.WriteLine(@"test.exe "); string s; bool b = false; while ((s = process.StandardOutput.ReadLine()) != null) { if (s.Contains("time:")) { break; } if (s.StartsWith("6")) { s = process.StandardOutput.ReadLine(); if (s.StartsWith("ERROR")) { } else { b = true; string[] arr = s.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); idcardmodel = new IDCardModel(); idcardmodel.name = arr[0].Trim(); idcardmodel.sex = arr[1].Trim(); idcardmodel.birthday = arr[2].Trim(); idcardmodel.nation = arr[3].Trim(); idcardmodel.address = arr[4].Trim(); idcardmodel.IDCard = arr[5].Trim(); break; } } s = ""; } if (!b) { return null; } process.StandardInput.WriteLine("exit"); process.WaitForExit(); // process.Kill(); process.Close(); process.Dispose(); return idcardmodel; }
```
以上就是 直播短视频源码,身份证图片识别实现的相关代码,更多内容欢迎关注之后的文章
这篇关于直播短视频源码,身份证图片识别的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?