blurry
blurry copied to clipboard
Is it convenient to share a source code of the canny dynamic library?
Is it convenient to share a source code of the canny dynamic library?
I'm sorry, what do you mean? If you have the canny library, you can easily use the process by passing "blurry" as an RGBA interleave.
For example, the code could look like this.
img := LoadImage(...)
cannyData := YourCannyLibrary(img)
rgba := convertRGBA(cannyData)
newRGBA, err := blurry.Dilation(rgba, 8)
if err != nil {
...
}
func convertRGBA(img image.Image) *image.RGBA {
...
}