├── .gitattributes ├── Images ├── Example_Image.png ├── Example_Image_different_cute_kittens.png └── binance.jpg ├── JavaFX-OpenCV ├── .classpath ├── .project ├── bin │ └── application │ │ ├── FXController$1.class │ │ ├── FXController.class │ │ ├── FirstJFX.fxml │ │ ├── Main$1.class │ │ ├── Main.class │ │ └── application.css ├── build.fxbuild ├── lbpcascade_frontalface.xml └── src │ └── application │ ├── FXController.java │ ├── FirstJFX.fxml │ ├── Main.java │ └── application.css ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /Images/Example_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/e0672163b85e196c2350137ab994a46178312e09/Images/Example_Image.png -------------------------------------------------------------------------------- /Images/Example_Image_different_cute_kittens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/e0672163b85e196c2350137ab994a46178312e09/Images/Example_Image_different_cute_kittens.png -------------------------------------------------------------------------------- /Images/binance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/e0672163b85e196c2350137ab994a46178312e09/Images/binance.jpg -------------------------------------------------------------------------------- /JavaFX-OpenCV/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /JavaFX-OpenCV/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | JavaFX-OpenCV 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.xtext.ui.shared.xtextBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.xtext.ui.shared.xtextNature 21 | org.eclipse.jdt.core.javanature 22 | 23 | 24 | -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/FXController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/e0672163b85e196c2350137ab994a46178312e09/JavaFX-OpenCV/bin/application/FXController$1.class -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/FXController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/e0672163b85e196c2350137ab994a46178312e09/JavaFX-OpenCV/bin/application/FXController.class -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/FirstJFX.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |