如何在模块中测试OpenCV nodejs绑定代码?

时间:2016-02-17 20:11:52

标签: javascript node.js opencv mocha

我正在试验opencv并且我刚刚创建了一个面部发现者'模块。

代码效果很好。但是,我的mocha测试没有执行整个代码。

这是我的存储库: https://github.com/scaryguy/facefinder

当我运行此测试时:

describe('FaceFinder', function() {
    it('should work', function() {
        return FaceFinder('/Users/scaryguy/arge/opencv/facefinder/test/fixtures/childFaces.jpg', '/Users/scaryguy/arge/opencv/facefinder/')
    });
});

我的代码部分执行。

查看我最后评论代码运行的位置。

// https://github.com/scaryguy/facefinder/blob/master/lib/find.js
Find.prototype.image = function(cb) {
    var img = this;
    cv.readImage(img.image_path, function(err, im) {
        if (err) return cb(err, false);
// WHEN I console.log something here it's shown
        im.detectObject(cv.FACE_CASCADE, {}, function(err, faces) {
// BUT here is never run WHILE executing the test. 
            if (err) return cb(err, false);
            for (var i = 0; i < faces.length; i++) {
                var x = faces[i]
                im.ellipse(x.x + x.width / 2, x.y + x.height / 2, x.width / 2, x.height / 2);
            }
            im.save(img.output_name + ".jpg");
            console.log("Number of found faces: " + faces.length + "\n");
            cb(null, true);
        });
    })
}

奇怪的是,当我需要这个模块并运行代码时,它运行得很好。但它在测试时并不起作用。没有错误。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

im.detectObject()方法接受异步回调 - 即,它不会立即发生,而是在以后发生。

我不熟悉这个OpenCV库但是给出了方法的名称( detectObject )我会猜测这个方法只会调用回调 检测到cv.FACE_CASCADE Object

你的情况几乎可以肯定:

  • 运行模块时,会检测到cv.FACE_CASCADE个对象,并且 代码运行。
  • 运行测试时,没有cv.FACE_CASCADE可以检测到,并且它不会运行(但也不会导致错误)。