微信二维码检测的C# 实现——opencvsharp Dnn Caffe推理部署

本文主要是介绍微信二维码检测的C# 实现——opencvsharp Dnn Caffe推理部署,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

早些时候微信二维码开源在opencv, 找码快解码强,最近我研究DataMartix解码库libdmtx的时候,发现它解码还行,找码有点慢,心想何不让深度学习助它一臂之力?于有了这个;

 internal class SSDDetector{private static float CLIP(float x, float x1, float x2) => Math.Max(x1, Math.Min(x, x2));public SSDDetector(string proto_path, string model_path){net_ = CvDnn.ReadNetFromCaffe(proto_path, model_path);}private Net net_;unsafe public List<Mat> Forward(Mat img, int target_width, int target_height){int img_w = img.Cols;int img_h = img.Rows;using Mat input = new();Cv2.Resize(img, input, new Size(target_width, target_height), 0, 0, InterpolationFlags.Cubic);using var blob = CvDnn.BlobFromImage(input, 1.0 / 255, new Size(input.Cols, input.Rows), new Scalar(0f, 0f, 0f),false, false);net_.SetInput(blob, "data");using var prob = net_.Forward("detection_output");List<Mat> point_list = new();// the shape is (1,1,100,7)=>(batch,channel,count,dim)for (int row = 0; row < prob.Size(2); row++){float* prob_score = (float*)prob.Ptr(0, 0, row).ToPointer();// prob_score[0] is not used.// prob_score[1]==1 stands for qrcodeif (prob_score[1] == 1 && prob_score[2] > 1E-5){// add a safe score threshold due to https://github.com/opencv/opencv_contrib/issues/2877// prob_score[2] is the probability of the qrcode, which is not used.var point = new Mat(4, 2, MatType.CV_32FC1);float x0 = CLIP(prob_score[3] * img_w, 0.0f, img_w - 1.0f);float y0 = CLIP(prob_score[4] * img_h, 0.0f, img_h - 1.0f);float x1 = CLIP(prob_score[5] * img_w, 0.0f, img_w - 1.0f);float y1 = CLIP(prob_score[6] * img_h, 0.0f, img_h - 1.0f);point.At<float>(0, 0) = x0;point.At<float>(0, 1) = y0;point.At<float>(1, 0) = x1;point.At<float>(1, 1) = y0;point.At<float>(2, 0) = x1;point.At<float>(2, 1) = y1;point.At<float>(3, 0) = x0;point.At<float>(3, 1) = y1;point_list.Add(point);}}net_.Dispose();return point_list;}}
   private static void Main(string[] args){Mat src = Cv2.ImRead("dm.bmp");int img_w = src.Cols;int img_h = src.Rows;// hard code input sizeint minInputSize = 1600;float resizeRatio = (float)Math.Sqrt(img_w * img_h * 1.0 / (minInputSize * minInputSize));int detect_width = (int)(img_w / resizeRatio);int detect_height = (int)(img_h / resizeRatio);var key = Cv2.WaitKey(1);int fconut = 0;Cv2.NamedWindow("img", WindowFlags.FreeRatio);int windowH = 1200 * img_h / img_w;Cv2.ResizeWindow("img", new(1200, windowH));Cv2.MoveWindow("img", 200, 20);while (key != 113) // q 退出{fconut++; Scalar scalar = Scalar.RandomColor();int thickness = 2;using Mat img = src.Clone();using Mat gray = src.CvtColor(ColorConversionCodes.BGR2GRAY);SSDDetector SSDD = new("detect.prototxt", "detect.caffemodel");var pointslist = SSDD.Forward(gray, detect_width, detect_height);foreach (var points in pointslist){img.Line((int)points.At<float>(0, 0), (int)points.At<float>(0, 1),(int)points.At<float>(1, 0), (int)points.At<float>(1, 1),scalar, thickness);img.Line((int)points.At<float>(1, 0), (int)points.At<float>(1, 1),(int)points.At<float>(2, 0), (int)points.At<float>(2, 1),scalar, thickness);img.Line((int)points.At<float>(2, 0), (int)points.At<float>(2, 1),(int)points.At<float>(3, 0), (int)points.At<float>(3, 1),scalar, thickness);img.Line((int)points.At<float>(3, 0), (int)points.At<float>(3, 1),(int)points.At<float>(0, 0), (int)points.At<float>(0, 1),scalar, thickness);}img.PutText(fconut.ToString(), new(20, 20), HersheyFonts.HersheyDuplex, 1, Scalar.Red);img.PutText("q : quit", new(20, 60), HersheyFonts.HersheyDuplex, 1, Scalar.Red);Cv2.ImShow("img", img);key = Cv2.WaitKey();}}

 原连接:

https://github.com/opencv/opencv_contrib/blob/master/modules/wechat_qrcode/src/detector/ssd_detector.cpp

欢迎加入 opencvsharp 技术交流群: 827888895 进群暗号:shimat

这篇关于微信二维码检测的C# 实现——opencvsharp Dnn Caffe推理部署的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/848984

相关文章

闲置电脑也能活出第二春?鲁大师AiNAS让你动动手指就能轻松部署

对于大多数人而言,在这个“数据爆炸”的时代或多或少都遇到过存储告急的情况,这使得“存储焦虑”不再是个别现象,而将会是随着软件的不断臃肿而越来越普遍的情况。从不少手机厂商都开始将存储上限提升至1TB可以见得,我们似乎正处在互联网信息飞速增长的阶段,对于存储的需求也将会不断扩大。对于苹果用户而言,这一问题愈发严峻,毕竟512GB和1TB版本的iPhone可不是人人都消费得起的,因此成熟的外置存储方案开

W外链微信推广短连接怎么做?

制作微信推广链接的难点分析 一、内容创作难度 制作微信推广链接时,首先需要创作有吸引力的内容。这不仅要求内容本身有趣、有价值,还要能够激起人们的分享欲望。对于许多企业和个人来说,尤其是那些缺乏创意和写作能力的人来说,这是制作微信推广链接的一大难点。 二、精准定位难度 微信用户群体庞大,不同用户的需求和兴趣各异。因此,制作推广链接时需要精准定位目标受众,以便更有效地吸引他们点击并分享链接

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

综合安防管理平台LntonAIServer视频监控汇聚抖动检测算法优势

LntonAIServer视频质量诊断功能中的抖动检测是一个专门针对视频稳定性进行分析的功能。抖动通常是指视频帧之间的不必要运动,这种运动可能是由于摄像机的移动、传输中的错误或编解码问题导致的。抖动检测对于确保视频内容的平滑性和观看体验至关重要。 优势 1. 提高图像质量 - 清晰度提升:减少抖动,提高图像的清晰度和细节表现力,使得监控画面更加真实可信。 - 细节增强:在低光条件下,抖

阿里开源语音识别SenseVoiceWindows环境部署

SenseVoice介绍 SenseVoice 专注于高精度多语言语音识别、情感辨识和音频事件检测多语言识别: 采用超过 40 万小时数据训练,支持超过 50 种语言,识别效果上优于 Whisper 模型。富文本识别:具备优秀的情感识别,能够在测试数据上达到和超过目前最佳情感识别模型的效果。支持声音事件检测能力,支持音乐、掌声、笑声、哭声、咳嗽、喷嚏等多种常见人机交互事件进行检测。高效推

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo