choice between win32 APIs and .NET framework

前端 未结 5 2026
你的背包
你的背包 2021-02-09 00:36

I have to develop an application for windows that will enable controlling the mouse through web cam by recognizing hand gestures. I will be using vc++ 2008 for development. But

5条回答
  •  难免孤独
    2021-02-09 01:05

    If you are acquainted with Win32 API, then go Win32 API. It is the natural choice in your case since most of your source code will be video capturing, image processing, algorithms, and interfaces to mouse in Windows. When you are interested in performance, be closer to the hardware avoiding thick layers like .NET.

    I believe that .NET is for complex business applications not for real-time applications or device drivers.

提交回复
热议问题