Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Webcam-programming in Java

Status
Not open for further replies.

Lars

Programmer
Aug 10, 2000
16
DE
I want to write an application that is able to read picture-streams and snapshots from a webcam, display the picture in a window and do all sorts of image-processing like edge-detection and hough-transformation. Is there
an API that can solve this task ?
Thanks in advance!

[sig][/sig]
 
If you can get the webcam to dump to a specific .jpg or something on the webserver than you can use the existing Image class to show the image in the applet. The only problem with this is it will take up a great deal of bandwith and will hardly be streaming video.

I think it would be better if you incorporated the video streaming out of some tcp/ip port. Then used a java applet to use the java.net.* package to talk to the streaming video. You then could display those bits as images inside the applet

good luck

[sig]<p>ackka<br><a href=mailto:tmoses@iname.com>tmoses@iname.com</a><br><a href= my site</a><br>"Do No Harm, Leave No Tracks"<br>
ICMP Summer 2000, 2600 Article<br>
<br>
[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top