How do I install OpenCV on Windows Azure?

后端 未结 1 354
自闭症患者
自闭症患者 2021-01-19 16:01

I am a beginner with Windows Azure and I want to make an app which does facial recognition on a video stream. Hence I need to install OpenCV (C++ Library). How do I do that?

相关标签:
1条回答
  • 2021-01-19 16:41

    If the library simply needs to be on the path for your application to pick it up, then just add it as an item in the project you're deploying, and it will get uploaded up to Azure, and deployed alongside your application.

    If some commands are required to install it, you can use startup tasks.

    As for the video stream, you can open a socket (using a TCP endpoint) and stream the video up to an azure instance that way. That's probably the most efficient way of doing it if you want real time video processing. If you want to record the video and upload it, look at using blob storage. You can then use a message queue to signal to the worker, that there is a video waiting to be processed.

    0 讨论(0)
提交回复
热议问题