Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.Net (dotNet) wrappers for OpenCV? [closed]

I've seen there are a few of them. opencvdotnet, SharperCV, EmguCV, One on Code Project.

Does anyone have any experience with any of these? I played around with the one on Code Project for a bit, but as soon as I tried to do anything complicated I got some nasty uncatchable exceptions (i.e. Msgbox exceptions). Cross platform (supports Mono) would be best.

like image 591
Kris Erickson Avatar asked Sep 17 '08 17:09

Kris Erickson


Video Answer


2 Answers

I started out with opencvdotnet but it's not really actively developed any more. Further, support for the feature I needed (facedetection) was patchy. I'm using EmguCV now: It wraps a much greater part of the API and the guy behind it is very responsive to suggestions and requests. The code is a joy to look at and is known to work on Mono.

I've wrote up a quick getting-started guide on my blog.

like image 199
friism Avatar answered Sep 29 '22 16:09

friism


We use OpenCVSharp the google code website is in Japanese but it uses the latest OpenCV builds and impliments IDisposable throughout. It seems to provide more functioanlity than any of the others we have seen to date and is still active. It has quite extensive example programs as well.

like image 36
tidyup Avatar answered Sep 29 '22 17:09

tidyup