Posts

Showing posts from 2014

Accessing Webcam through Java - COMPUTER VISION

Hello All, This post is all about how to access Webcam through java .Accessing Webcam is a part of COMPUTER VISION where coder access webcam and use it to capture Real World frame by frame and use the real world information for further processing . Here we will be using a very basic library freely available to use , that is LTI CIVIL .Lets start with code as Said coding wins over all arguments.The whole java code goes here. First of all , integrate lti civil libraries to your code (like using ADD JAR facility in NETBEANS). The library files can be downloaded from here http://sourceforge.net/projects/lti-civil/ Next the files to be imported : package viano; // any package name you want  import com.lti.civil.CaptureDeviceInfo; import com.lti.civil.CaptureException; import com.lti.civil.CaptureObserver; import com.lti.civil.CaptureStream; import com.lti.civil.CaptureSystem; import com.lti.civil.CaptureSystemFactory; import com.lti.civil.DefaultCaptureSystemFactorySing