Live quiet touch - JavaCV implement the remote machine screen TV camera

table of Contents

  • Foreword
  • Jar package dependency and need
  • Module needs to be implemented (with source code tutorial)
  • Project results show

Foreword

Recently I wanted to use Java to achieve a similar function remote live
Like this :( functional diagram)Here Insert Picture Description

Jar package dependency and need

Maven relies:

    <dependency>
        <groupId>org.bytedeco</groupId>
        <artifactId>javacv-platform</artifactId>
        <version>1.4.1</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.bytedeco.javacpp-presets/opencv-platform -->
    <dependency>
        <groupId>org.bytedeco.javacpp-presets</groupId>
        <artifactId>opencv-platform</artifactId>
        <version>3.4.1-1.4.1</version>
    </dependency>

Module needs to be implemented (with source code tutorial):

Flowmakers - video capture, bypass plug flow
broadcast flow - broadcast stream, a presentation
server - set up

Project results show:

Camera notebook:
Here Insert Picture Description
Live Show + mobile terminal screen:
Here Insert Picture Description
other notebooks get live picture:
Here Insert Picture Description

Guess you like

Origin www.cnblogs.com/scywkl/p/12101437.html