Ask Your Question
1

Google Native Client Port Feasible?

asked 2013-02-07 18:22:15 -0600

updated 2013-02-07 18:24:59 -0600

I was wondering if a port of OpenCV to Google Native Client would be feasible? Additionally if it were would I have to go through JavaScript/HTML5 to gain the ability to use a webcam, or does OpenCV implement its own code to access webcams?

P.s I just want to track fingers a heads, is OpenCV overkill?

edit retag flag offensive close merge delete

2 answers

Sort by ยป oldest newest most voted
1

answered 2013-02-08 01:41:44 -0600

OpenCV uses platform specific API for camera access. So you need to implement specific VideoCapture back end for it.

edit flag offensive delete link more

Comments

How much of an overhaul would you say that is for some who has no experience with the library? And do you think it would be easier to implement the algorithms I described myself, rather than port the library?

The Floating Brain gravatar imageThe Floating Brain ( 2013-02-08 06:31:51 -0600 )edit
1

answered 2013-02-08 07:01:13 -0600

updated 2013-02-08 10:48:16 -0600

You can build and use OpenCV without highgui module. It simplifies you task and allows you to use algorithms from OpenCV.

Update: to disable Highgui module add -DBUILD_opencv_highgui=OFF to cmake command line. You can disable any module using this approach.

edit flag offensive delete link more

Comments

Thank you!! :-D

The Floating Brain gravatar imageThe Floating Brain ( 2013-02-08 07:28:45 -0600 )edit

Question Tools

Stats

Asked: 2013-02-07 18:22:15 -0600

Seen: 283 times

Last updated: Feb 08 '13