OpenCV.JS Uncaught ReferenceError:未定义cv

时间:2018-02-23 08:39:44

标签: javascript opencv3.0

我正在使用OpneCV.JS和springboot使用Thymeleaf作为我的HTML5模板引擎进行计算机视觉项目。我一直在关注OpenCJ.Js教程here。我想要获得两个输出,一个将显示VideoInput,另一个将显示将显示面部跟踪的Canvaoutput的画布。

然而,视频显示及其工作正常。但是,Canvas显示没有显示。当我在chrome浏览器中检查我的代码时,我意识到我收到一条Uncaught Reference错误,其中表示CV未定义。

有人可以协助告诉我他们在我的代码中是否有任何错误。

以下是我的代码

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorate="layout">

<head>
    <script async type="text/javascript" th:src="@{/opencv/opencv.js}"></script>
    <title>Self-Service Portal</title>
</head>

<body>
    <h2>Trying OpenCV Javascript Computer Vision</h2>
    <p id="status">Loading with OpenCV.js...</p>

    <video id="video" autoplay="true" play width="300" height="225"></video> <br/>
    <canvas id="canvasOutput" autoplay="true" width="300" height="225"></canvas>

    <!--div>
    <div class="inputoutput">
    <img id="imageSrc" alt="No Image" />
    <div class="caption">ImageScr<input type="file" id="fileInput" name="file" /></div>
    </div>
    <div class="inputoutput">
    <canvas id="canvasOutput" ></canvas>
    <div class="caption">canvasOutput</div>
  </div>
</div-->

    <script type="text/javascript">
        navigator.mediaDevices.getUserMedia({
                video: true,
                audio: false
            })
            .then(function(stream) {
                video.srcObject = stream;
                video.play();
            })
            .catch(function(err) {
                console.log("An error occured While accessing media! " + err);
            });

        let video = document.getElementById('video');
        let src = new cv.Mat(video.height, video.width, cv.CV_8UC4);
        let dst = new cv.Mat(video.height, video.width, cv.CV_8UC4);
        let gray = new cv.Mat();
        let cap = new cv.VideoCapture(video);
        let faces = new cv.RectVector();
        let classifier = new cv.CascadeClassifier();

        //load pre-trained classifiers
        classifier.load('haarcascade_frontalface_default.xml');

        const FPS = 30;

        function processVideo() {
            try {
                if (!streaming) {
                    // clean and stop.
                    src.delete();
                    dst.delete();
                    gray.delete();
                    faces.delete();
                    classifier.delete();
                    return;
                }
                let begin = Date.now();
                // start processing.
                cap.read(src);
                src.copyTo(dst);
                cv.cvtColor(dst, gray, cv.COLOR_RGBA2GRAY, 0);
                // detect faces.
                classifier.detectMultiScale(gray, faces, 1.1, 3, 0);
                // draw faces.
                for (let i = 0; i < faces.size(); ++i) {
                    let face = faces.get(i);
                    let point1 = new cv.Point(face.x, face.y);
                    let point2 = new cv.Point(face.x + face.width, face.y + face.height);
                    cv.rectangle(dst, point1, point2, [255, 0, 0, 255]);
                }
                cv.imshow('canvasOutput', dst);
                // schedule the next one.
                let delay = 1000 / FPS - (Date.now() - begin);
                setTimeout(processVideo, delay);
            }
            catch (err) {
                utils.printError(err);
            }
        };

        //schedule the first one.
        setTimeout(processVideo, 0);
    </script>
    <!--script async src="/opencv/opencv.js" onload="onOpenCvReady;" type="text/javascript"></script-->
</body>

</html>

3 个答案:

答案 0 :(得分:0)

<{1}}

async

...意味着它在等待文件加载时不会阻止解析和处理以下标记; details。因此,文件后面的内联脚本可以在运行之前运行该文件并运行其JavaScript。

删除<script async type="text/javascript" th:src="@{/opencv/opencv.js}"></script> 并将async标记移到文档的底部,只是之前使用其定义的内联脚本。

答案 1 :(得分:0)

The cv is not defined error can be fixed by assigning cv to the window cv object like, let cv = window.cv

Turning off async would not be ideal because the OpenCV JS library is large and it would affect the time to initial load. Maybe assign a state variable that changes when it finishes loading and run a check on this variable and update the UI accordingly

答案 2 :(得分:0)

您在 opencv 页面上的示例中找到的代码通常侧重于库的功能,有时它们没有工作所需的所有功能。 opencv 页面上的示例通常使用 utils.js 文件,其中包含要工作的附加功能,这不是很明显。

您的问题很可能会通过本论坛的 answer 解决。 此外,我创建了一个 codesandbox,其中包含视频示例工作所需的所有功能。通常,如果您替换注释下的代码,它们会为您工作

/ ** Your example code here * /

通过您的面部识别代码。