Java webcam server and client

asked 2014-10-07 03:30:52 -0600

I want to capture a webcam on a client and send it to a server where I show the video. What would be the best way to do this using opencv and java?

edit retag flag offensive close merge delete

Comments

1

Best would be to ignore OpenCV at all ... and this for the following reasons

 1. OpenCV doesn't have good working streaming functionality
 2. Even if you get it to work for C++ interface; the java interface doesn't wrap everything yet
 3. You are doing no image processing what so ever

So just look for a dedicated java based client server setup!

StevenPuttemans gravatar imageStevenPuttemans ( 2014-10-07 06:12:32 -0600 )edit