classes = []
with open("coco.names", "r") as f: classes = [line.strip() for line in f.readlines()] layer_names = net.getLayerN"> classes = []
with open("coco.names", "r") as f: classes = [line.strip() for line in f.readlines()] layer_names = net.getLayerN">
117.info
人生若只如初见

YOLO C#版本对比Python版

这里是一个简单的比较Python和C#中的YOLO实现的例子:

Python版本:

import cv2

net = cv2.dnn.readNet("yolov3.weights", "yolov3.cfg")
classes = []
with open("coco.names", "r") as f:
    classes = [line.strip() for line in f.readlines()]

layer_names = net.getLayerNames()
output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]

image = cv2.imread("image.jpg")
blob = cv2.dnn.blobFromImage(image, 0.00392, (416, 416), (0, 0, 0), True, crop=False)
net.setInput(blob)
outs = net.forward(output_layers)

for out in outs:
    for detection in out:
        scores = detection[5:]
        class_id = np.argmax(scores)
        confidence = scores[class_id]
        if confidence > 0.5:
            center_x = int(detection[0] * image.shape[1])
            center_y = int(detection[1] * image.shape[0])
            width = int(detection[2] * image.shape[1])
            height = int(detection[3] * image.shape[0])
            x = int(center_x - width / 2)
            y = int(center_y - height / 2)
            cv2.rectangle(image, (x, y), (x + width, y + height), (0, 255, 0), 2)
            cv2.putText(image, classes[class_id], (x, y - 5), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2)

cv2.imshow("Image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()

C#版本:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web;
using System.Web.Http;

public class YoloController : ApiController
{
    [HttpPost]
    public IHttpActionResult DetectObjects()
    {
        string modelFilePath = HttpContext.Current.Server.MapPath("~/yolov3.weights");
        string configFilePath = HttpContext.Current.Server.MapPath("~/yolov3.cfg");
        string classesFilePath = HttpContext.Current.Server.MapPath("~/coco.names");
        
        var classes = File.ReadAllLines(classesFilePath);
        
        var net = CvDnn.ReadNet(modelFilePath, configFilePath);
        
        var layerNames = net.GetLayerNames();
        var outputLayers = layerNames.Where(l => net.GetUnconnectedOutLayers().Contains(l)).ToList();
        
        var image = HttpContext.Current.Request.Files["image"];
        var bitmap = new Bitmap(image.InputStream);
        var blob = CvDnn.BlobFromImage(bitmap, 0.00392, new Size(416, 416), new Scalar(0, 0, 0), true, false);
        
        net.SetInput(blob);
        var outs = net.Forward(outputLayers.ToArray());
        
        foreach (var detection in outs)
        {
            var scores = detection.Skip(5);
            var classId = Array.IndexOf(scores, scores.Max());
            var confidence = scores[classId];
            
            if (confidence > 0.5)
            {
                var centerX = (int)(detection[0] * bitmap.Width);
                var centerY = (int)(detection[1] * bitmap.Height);
                var width = (int)(detection[2] * bitmap.Width);
                var height = (int)(detection[3] * bitmap.Height);
                var x = centerX - width / 2;
                var y = centerY - height / 2;
                
                using (var graphics = Graphics.FromImage(bitmap))
                {
                    graphics.DrawRectangle(Pens.Green, x, y, width, height);
                    graphics.DrawString(classes[classId], new Font("Arial", 12), Brushes.Green, new PointF(x, y - 15));
                }
            }
        }
        
        var outputStream = new MemoryStream();
        bitmap.Save(outputStream, ImageFormat.Jpeg);
        
        return Ok(Convert.ToBase64String(outputStream.ToArray()));
    }
}

这两个版本都使用了OpenCV的深度学习模块来实现YOLO目标检测算法。虽然Python和C#的代码语法和结构有所不同,但它们的实现原理是相似的。在Python版本中,我们使用了cv2来读取模型和图像,并进行目标检测的操作。而在C#版本中,我们使用了Emgu.CV库来实现相同的功能。无论是Python还是C#,都可以很容

未经允许不得转载 » 本文链接:https://www.117.info/ask/fedb8AzsIAwZQAF0.html

推荐文章

  • C++ Stream能提高编码效率吗

    C++ Stream 是 C++ 标准库中用来处理输入输出的机制,它提供了一种方便的方式来处理文件、标准输入输出、字符串等的输入输出操作。使用 C++ Stream 可以提高编码...

  • C++ Stream是否适合初学者

    对于初学者来说,C++ Stream可能会有一定的学习曲线,因为它涉及到文件输入输出、控制台输入输出等操作。但是一旦理解了基本概念和使用方法,C++ Stream可以帮助...

  • C++ Stream的内存管理策略

    C++ Stream 在内存管理方面采用了自动内存管理策略,即在使用 Stream 的过程中,内存的分配和释放由 Stream 自动完成,开发者不需要显式地进行内存管理。这种自动...

  • C++ Stream在大型项目中的应用

    在大型项目中,C++ Stream可以用于日志记录、数据流处理、文件操作等方面。以下是C++ Stream在大型项目中的一些应用场景: 日志记录:在大型项目中,日志记录是非...

  • YOLO C#实现步骤是什么

    实现YOLO算法的步骤如下: 数据准备:收集并标记带有目标标签的图像数据集。 模型建立:使用深度学习框架(如TensorFlow、PyTorch)搭建YOLO模型。 模型训练:利...

  • C# region怎样影响调试

    在C#中使用#region来定义代码块可以帮助组织和管理代码,但是对调试并没有直接影响。#region主要用于将一组相关的代码片段组织在一起,使代码更易读和易维护。在...

  • C# region如何影响性能

    在C#中使用#region标记可以将代码区块进行逻辑分组,方便阅读和管理代码。#region标记本身不会对代码的性能造成影响,它只是在编译时被忽略的注释语法。
    然...

  • C# region对编译有何影响

    C#中的#region指令是用来定义代码区域的,它并不会影响代码的编译结果。在编译时,#region指令会被编译器忽略掉,编译器只会将#region和#endregion之间的代码当作...