Skip to content

Commit

Permalink
Fix window name in JavaCV driver example
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Jan 12, 2015
1 parent 6c47868 commit 612a47c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class JavaCvDriverExample {
}

public static void main(String[] args) {
JFrame frame = new JFrame("LTI-CIVIL Webcam Capture Driver Example");
JFrame frame = new JFrame("JavaCV Webcam Capture Driver Example");
frame.add(new WebcamPanel(Webcam.getDefault()));
frame.pack();
frame.setVisible(true);
Expand Down

0 comments on commit 612a47c

Please sign in to comment.