Is anyone aware of an implementation for CCL (Connected Component Labeling) in clojure? Or at least a java lib? I'm not sure if I'm just searching the wrong thing or if it's really that hard to find. I want to enumerate all clusters/components from a dtype-next tensor
Yep that's essentially what I did now. I spent more time searching the web than implementing it myself, oh well 🙃
No lib that I know of. That said, if CCL is what I think, implementing it is "just" a kind of depth-first walk.