├── Images ├── binance.jpg ├── Example_Image.png └── Example_Image_different_cute_kittens.png ├── JavaFX-OpenCV ├── bin │ └── application │ │ ├── application.css │ │ ├── Main$1.class │ │ ├── Main.class │ │ ├── FXController.class │ │ ├── FXController$1.class │ │ └── FirstJFX.fxml ├── src │ └── application │ │ ├── application.css │ │ ├── FirstJFX.fxml │ │ ├── Main.java │ │ └── FXController.java ├── build.fxbuild ├── .classpath ├── .project └── lbpcascade_frontalface.xml ├── .gitattributes ├── LICENSE └── README.md /Images/binance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/Images/binance.jpg -------------------------------------------------------------------------------- /Images/Example_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/Images/Example_Image.png -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/application.css: -------------------------------------------------------------------------------- 1 | /* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */ -------------------------------------------------------------------------------- /JavaFX-OpenCV/src/application/application.css: -------------------------------------------------------------------------------- 1 | /* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */ -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/JavaFX-OpenCV/bin/application/Main$1.class -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/JavaFX-OpenCV/bin/application/Main.class -------------------------------------------------------------------------------- /Images/Example_Image_different_cute_kittens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/Images/Example_Image_different_cute_kittens.png -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/FXController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/JavaFX-OpenCV/bin/application/FXController.class -------------------------------------------------------------------------------- /JavaFX-OpenCV/bin/application/FXController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/Cat-Face-Detector-with-OpenCV-and-JavaFX/HEAD/JavaFX-OpenCV/bin/application/FXController$1.class -------------------------------------------------------------------------------- /JavaFX-OpenCV/build.fxbuild: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /JavaFX-OpenCV/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Alpay Yildirim 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /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 |