Skip to content

Instantly share code, notes, and snippets.

@collinalexbell
Created July 6, 2016 09:42
Show Gist options
  • Save collinalexbell/f97ffbbb9fe30acd4b0f09f52d6b01b7 to your computer and use it in GitHub Desktop.
Save collinalexbell/f97ffbbb9fe30acd4b0f09f52d6b01b7 to your computer and use it in GitHub Desktop.
(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