在线看毛片网站电影-亚洲国产欧美日韩精品一区二区三区,国产欧美乱夫不卡无乱码,国产精品欧美久久久天天影视,精品一区二区三区视频在线观看,亚洲国产精品人成乱码天天看,日韩久久久一区,91精品国产91免费

<menu id="6qfwx"><li id="6qfwx"></li></menu>
    1. <menu id="6qfwx"><dl id="6qfwx"></dl></menu>

      <label id="6qfwx"><ol id="6qfwx"></ol></label><menu id="6qfwx"></menu><object id="6qfwx"><strike id="6qfwx"><noscript id="6qfwx"></noscript></strike></object>
        1. <center id="6qfwx"><dl id="6qfwx"></dl></center>

            新聞中心

            EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 漫談WinCE的手寫(xiě)識(shí)別技術(shù)(二)

            漫談WinCE的手寫(xiě)識(shí)別技術(shù)(二)

            作者: 時(shí)間:2016-09-12 來(lái)源:網(wǎng)絡(luò) 收藏

            #define DEFAULT_HWXGUIDE_CVERTBOX 1

            #define DEFAULT_HWXGUIDE_CXOFFSET 1

            #define DEFAULT_HWXGUIDE_CYOFFSET 1

            //The default value of ALC

            #define DEFAULT_ALC ALC_KANJI_ALL

            //--------------------------------------------------------------------

            // Construction/Destruction

            CRecognizer::CRecognizer()

            {

            m_alc = NULL;

            m_hrc = NULL;

            m_hWndRecog = NULL;

            memset(m_hwxGuide,0,sizeof(m_hwxGuide));

            }

            CRecognizer::~CRecognizer()

            {

            }

            //-----------------------------------------------------------------------

            //Descriptiong:

            // Initialize the recognizer

            //

            //Parameter:

            // hWnd: [in] The handle of window to be recognized

            // rcWnd: [in] The window area to be recognized

            // scale: [in] The scale base of prcWnd point

            //-----------------------------------------------------------------------

            BOOL CRecognizer::Initialize(HWND hWnd,const RECT *prcWnd,ScaleType scale)

            {

            m_hWndRecog = hWnd;

            m_alc = DEFAULT_ALC;

            RECT rcWnd = {0};

            switch(scale)

            {

            case SCALE_APPWND:

            {

            rcWnd = *prcWnd;

            rcWnd.left *= 4;

            rcWnd.right *= 4;

            rcWnd.top *= 4;

            rcWnd.bottom *= 4;

            MapWindowPoints(hWnd,HWND_DESKTOP,(LPPOINT)(rcWnd),(sizeof(RECT)/sizeof(POINT)));

            break;

            }

            case SCALE_SCREEN:

            {

            rcWnd = *prcWnd;

            break;

            }

            }

            m_hwxGuide.cHorzBox = DEFAULT_HWXGUIDE_CHORZBOX;

            m_hwxGuide.cVertBox = DEFAULT_HWXGUIDE_CVERTBOX;

            m_hwxGuide.xOrigin = rcWnd.left;

            m_hwxGuide.yOrigin = rcWnd.top;

            m_hwxGuide.cxBox = rcWnd.right - rcWnd.left;

            m_hwxGuide.cyBox = rcWnd.bottom - rcWnd.top;

            m_hwxGuide.cxOffset = DEFAULT_HWXGUIDE_CXOFFSET;

            m_hwxGuide.cyOffset = DEFAULT_HWXGUIDE_CYOFFSET;

            m_hwxGuide.cxWriting = (rcWnd.right - rcWnd.left) - m_hwxGuide.cxOffset * 2;

            m_hwxGuide.cyWriting = (rcWnd.bottom - rcWnd.top) - m_hwxGuide.cyOffset * 2;

            m_hwxGuide.nDir = HWX_HORIZONTAL;

            #ifdef RECOGNIZE_FUNCTION_FROM_DLL

            HINSTANCE hInstDll;

            hInstDll = LoadLibrary(RECOGNIZE_DLL_PATH);

            if(hInstDll != NULL)

            {

            HWXCONFIG = (DLL_HWXCONFIG) GetProcAddress(hInstDll,TEXT(HwxConfig));

            HWXCREATE = (DLL_HWXCREATE) GetProcAddress(hInstDll,TEXT(HwxCreate));

            HWXSETGUIDE = (DLL_HWXSETGUIDE) GetProcAddress(hInstDll,TEXT(HwxSetGuide));

            HWXALCVALID = (DLL_HWXALCVALID) GetProcAddress(hInstDll,TEXT(HwxALCValid));

            HWXALCPRIORITY = (DLL_HWXALCPRIORITY) GetProcAddress(hInstDll,TEXT(HwxALCPriority));



            關(guān)鍵詞:

            評(píng)論


            相關(guān)推薦

            技術(shù)專區(qū)

            關(guān)閉