Class VideoMode

java.lang.Object
edu.wpi.first.cscore.VideoMode

public class VideoMode extends Object
Video mode.
  • Field Details

    • pixelFormat

      Pixel format.
    • width

      public int width
      Width in pixels.
    • height

      public int height
      Height in pixels.
    • fps

      public int fps
      Frames per second.
  • Constructor Details

    • VideoMode

      public VideoMode(int pixelFormat, int width, int height, int fps)
      Create a new video mode.
      Parameters:
      pixelFormat - The pixel format enum as an integer.
      width - The image width in pixels.
      height - The image height in pixels.
      fps - The camera's frames per second.
    • VideoMode

      public VideoMode(PixelFormat pixelFormat, int width, int height, int fps)
      Create a new video mode.
      Parameters:
      pixelFormat - The pixel format.
      width - The image width in pixels.
      height - The image height in pixels.
      fps - The camera's frames per second.
  • Method Details