Package com.smaxe.uv.media.core

Examples of com.smaxe.uv.media.core.VideoFrame


        new Thread(new Runnable() {
          public void run() {
            try {
              webcam.open(new IWebcam.FrameFormat(320, 240),
                  new IWebcam.IListener() {
                    private VideoFrame lastFrame = new VideoFrame(
                        0, 0, null);

                    public void onVideoFrame(
                        final VideoFrame frame) {
                      SwingUtilities
View Full Code Here


    log.log(Level.INFO, "RemoteCamera launched...");
    try {
      // Set resolution low to improve performance on lower spec systems
      webcam.open(new IWebcam.FrameFormat(Configuration.VIDEO_WIDTH, Configuration.VIDEO_HEIGHT),
        new IWebcam.IListener() {
          private VideoFrame lastFrame = new VideoFrame(
              0, 0, null);

          public void onVideoFrame(
              final VideoFrame frame) {
            SwingUtilities.invokeLater(new Runnable() {
View Full Code Here

TOP

Related Classes of com.smaxe.uv.media.core.VideoFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.