Fork me on GitHub
#data-science
<
2021-03-17
>
xceno10:03:13

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

val_waeselynck22:03:09

No lib that I know of. That said, if CCL is what I think, implementing it is "just" a kind of depth-first walk.

xceno21:03:51

Yep that's essentially what I did now. I spent more time searching the web than implementing it myself, oh well 🙃