Skip to content

Releases: rladstaetter/javacv-webcam

javacv-webcam:2020.3.1 GraalVM compilation

17 Oct 20:14
Compare
Choose a tag to compare

This version is about GraalVM compiliation. With the help of client-maven-plugin, it is possible to simply get a native binary which uses JavaCV and JavaFX to display a webcam image stream.

Ideally, it works out of the box by entering:

 mvn clean client:build client:run -Djavacpp.platform.custom -Djavacpp.platform.host -Dgraalvm.home=/path/to/your/graalvm/distribution

javacv-webcam 2020.3.0: 100% Java implementation

12 Oct 20:45
Compare
Choose a tag to compare

This release strives to simplify the whole project and ports relevant code to Java.

Furthermore it minimises the code to just show how to use JavaCV with JavaFX and the new Pixelbuffer API.

Swing code and other comparision code is removed.

Project is configured to use javafx-maven-plugin and can be easily started via

mvn javafx:run 

and compiled to a jre image with

mvn javafx:jlink.

Finally executed via

./target/javacv-webcam/bin/jwebcam

Release 2020.2.1

11 May 19:44
Compare
Choose a tag to compare

Release which shows three approaches to get an image stream to your monitor with JavaCV.

It uses a recently added API in JavaFX to get a quite good performance compared to the Swing and classic JavaFX version.

Initial version

29 Apr 19:55
Compare
Choose a tag to compare

Contains a port of https://github.com/bytedeco/javacv/ main page java example to Scala.