zoukankan      html  css  js  c++  java
  • OPENCV

    opencv_ts300.lib
    opencv_world300.lib 
    IlmImfd.lib 
    libjasperd.lib
    libjpegd.lib
    libpngd.lib 
    libtiffd.lib 
    libwebpd.lib 
    opencv_calib3d300.lib 
    opencv_core300.lib 
    opencv_features2d300.lib
    opencv_flann300.lib
    opencv_highgui300.lib
    opencv_imgcodecs300.lib
    opencv_imgproc300.lib
    opencv_ml300.lib
    opencv_objdetect300.lib
    opencv_photo300.lib 
    opencv_shape300.lib 
    opencv_stitching300.lib


    //// This structure will be used to create the keyboard
    // // input event.
    //INPUT ip;

    //// Pause for 5 seconds.
    //Sleep(5000);

    //// Set up a generic keyboard event.
    //ip.type = INPUT_KEYBOARD;
    //ip.ki.wScan = 0; // hardware scan code for key
    //ip.ki.time = 0;
    //ip.ki.dwExtraInfo = 0;

    //// Press the "A" key
    //ip.ki.wVk = 0x41; // virtual-key code for the "a" key
    //ip.ki.dwFlags = 0; // 0 for key press
    //SendInput(1, &ip, sizeof(INPUT));

    //// Release the "A" key
    //ip.ki.dwFlags = KEYEVENTF_KEYUP; // KEYEVENTF_KEYUP for key release
    //SendInput(1, &ip, sizeof(INPUT));


    // Pause for 5 seconds.
    //Sleep(5000);

    //// Create input event

    //INPUT ip;
    //ip.type = INPUT_KEYBOARD;
    //ip.ki.time = 0;
    //ip.ki.dwFlags = KEYEVENTF_UNICODE;
    //ip.ki.wScan = 'd';
    //ip.ki.wVk = 0;
    //ip.ki.dwExtraInfo = 0;
    //SendInput(1, &ip, sizeof(INPUT));

  • 相关阅读:
    vmware Unable to open kernel device "\.Globalvmx86": The system cannot find the file 的解决方法
    nc和telnet配合使用
    linux下批量替换文件内容
    Linux动态库的导出控制
    goang Receiver & interface
    Go与C语言的互操作 cgo
    Go fsm
    Git多账号登陆
    mysql 安装与配置、使用
    Reverse Integer
  • 原文地址:https://www.cnblogs.com/ytjjyy/p/4134454.html
Copyright © 2011-2022 走看看