Blame view

3rdparty/opencv-4.5.4/modules/js/test/tests.html 4.61 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  <!DOCTYPE html>
  <html lang="en">
      <head>
          <title>OpenCV JS Tests</title>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
          <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.20.0.css" type="text/css" media="screen">
          <style>
              body {
                  font-family: Monospace;
                  background-color: #ffffff;
                  margin: 0px;
              }
              a {
                  color: #0040ff;
              }
          </style>
          <script src="http://code.jquery.com/qunit/qunit-2.0.1.js"></script>
          <script type="text/javascript">
            QUnit.config.autostart = false;
  
            QUnit.log(function(details) {
              if (details.result) {
                return;
              }
              var loc = details.module + ": " + details.name + ": ",
                  output = "FAILED: " + loc + ( details.message ? details.message : "" )
                  prefix = details.message ? ", " : "";
  
              if (details.actual) {
                output += prefix + "expected: " + details.expected + ", actual: " + details.actual;
                prefix = ', ';
              }
              if (details.source) {
                output += prefix + details.source;
              }
              console.warn(output);
            });
            QUnit.done(function(details) {
              console.log("Total: " + details.total + " Failed: " + details.failed + " Passed: " + details.passed);
              console.log("Time(ms): " + details.runtime);
            });
  
            // Helper for opencv.js (see below)
            var Module = {
              preRun: [function() {
                Module.FS_createPreloadedFile('/', 'haarcascade_frontalface_default.xml', 'haarcascade_frontalface_default.xml', true, false);
              }],
              postRun: [] ,
              onRuntimeInitialized: function() {
                console.log("Emscripten runtime is ready, launching QUnit tests...");
                if (window.cv instanceof Promise) {
                  window.cv.then((target) => {
                     window.cv = target;
                     //console.log(cv.getBuildInformation());
                     QUnit.start();
                  })
                } else {
                  // for backward compatible
                  // console.log(cv.getBuildInformation());
                  QUnit.start();
                }
              },
              print: (function() {
                var element = document.getElementById('output');
                if (element) element.value = ''; // clear browser cache
                return function(text) {
                  console.log(text);
                  if (element) {
                    element.value += text + "\n";
                    element.scrollTop = element.scrollHeight; // focus on bottom
                  }
                };
              })(),
              printErr: function(text) {
                console.error(text);
              },
              setStatus: function(text) {
                console.log(text);
              },
              totalDependencies: 0
            };
  
            Module.setStatus('Downloading...');
            window.onerror = function(event) {
              Module.setStatus('Exception thrown, see JavaScript console');
              Module.setStatus = function(text) {
                if (text) Module.printErr('[post-exception status] ' + text);
              };
            };
  
            function opencvjs_LoadError() {
              Module.printErr('Failed to load/initialize opencv.js');
              QUnit.module('LoaderFatalError', {});
              QUnit.config.module = 'LoaderFatalError';
              QUnit.only("Failed to load OpenCV.js", function(assert) {
                assert.ok(false, "Can't load/initialize opencv.js");
              });
              QUnit.start();
            }
          </script>
      </head>
      <body>
  
          <div id="qunit"></div>
          <div id="qunit-fixture"></div>
  
          <script type="application/javascript" async src="opencv.js" onerror="opencvjs_LoadError()"></script>
          <script type="application/javascript" src="test_mat.js"></script>
          <script type="application/javascript" src="test_utils.js"></script>
          <script type="application/javascript" src="test_imgproc.js"></script>
          <script type="application/javascript" src="test_objdetect.js"></script>
          <script type="application/javascript" src="test_video.js"></script>
          <script type="application/javascript" src="test_photo.js"></script>
          <script type="application/javascript" src="test_features2d.js"></script>
          <script type="application/javascript" src="test_calib3d.js"></script>
      </body>
  </html>