0

我正在使用这个插件进行照片人脸检测。它可以工作,但是当图片中没有可检测到的人脸时,不会调用错误函数。而是调用“完整”函数。

我想当它无法检测到人脸时,它不返回数组,或者返回未定义的对象,或者 null,或者其他东西,所以我试过了:

//also tried null this way
if(typeof coords[i].confidence === 'undefined') {
alert("you have little aptitude for programming."); 
}


if(coords instanceof Array) {

        alert("good job!!");
} else {
alert("not even close!!");
}


if(!(coords.length)) {
alert("you have a distorted perception of your own abilities.");
}


if (positionX > coords.length) {

alert(coords[i].confidence);
}

当检测到人脸时,它会显示适当的警报,但当没有检测到人脸时,不会显示警报。它只是调用“完整”函数。

这是脚本。让我知道是否应该提供更多代码。

<script>
    $(function() {
        $('#try').click(function() {
            var $this = $(this);

            var coords = $('img').faceDetection({


                complete:function(img, coords) {
                    $this.text('Done!');

                },
                error:function(img, code, message) {
                    $this.text('error!');
                    alert('Error: '+message);
                }

            });



            for (var i = 0; i < coords.length; i++) {

//Here is where I have been putting those conditional statements.  

//This part, which appends a bordered div (#face) to the div containing the face pic, works fine.

                $('<div>', {
                    'class':'face',
                    'id':'face',
                    'css': {
                        'position': 'absolute',
                        'left':     coords[i].positionX +'px',
                        'top':      coords[i].positionY +'px',
                        'width':    coords[i].width +'px',
                        'height':   coords[i].height    +'px'
                    }

                })
                .appendTo('#content');                               


            } 
        });


        return false;
    });
    </script>

<a href="#" id="try">TRY IT NOW!</a>               

<div id="content">
 <img src="pic.jpg" id="myPicture"/>
</div>
4

1 回答 1

0

complete无论成功与否,都确实被调用。如果无法检测到任何面孔插件会返回空数组,这就是您看不到任何警报的原因。您的for循环未执行。

于 2013-04-10T03:37:21.187 回答