Click here to Skip to main content
15,889,838 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do I link ipcameras in JFrame canvas using java
I am using NetBeans 7.0.1

Thank you.
Posted

The link below might help

http://webcam-capture.sarxos.pl/[^]
 
Share this answer
 
1. get frames from camera
2. draw frames one by one

For example:
BufferedImage image = ImageIO.read( new ByteArrayInputStream(camera_frame)); // the camera_frame comes from network InputStream
public void paint(Graphics g) {
   g.drawImage(image , 0, 0, null);
}


You can also read the article Making Android Smart Phone a Remote IP Camera[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900