【发布时间】:2020-05-09 22:46:07
【问题描述】:
我正在编写一些对象检测代码。因此,我进行了培训,并从 tensorflow 获得了 .pb 和 graph.pbtxt 文件。我做的下一件事是 python 代码,它基于这两个文件执行我的对象检测,使用 Python 的 opencv。 这是我的python脚本,效果很好:
import cv2 as cv
cvNet = cv.dnn.readNetFromTensorflow('frozen_inference_graph.pb', 'graph.pbtxt')
img = cv.imread('75.png')
rows = img.shape[0]
cols = img.shape[1]
cvNet.setInput(cv.dnn.blobFromImage(img, size=(300, 300), swapRB=True, crop=False))
cvOut = cvNet.forward()
print(rows)
print(cols)
for detection in cvOut[0,0,:,:]:
print(type(cvOut[0,0,:,:]))
score = float(detection[2])
if score > 0.1:
left = detection[3] * cols
top = detection[4] * rows
right = detection[5] * cols
bottom = detection[6] * rows
cv.rectangle(img, (int(left), int(top)), (int(right), int(bottom)), (0, 0, 255), thickness=2)
print('true')
print(score)
cv.imshow('img', cv.resize(img, None, fx=0.3, fy=0.3))
cv.waitKey()
但是,我需要相同的代码,使用 .NET (C#) 完成,使用 EmguCV 库,它是传统 OpenCV 的包装器。
这是我设法编写的部分代码:
private bool RecognizeCO(string fileName)
{
Image<Bgr, byte> img = new Image<Bgr, byte>(fileName);
int cols = img.Width;
int rows = img.Height;
imageBox2.Image = img;
Net netcfg = DnnInvoke.ReadNetFromTensorflow("CO.pb", "graph.pbtxt");
netcfg.SetInput(DnnInvoke.BlobFromImage(img));
Mat mat = netcfg.Forward();
return false;
}
不幸的是,我不知道在那之后该怎么做......实际上,我在这个 C# 代码中得到了相同的结果,就像在 Python 中一样。我知道,我可以只从 C# 调用 python 脚本,但我真的需要用 EmguCV 在 C# 中完成这段代码。 请帮我! 预先感谢您的帮助!
【问题讨论】:
标签: c# python opencv tensorflow emgucv