I use these algorithms in python for finding connected components from edges. components = [] def connected_components(pairs): for a, b in pairs:
I want to make a realtime application, which involves finding the edges of a binary mask. I need something fast, without GPU if possible, that runs hopefully be