菜鸟驿站二维码/一维码 取件识别功能

server/2024/11/19 22:07:53/

特别注意需要引入 库文  ZXing

可跳转:

记录【WinForm】C#学习使用ZXing.Net生成条码过程_c# zxing-CSDN博客

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Net.Mime.MediaTypeNames;
using System.Drawing; 
using ZXing;
using System.Diagnostics;
using ImageMagick;
using System.IO;namespace ZXing1
{class Program{static void Main(string[] args){// 创建一个 Stopwatch 实例Stopwatch stopwatch = new Stopwatch();// 启动计时stopwatch.Start();GetSN();// 获取总用时TimeSpan timeElapsed = stopwatch.Elapsed;Console.WriteLine($"视觉识别总用时: {timeElapsed.TotalSeconds} S");Console.Read();}static List<string> CheckRETURN = new List<string>();public static void GetSN(){string outLab = Environment.CurrentDirectory + "\\WIN_1.jpg";string SnRetu = Getlab(outLab);Console.WriteLine(SnRetu);}public static void Caijian(string inputPath, string outputPath, int x, int y, int width, int height){// 加载原始图片using (Bitmap originalBitmap = new Bitmap(inputPath)){//Bitmap rotatedBitmap = RotateImage(originalBitmap, 90);//根据需求旋转90// 定义裁剪区域(x, y, width, height)Rectangle cropArea = new Rectangle(x, y, width, height); // 修改这些值以适应你的需求// 创建裁剪后的图片using (Bitmap croppedBitmap = CropImage(originalBitmap, cropArea)){// 保存裁剪后的图片croppedBitmap.Save(outputPath);//blackwrit(outputPath, outputPath);}}}static Bitmap CropImage(Bitmap source, Rectangle cropArea){// 确保裁剪区域在源图像范围内if (cropArea.X < 0 || cropArea.Y < 0 || cropArea.Right > source.Width || cropArea.Bottom > source.Height){throw new ArgumentException("裁剪区域超出了图像边界");}Bitmap croppedImage = new Bitmap(cropArea.Width, cropArea.Height);using (Graphics g = Graphics.FromImage(croppedImage)){g.DrawImage(source, new Rectangle(0, 0, cropArea.Width, cropArea.Height),cropArea, GraphicsUnit.Pixel);}return croppedImage;}public static string Getlab(string imagePath){var barcodeBitmap = (Bitmap)System.Drawing.Image.FromFile(imagePath);var barcodeReader = new BarcodeReader{Options = new ZXing.Common.DecodingOptions{// 支持多种条形码格式,包括二维码PossibleFormats = new List<BarcodeFormat>{BarcodeFormat.CODE_128, BarcodeFormat.CODE_39, BarcodeFormat.EAN_13,BarcodeFormat.EAN_8, BarcodeFormat.UPC_A, BarcodeFormat.UPC_E,BarcodeFormat.QR_CODE, BarcodeFormat.DATA_MATRIX}}};var result = barcodeReader.DecodeMultiple(barcodeBitmap);string strlab = string.Empty;if (result != null){strlab = result[0].ToString();int op = 0;foreach (var item in result){Console.WriteLine("识别内容: " + item.Text);DrawBarcodeRectangle(barcodeBitmap, item);op++;}Console.WriteLine($"共识别条码:{op}个");}else{strlab = "FAIL";Console.WriteLine("未能识别内容");}Console.WriteLine("========================模板识别========================");return strlab;}public static void DrawBarcodeRectangle(Bitmap frame, ZXing.Result result){// 获取条码位置的四个角点var points = result.ResultPoints;using (Graphics g = Graphics.FromImage(frame)){Pen pen = new Pen(Color.Green, 10); // 设置绘制矩形的颜色和宽度if (points.Length == 2){// 对于只检测到两个点的情况(例如一维条码),画一条线g.DrawLine(pen, new PointF(points[0].X, points[0].Y), new PointF(points[1].X, points[1].Y));float x = Math.Min(points[0].X, points[1].X);float y = Math.Min(points[0].Y, points[1].Y);g.DrawString(result.Text, new Font("Arial", 32, FontStyle.Bold), new SolidBrush(Color.Red), x,y);  // 将文字显示在矩形框的上方}else if (points.Length >= 4){// 如果有四个点,画出矩形框g.DrawPolygon(pen, new PointF[]{new PointF(points[0].X, points[0].Y),new PointF(points[1].X, points[1].Y),new PointF(points[2].X, points[2].Y),new PointF(points[3].X, points[3].Y)});}}// 显示结果图像ShowImage(frame);}// 用画图工具显示图片public static void ShowImage(Bitmap image){// 使用 System.Windows.Forms.PictureBox 或者你喜好的方法来显示图像using (var form = new System.Windows.Forms.Form()){form.Text = "Barcode Detected";var pictureBox = new System.Windows.Forms.PictureBox{Image = image,Dock = System.Windows.Forms.DockStyle.Fill,SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage};form.Controls.Add(pictureBox);form.ShowDialog();}}}
}

使用效果:

如果对条码不知道裁剪的方法如何使用可阅读我的另一篇文章:

c# 视觉识别图片文字_c# 识别二维码-CSDN博客


http://www.ppmy.cn/server/143308.html

相关文章

Android WMS概览

WMS&#xff08;WindowManagerService&#xff09;是 Android 系统的核心服务&#xff0c;负责管理应用和系统的窗口&#xff0c;包括窗口的创建、销毁、布局、层级管理、输入事件分发以及动画显示等。它通过协调 InputManager 和 SurfaceFlinger 实现触摸事件处理和窗口渲染&a…

单片机_day4_串口通信

目录 1. 通信是什么 2. 电平信号和差分信号 3. 通信的分类 3.1 时钟信号划分 3.1.1 同步通信 3.1.2 异步通信 3.2 通信方式划分 3.2 通信方向划分 4. USART和UART&#xff08;串口通信&#xff09; 4.1 串口通信协议 4.2.1 TTL 4.2.3 RS485 4.3 三种电平协议下串口…

蓝桥杯第22场小白入门赛

刚好牛客周赛和蓝桥杯周赛时间撞了&#xff0c;于是毅然决然选择了打牛客&#xff0c;结局是本蒟蒻被牛客薄纱/(ㄒoㄒ)/~~ 好吧&#xff0c;然后第二天就来水一水蓝桥杯了&#xff08;bushi)&#xff0c;小白入门赛和前几次一样&#xff0c;6道题只能写5道&#xff08;什么时候…

RHCE---第六章:DNS域名解析服务器

文章目录 第六章&#xff1a;DNS域名解析服务器产生原因作用&#xff1a;连接方式因特网的域名结构拓扑&#xff1a;分类 域名服务器类型划分 DNS域名解析过程分类&#xff1a;过程分析 搭建DNS域名解析服务器概述安装软件bind服务中三个关键文件主配置文件分析区域配置文件作用…

Vue 3 中使用 `<script setup>` 语法糖实现模板插值表达式

Vue 3 中使用 <script setup> 语法糖实现模板插值表达式 Vue 3 中的 <script setup> 语法糖让我们可以更直接地定义响应式数据和计算属性&#xff0c;从而在模板中使用插值表达式更加简洁。这种写法不需要手动 return 数据和方法&#xff0c;代码更加清晰。本文将…

Hugging_Face下载

能进huggingface的就能翻过去 不行的话可以去参考这个:mojie.app 1.直接原网下载 2.git(小白勿入) 如果是Linux&#xff0c;可以搜一个叫HFD&#xff08;HuggingFace_Download&#xff09; Windows的git安装参考如下&#xff1a;Git安装 建议先看看这个文档&#xff0c; 如果…

智慧社区平台系统提升物业管理效率与居民生活质量

内容概要 智慧社区平台系统是为应对现代城市管理挑战而诞生的重要工具。随着城市化进程的加快&#xff0c;传统的物业管理方式已经难以满足日益增长的居民需求和管理复杂性。因此&#xff0c;引入智能化管理手段显得尤为重要。这个系统不仅仅是一个简单的软件&#xff0c;它是…

新手小白学习docker第七弹------安装redis集群大厂面试

docker目录 0 引言1 面试题1.1 哈希取余分区1.1.1 是什么1.1.2 优点1.1.3 缺点 1.2 一致性哈希算法分区1.2.1 背景1.2.2 目的1.2.3 三大步骤&#xff08;1&#xff09;算法构建一致性哈希环&#xff08;2&#xff09;服务器IP节点映射&#xff08;3&#xff09;key落到服务器的…