You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it uses a big recursive function which can stack overflow in certain cases. Ideally it'd be switched to a "worklist" style algorithm (the normal way to convert a recursive function into a loop) and also have some limits put in place to reject unrealistic results (such as a centroid taking up half the screen)