William Silversmith

Results 498 comments of William Silversmith

@ed-alertedh That didn't work for me unfortunately. It still produces WASM.

I will admit I'm pushing CSS to the limits here, but I'm attempting to make it easier for designers to use e.g. spring animations in CSS using keyframe animations. I've...

It's also worth noting that Wu's algorithm is good enough that we are in a regime where the best known algorithm probably won't gain us more than 2x performance, while...

The block based approach is undermined by multi-label. It depends on being able to summarize entire regions using the knowledge that all foreground pixels will match.

It might still be fun to implement block-based for binary images, which are an important class of operation.

OpenCV implements Grana et al's Optimized Block Based Decision Tree for binary images (apparently by that team themselves) and I tested it out on a medical YACCLAB dataset. Their algorithm...

Was able to provide a better algorithm for 6-connected which makes me happy. I think the real secret of BBDT is the ability to make 1/4 fewer writes in the...

BBDT and approaches derived from it are not useful for multilabel, however I suspect that the pixel prediction approach is readily compatible. Create a forest of trees for each situation...

It would be cool if I integrated some of the crazy binary algorithms from YACCLAB. That group is on a tear.

The rendering phase is trivial to parallelize. There are a few ways to go about the labeling phase. - Process blocks independently with independent disjoint sets, compute the equivalencies along...