I'd like to know whether there are any image processing libraries available for Windows Phone 7 apps.
E开发者_高级运维mguCV (.net wrapper for OpenCV) has all the features I want but I'm unable to use it on Windows Phone development as it encounters a runtime conflict. Is there any way I can convert this to a Silverlight/Windows Phone runtime?
Thanks.
You can't execute unmanaged code in a 3rd party app. Emgucv is just a wrapper and uses the unmanaged OpenCV. There's no real managed port out there. You'll have to port it yourself from the C codebase.
精彩评论