InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CO Computer Vision @lemm.ee thickertoofan @lemm.ee 5mo ago How do I segment this QR code from the white background using CV imgur.com /a/BchnHse Some custom filter kernel to average out values from a chunk of pixels with some kind of "border aware" behaviour? 1 crossposts Python @programming.dev thickertoofan @lemm.ee 5mo ago How do I segment this QR code from the white background using opencv imgur.com /a/BchnHse
Some custom filter kernel to average out values from a chunk of pixels with some kind of "border aware" behaviour?
That's what those 3 corners are for.After a convolution with such a square as template, there are 3 local maxima, of known relative distances to each other, that give the bounding box.
Is that scale invariant? Or would they need to do it multiple times at different scales if they can't rely on a consistent scale?
That's what those 3 corners are for.
After a convolution with such a square as template, there are 3 local maxima, of known relative distances to each other, that give the bounding box.
Is that scale invariant? Or would they need to do it multiple times at different scales if they can't rely on a consistent scale?
The latter: it's not scale invariant