提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:杨鹏连|2020-07-21 09:25:25.920|阅读 338 次
概述:在大流行期间,由于社交距离遥远,对相机应用程序的需求激增。因此,我收集了一些用不同编程语言实现的基本OpenCV网络摄像头示例代码,并构建了一些用于远程网络摄像头访问的简单Web应用程序。希望这对开始构建网络摄像头应用程序的人有所帮助。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Dynamic Web TWAIN是一个专为Web应用程序设计的TWAIN扫描识别控件。你只需在TWAIN接口写几行代码,就可以用兼容TWAIN的扫描仪扫描文档或从数码相机/采集卡中获取图像。然后用户可以编辑图像并将图像保存为多种格式,用户可保存图像到远程数据库或者SharePoint。这个TWAIN控件还支持上传和处理本地图像。
从任何Web浏览器访问远程网络摄像头
要实现远程网络摄像头访问,我只需要创建一个带有图像元素的简单HTML页面并启动一个简单的HTTP服务器,即可通过HTTP GET请求连续发送网络摄像头帧。为了使代码尽可能简单,我只使用了四种编程语言的内置HTTP API和OpenCV视频捕获API。
Node.js
创建一个简单的HTML页面:
使用setTimeout()从Web服务器连续获取新图像并刷新图像元素。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="//www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Webcam</title> </head> <body> <img id="image"/> <script type="text/javascript"> var image = document.getElementById('image'); function refresh() { image.src = "/image?" + new Date().getTime(); image.onload= function(){ setTimeout(refresh, 30); } } refresh(); </script> </body> </html>
在服务器端,使用HTTP模块创建一个简单的Web服务器:
const http = require('http'); var server = http.createServer(function (req, res) { if (req.url === '/' || req.url === '/index.htm') { res.writeHead(200, { 'Content-Type': 'text/html' }); res.write(html); res.end(); } else if (req.url.startsWith("/image")) { res.writeHead(200, { 'Content-Type': 'image/jpeg' }); res.write(img); res.end(); } else res.end('Invalid Request!'); }); server.listen(2020);分析请求URL,然后发送相应的响应。同时,创建一个计时器以捕获网络摄像头帧并将其编码为JPEG格式:
var img = null; function capture() { var frame = wCap.read() if (frame.empty) { wCap.reset(); frame = wCap.read(); } img = cv.imencode('.jpg', frame); setTimeout(capture, 30); } capture();要通过双击打开HTML文件,请将相对图像路径更改为绝对图像路径:
image.src = "//localhost:2020/image?" + new Date().getTime();C#
using System; using System.IO; using System.Text; using System.Net; using System.Threading.Tasks; using OpenCvSharp; namespace Web { class Program { public static HttpListener listener; public static string url = "//localhost:2020/"; public static string pageData = "" + "" + "" + "蟒蛇如何使用OpenCV为桌面和Web构建简单的Webcam应用程序(二)-控件新闻-慧都网 " + "" + "" + ""+ " "+ "" + ""; public static VideoCapture capture = new VideoCapture(0); public static async Task HandleIncomingConnections() { while (true) { HttpListenerContext ctx = await listener.GetContextAsync(); HttpListenerRequest req = ctx.Request; HttpListenerResponse resp = ctx.Response; if ((req.HttpMethod == "GET") && (req.Url.AbsolutePath.StartsWith("/image"))) { resp.ContentType = "image/jpeg"; using (Mat image = new Mat()) { capture.Read(image); Cv2.ImEncode(".jpg", image, out var imageData); await resp.OutputStream.WriteAsync(imageData, 0, imageData.Length); resp.Close(); } } else { // Write the response info byte[] data = Encoding.UTF8.GetBytes(pageData); resp.ContentType = "text/html"; resp.ContentEncoding = Encoding.UTF8; resp.ContentLength64 = data.LongLength; // Write out to the response stream (asynchronously), then close it await resp.OutputStream.WriteAsync(data, 0, data.Length); resp.Close(); } } } static void Main(string[] args) { // Create a Http server and start listening for incoming connections listener = new HttpListener(); listener.Prefixes.Add(url); listener.Start(); Console.WriteLine("Listening for connections on {0}", url); // Handle requests Task listenTask = HandleIncomingConnections(); listenTask.GetAwaiter().GetResult(); // Close the listener listener.Close(); } } }
使用Python的内置HTTP服务器类非常方便。我们需要做的是定义一个用于处理HTTP请求的自定义处理程序:
import http.server import socketserver class MyHandler(http.server.BaseHTTPRequestHandler): def do_GET(self): if self.path == '/': self.send_response(200) self.send_header("Content-type", "text/html") self.end_headers() self.wfile.write(bytes(pageData, "utf8")) elif self.path.startswith('/image'): self.send_response(200) self.send_header("Content-type", "image/jpeg") self.end_headers() ret, frame = cap.read() _, jpg = cv2.imencode(".jpg", frame) self.wfile.write(jpg) else: self.send_response(404) with socketserver.TCPServer(("", PORT), MyHandler) as httpd: print("Serving at port ", PORT) try: httpd.serve_forever() except: pass
高朗
像Python一样,很容易在30秒内设置HTTP Web服务器:func handler(w http.ResponseWriter, r *http.Request) { if r.URL.Path == "/" { pageData := "" + "" + "" + "如何使用OpenCV为桌面和Web构建简单的Webcam应用程序(二)-控件新闻-慧都网 " + "" + "" + "" + " " + "" + "" w.Header().Set("Content-Type", "text/html") w.Write([]byte(pageData)) } else if strings.HasPrefix(r.URL.Path, "/image") { webcam.Read(&img) jpg, _ := gocv.IMEncode(".jpg", img) w.Write(jpg) } else { fmt.Fprintf(w, "Page Not Found") } } func main() { fmt.Println("Running at port 2020...") webcam, _ = gocv.OpenVideoCapture(0) img = gocv.NewMat() http.HandleFunc("/", handler) log.Fatal(http.ListenAndServe(":2020", nil)) webcam.Close() }
完成所有操作后,我可以运行Web服务器并访问localhost:2020以从任何桌面Web浏览器查看网络摄像头视频流。
也可以从我的移动网络浏览器访问该页面。
现在,无论身在何处,我都可以通过远程网络摄像头观看实时视频。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢