This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import scala.collection.JavaConversions.asScalaBuffer | |
| import scala.collection.JavaConversions.seqAsJavaList | |
| import scala.util.Random | |
| import javafx.animation.Animation | |
| import javafx.animation.KeyFrame | |
| import javafx.animation.Timeline | |
| import javafx.application.Application | |
| import javafx.collections.ObservableList |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import scala.collection.JavaConversions.seqAsJavaList | |
| import scala.util.Random.nextInt | |
| import javafx.application.Application | |
| import javafx.geometry.Point3D | |
| import javafx.scene.Group | |
| import javafx.scene.PerspectiveCamera | |
| import javafx.scene.PointLight |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import java.io.File | |
| import org.opencv.core.Core | |
| import org.opencv.core.MatOfRect | |
| import org.opencv.core.Point | |
| import org.opencv.core.Scalar | |
| import org.opencv.highgui.Highgui | |
| import org.opencv.objdetect.CascadeClassifier |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps.isight | |
| import java.io.InputStream | |
| import javafx.application.Application | |
| import javafx.scene.Group | |
| import javafx.scene.Scene | |
| import javafx.scene.image.Image | |
| import javafx.scene.image.ImageView | |
| import javafx.stage.Stage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps.isight | |
| import java.io.File | |
| import java.io.FileInputStream | |
| import org.opencv.core.Core | |
| import org.opencv.core.MatOfRect | |
| import org.opencv.core.Point | |
| import org.opencv.core.Scalar | |
| import org.opencv.highgui.Highgui |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps.isight | |
| import org.opencv.highgui.VideoCapture | |
| import java.io.File | |
| import org.opencv.core.Mat | |
| import org.opencv.highgui.Highgui | |
| import scala.collection.JavaConversions._ | |
| import org.opencv.core.CvType | |
| import java.util.Date | |
| import java.util.UUID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import java.io.ByteArrayInputStream | |
| import java.io.File | |
| import scala.collection.mutable.ArrayBuffer | |
| import scala.util.Failure | |
| import scala.util.Success | |
| import scala.util.Try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import javafx.scene._ | |
| import org.opencv.core._ | |
| import org.opencv.imgproc.Imgproc | |
| import javafx.application.{Platform, Application} | |
| import javafx.scene.control._ | |
| import javafx.scene.image.ImageView | |
| import javafx.scene.layout.BorderPane |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javax.script.ScriptEngineManager | |
| object NashornHelloWorld { | |
| def main(args: Array[String]): Unit = { | |
| new ScriptEngineManager().getEngineByName("nashorn").eval("print('Hello, World')") | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.ladstatt.apps | |
| import javafx.scene._ | |
| import org.opencv.core._ | |
| import org.opencv.imgproc.Imgproc | |
| import javafx.application.{Platform, Application} | |
| import javafx.scene.control._ | |
| import javafx.scene.image.ImageView | |
| import javafx.scene.layout.BorderPane |