当前位置: 首页>>代码示例>>Java>>正文


Java WebcamPanel.setFPSLimit方法代码示例

本文整理汇总了Java中com.github.sarxos.webcam.WebcamPanel.setFPSLimit方法的典型用法代码示例。如果您正苦于以下问题:Java WebcamPanel.setFPSLimit方法的具体用法?Java WebcamPanel.setFPSLimit怎么用?Java WebcamPanel.setFPSLimit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.github.sarxos.webcam.WebcamPanel的用法示例。


在下文中一共展示了WebcamPanel.setFPSLimit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: connectCam

import com.github.sarxos.webcam.WebcamPanel; //导入方法依赖的package包/类
private void connectCam() {
    olga = Webcam.getWebcams().get(0);
    olga.setImageTransformer((BufferedImage image) -> {
        int w = image.getWidth();
        int h = image.getHeight();
        BufferedImage modified = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
        Graphics2D g2 = modified.createGraphics();
        g2.drawImage(image, w, h, -w, -h, null);
        g2.dispose();
        modified.flush();
        return modified;
    });
    WebcamPanel subOlga = new WebcamPanel(olga);
    subOlga.setFPSDisplayed(true);
    subOlga.setDisplayDebugInfo(true);
    subOlga.setFPSLimit(60);
    olgaPanel.removeAll();
    olgaPanel.add(subOlga);
    olgaPanel.revalidate();
    olgaPanel.repaint();

    alexei = Webcam.getWebcams().get(1);
    WebcamPanel subAlexei = new WebcamPanel(alexei);
    subAlexei.setFPSDisplayed(true);
    subAlexei.setDisplayDebugInfo(true);
    subAlexei.setFPSLimit(60);
    alexeiPanel.removeAll();
    alexeiPanel.add(subAlexei);
    alexeiPanel.revalidate();
    alexeiPanel.repaint();

    maria = Webcam.getWebcams().get(2);
    WebcamPanel subMaria = new WebcamPanel(maria);
    subMaria.setFPSDisplayed(true);
    subMaria.setDisplayDebugInfo(true);
    subMaria.setFPSLimit(60);
    mariaPanel.removeAll();
    mariaPanel.add(subMaria);
    mariaPanel.revalidate();
    mariaPanel.repaint();

    pack();
}
 
开发者ID:InternationalSchoolBangkok,项目名称:ROV,代码行数:44,代码来源:Display.java

示例2: connectCam

import com.github.sarxos.webcam.WebcamPanel; //导入方法依赖的package包/类
private void connectCam()
{
    olga = Webcam.getWebcams().get(0);
    olga.setImageTransformer(new WebcamImageTransformer()
    {
        @Override
        public BufferedImage transform(BufferedImage image)
        {
            int w = image.getWidth();
            int h = image.getHeight();
            BufferedImage modified = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
            Graphics2D g2 = modified.createGraphics();
            g2.drawImage(image, w, h, -w, -h, null);
            g2.dispose();
            modified.flush();
            return modified;
        }
    });
    WebcamPanel subOlga = new WebcamPanel(olga);
    subOlga.setFPSDisplayed(true);
    subOlga.setDisplayDebugInfo(true);
    subOlga.setFPSLimit(60);
    olgaPanel.removeAll();
    olgaPanel.add(subOlga);
    olgaPanel.revalidate();
    olgaPanel.repaint();

    alexei = Webcam.getWebcams().get(1);
    WebcamPanel subAlexei = new WebcamPanel(alexei);
    subAlexei.setFPSDisplayed(true);
    subAlexei.setDisplayDebugInfo(true);
    subAlexei.setFPSLimit(60);
    alexeiPanel.removeAll();
    alexeiPanel.add(subAlexei);
    alexeiPanel.revalidate();
    alexeiPanel.repaint();

    maria = Webcam.getWebcams().get(2);
    WebcamPanel subMaria = new WebcamPanel(maria);
    subMaria.setFPSDisplayed(true);
    subMaria.setDisplayDebugInfo(true);
    subMaria.setFPSLimit(60);
    mariaPanel.removeAll();
    mariaPanel.add(subMaria);
    mariaPanel.revalidate();
    mariaPanel.repaint();

    pack();
}
 
开发者ID:InternationalSchoolBangkok,项目名称:ROV,代码行数:50,代码来源:Display.java


注:本文中的com.github.sarxos.webcam.WebcamPanel.setFPSLimit方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。