I am attempting to compile a program in java on my Raspberry Pi, but I cannot seam to get the javac (or java) program to link an external library specifically the v4l4j library. I can compile and execute a simple java program, no problem, but now I am trying to link the .jar file in the /lib folder of the v4l4j download.
I am using make to compile and run my code and this is what my Makefile looks like...
all:
/home/pi/java/jdk1.7.0_06/bin/javac -classpath /home/pi/java/v4l4j-0.9.0/lib/junit-4.1.jar SimpleViewer.java
/home/pi/java/jdk1.7.0_06/bin/java SimpleViewer
which is basically two lines, one that compiles and then one that executes. Note, I did not change my class path, that is why the first part of each line links to the direct location of my java compiler.
When I run make in the command line, I get the error that says
SimpleViewer.java:10: error: package au.edu/jcu/v4l4j does not exist import au.edu/jcu.v4l4j.FrameGrabber;
I actually get a ton of errors like that. Any ideas? Thank you.
Here is the SimpleViewer class
package v4l4jTest;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
import au.edu.jcu.v4l4j.FrameGrabber;
import au.edu.jcu.v4l4j.CaptureCallback;
import au.edu.jcu.v4l4j.V4L4JConstants;
import au.edu.jcu.v4l4j.VideoDevice;
import au.edu.jcu.v4l4j.VideoFrame;
import au.edu.jcu.v4l4j.exceptions.StateException;
import au.edu.jcu.v4l4j.exceptions.V4L4JException;
/**
* This class demonstrates how to perform a simple push-mode capture.
* It starts the capture and display the video stream in a JLabel
* @author gilles
*
*/
public class SimpleViewer extends WindowAdapter implements CaptureCallback{
private static int width = 640, height = 480, std = V4L4JConstants.STANDARD_WEBCAM, channel = 0;
private static String device = "/dev/video0";
private VideoDevice videoDevice;
private FrameGrabber frameGrabber;
private JLabel label;
private JFrame frame;
public static void main(String args[]){
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new SimpleViewer();
}
});
}
/**
* Builds a WebcamViewer object
* @throws V4L4JException if any parameter if invalid
*/
public SimpleViewer(){
// Initialise video device and frame grabber
try {
initFrameGrabber();
} catch (V4L4JException e1) {
System.err.println("Error setting up capture");
e1.printStackTrace();
// cleanup and exit
cleanupCapture();
return;
}
// create and initialise UI
initGUI();
// start capture
try {
frameGrabber.startCapture();
} catch (V4L4JException e){
System.err.println("Error starting the capture");
e.printStackTrace();
}
}
/**
* Initialises the FrameGrabber object
* @throws V4L4JException if any parameter if invalid
*/
private void initFrameGrabber() throws V4L4JException{
videoDevice = new VideoDevice(device);
frameGrabber = videoDevice.getJPEGFrameGrabber(width, height, channel, std, 80);
frameGrabber.setCaptureCallback(this);
width = frameGrabber.getWidth();
height = frameGrabber.getHeight();
System.out.println("Starting capture at "+width+"x"+height);
}
/**
* Creates the UI components and initialises them
*/
private void initGUI(){
frame = new JFrame();
label = new JLabel();
frame.getContentPane().add(label);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.addWindowListener(this);
frame.setVisible(true);
frame.setSize(width, height);
}
/**
* this method stops the capture and releases the frame grabber and video device
*/
private void cleanupCapture() {
try {
frameGrabber.stopCapture();
} catch (StateException ex) {
// the frame grabber may be already stopped, so we just ignore
// any exception and simply continue.
}
// release the frame grabber and video device
videoDevice.releaseFrameGrabber();
videoDevice.release();
}
/**
* Catch window closing event so we can free up resources before exiting
* @param e
*/
public void windowClosing(WindowEvent e) {
cleanupCapture();
// close window
frame.dispose();
}
@Override
public void exceptionReceived(V4L4JException e) {
// This method is called by v4l4j if an exception
// occurs while waiting for a new frame to be ready.
// The exception is available through e.getCause()
e.printStackTrace();
}
@Override
public void nextFrame(VideoFrame frame) {
// This method is called when a new frame is ready.
// Don't forget to recycle it when done dealing with the frame.
// draw the new frame onto the JLabel
label.getGraphics().drawImage(frame.getBufferedImage(), 0, 0, width, height, null);
// recycle the frame
frame.recycle();
}
}
Your class path only have
you have to add other dependency jar files to you class path.