Results 10 comments of Matthew Earl

This occurs with the `exthull` and `iterhull` solvers, but not `fm`.

I've changed gen.py to output detection images and reading images. The detection images have an expected output of `x,y,s` where `x,y` is the location of the centre of the plate,...

Thanks, I should have checked the Quakespasm repo too. I confirmed that https://github.com/sezero/quakespasm/pull/75 stops my repro from working on QS.

After porting your fix to ironwail, there's still a similar bug that occurs where two links without an intervening unlink occur. This time the entity is cleared in ED_Alloc: ```...

I think the problem is to do with how ironwail handles freeing objects. It appears that in normal operation `num_edicts` doesn't ever decrease. Calling `ED_Free` just adds the slot onto...

The stack trace from before wasn't a crash, it's just the stack trace at the point where the prev/next pointers are cleared for the entity that gets linked twice without...

I can confirm that I can't reproduce the issue with https://github.com/sezero/quakespasm/commit/bd331e2192d27b803993150efeaf05d26051113c (ie. current quakespasm master)

Yes, I'm pretty sure it is ironwail specific. I naively ported the fix without realizing that `num_edicts` shouldn't be decreased, but I think that's fine to do in Quakespasm.

Great work on the bank card decoder! I'm not fully read up on CTC however I agree it looks like it a more elegant solution that the multi-network solution I...

This issue is that your input images are of varying size. The code was originally written for processing video input (ie. where all the frames are the same size) however...