Created
July 6, 2016 09:42
-
-
Save collinalexbell/f97ffbbb9fe30acd4b0f09f52d6b01b7 to your computer and use it in GitHub Desktop.
This file contains 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
(defn bilateral-filter | |
([src dest diameter sigma-color sigma-space] | |
(Imgproc/bilateralFilter src dest | |
(read-string diameter) | |
(read-string sigma-color) | |
(read-string sigma-space))) | |
([src dest diameter sigma-color sigma-space border-type] | |
(Imgproc/bilateralFilter src dest | |
(read-string diameter) | |
(read-string sigma-color) | |
(read-string sigma-space) | |
(read-string border-type)))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment