Convert EmguCV / OpenCV to Windows Phone Runtime

I would like to know if image processing libraries are available for Windows Phone 7 applications.

EmguCV (the .net wrapper for OpenCV) has all the features I want, but I cannot use it when developing Windows Phone, as it encounters a run-time conflict. Is there a way to convert this to a Silverlight / Windows Phone runtime?

Thank.

+3
source share
1 answer

You cannot execute unmanaged code in a third-party application. Emgucv is just a shell and uses unmanaged OpenCV. There is no real managed port. You will have to migrate it from C code.

+3
source

Source: https://habr.com/ru/post/1791816/


All Articles