├── .classpath ├── .gitignore ├── .project ├── README.md ├── results ├── background-removal.png ├── foreground-removal.png └── original.png └── src └── it └── polito └── elite └── teaching └── cv ├── ImageSeg.fxml ├── ImageSegController.java ├── ImageSegmentation.java ├── application.css └── utils └── Utils.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /results/background-removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/results/background-removal.png -------------------------------------------------------------------------------- /results/foreground-removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/results/foreground-removal.png -------------------------------------------------------------------------------- /results/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/results/original.png -------------------------------------------------------------------------------- /src/it/polito/elite/teaching/cv/ImageSeg.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/src/it/polito/elite/teaching/cv/ImageSeg.fxml -------------------------------------------------------------------------------- /src/it/polito/elite/teaching/cv/ImageSegController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/src/it/polito/elite/teaching/cv/ImageSegController.java -------------------------------------------------------------------------------- /src/it/polito/elite/teaching/cv/ImageSegmentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/src/it/polito/elite/teaching/cv/ImageSegmentation.java -------------------------------------------------------------------------------- /src/it/polito/elite/teaching/cv/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/src/it/polito/elite/teaching/cv/application.css -------------------------------------------------------------------------------- /src/it/polito/elite/teaching/cv/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencv-java/image-segmentation/HEAD/src/it/polito/elite/teaching/cv/utils/Utils.java --------------------------------------------------------------------------------