WebRTC通过摄像头获取用户手势

0

一个朋友介绍了一个利用WebRTC通过摄像头获取用户手势的JS,感觉挺不错的,这是地址:http://tlhyy.com/two/

我自己也写了一个比较简单的,其实用法很简单,导入gest.js,然后加入以下代码就可以了:

gest.options.subscribeWithCallback(function(gesture) {
     var message = '';
     if (gesture.direction) {
        message = gesture.direction;
        if(gesture.left){
            // 左
        }
        if(gesture.right){
            // 右
        }
        if(gesture.up){
            // 上
        }
        if(gesture.down){
            // 下
        }
    }else{
        message = gesture.error.message;
    }
});
gest.start();

DEMO地址:http://www.acgist.com/demo/gest/index.html

使用时请正对摄像头,不然有时候会存在一些问题。