data-science

Data science, data analysis, and machine learning in Clojure https://scicloj.github.io/pages/chat_streams/ for additional discussions
xceno 2021-03-17T10:39:13.003100Z

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

xceno 2021-03-18T21:00:51.004100Z

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

val_waeselynck 2021-03-17T22:43:09.003900Z

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