寻找软件:用其他信息构建电视节目

发布于 2024-09-24 01:32:46 字数 1539 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彩虹直至黑白 2024-10-01 01:32:46

这可以在 processing 中非常容易地实现,

这里是一个示例程序,集成了实时视频流、信息图和
一些文本

import processing.video.*;

Capture video;
PImage cat;

void setup() {
  size(400,400);
  video = new Capture(this, 160, 120);
  textFont( createFont("helvetica", 15 ));
  cat = loadImage( "Buttered_cat.png");
}

void draw() {   
    if (video.available()) {
      background(0);
      video.read();
      text( "live videofeed", 20, 10 );
      image( video, 20, 20 );
      text( "Infographics", 270, 10 ); 
      image( cat, 270, 20 );
      text("long text with serious informations ...", 10, 200);
    }
}

来生成一个与此类似的窗口
替代文字

This could be implemented very easy in processing

here is an example programm that integrates a live videostream, an infographic and
some text

import processing.video.*;

Capture video;
PImage cat;

void setup() {
  size(400,400);
  video = new Capture(this, 160, 120);
  textFont( createFont("helvetica", 15 ));
  cat = loadImage( "Buttered_cat.png");
}

void draw() {   
    if (video.available()) {
      background(0);
      video.read();
      text( "live videofeed", 20, 10 );
      image( video, 20, 20 );
      text( "Infographics", 270, 10 ); 
      image( cat, 270, 20 );
      text("long text with serious informations ...", 10, 200);
    }
}

to generate an window that looks similar to this one
alt text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文