代码拉取完成,页面将自动刷新
/*
FaceDetection jQuery Plugin
Copyright (c) 2014 Jay Salvat
*/
/* global jQuery:true, QUnit:true */
(function ($) {
"use strict";
QUnit.test('Plugin', function (assert) {
assert.ok($("#img").faceDetection().addClass("testing"), "can be chained");
});
QUnit.test('Detection in image', function (assert) {
$("#img").faceDetection(function (faces) {
assert.equal(faces.length, 2, "2 faces found (callback)");
});
$("#img").faceDetection({
complete: function (faces) {
assert.equal(faces.length, 2, "2 faces found (options)");
}
});
});
QUnit.test('Detection in canvas', function (assert) {
var img = document.getElementById('img'),
canvas = document.getElementById('canvas'),
ctx = canvas.getContext('2d');
canvas.setAttribute('width', img.width);
canvas.setAttribute('height',img.height);
ctx.drawImage(img, 0, 0);
// TODO Async test on image load
$("#canvas").faceDetection(function (faces) {
assert.equal(faces.length, 2, "2 faces found");
});
});
QUnit.test('Errors', function (assert) {
$("#div").faceDetection({
complete: function (faces) {
assert.equal(faces.length, 0, "no faces found");
},
error: function (code, message) {
assert.equal(code, 1, "returns error code 1");
assert.ok(/images, videos and canvas only/.test(message), "contains message");
}
});
});
QUnit.asyncTest('Async Mode', function (assert) {
assert.expect(1);
$("#img").faceDetection({
worker: true,
complete: function(faces) {
assert.equal(faces.length, 2, "2 faces found");
QUnit.start();
}
});
});
})(jQuery);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。