突破人机交互的界限, 即将到来

Breaking through the boundaries of human-computer interaction is coming

Base Action

  • fist

  • hand_open

  • indexFinger_point
Normal Action

  • hand_slide_right

  • hand_slide_left
Advance Action
  • +
    hands_expansion
  • +
    hands_fold
  • +
    hands_anticlockwise
  • +
    hands_clockwise
  • +
    hands_shutdown
How to run custom javascript code
Step1:listen message

            
            window.addEventListener('message', (msg)=>{
              switch(msg.data.data.handStatus){

                case 'hand_slide_right':
                  //do something
                break;

                case 'hand_slide_left':
                  //do something
                break;
              
              } 
            }, false);
          
          
Step2:register module

            window.parent.postMessage({type:"MODULE_INIT", moduleId:"handControlModule"}, "*");
          
Step3: fill the url into the software input box
Notice: mark sure the camera captures the hand completely.