Object detection systems use sequential feature pyramids: extract features at multiple scales through deep convolutional networks, then classify regions via learned anchor boxes. Patented: backbone architectures, feature pyramid networks, non-maximum suppression variants, anchor-free detection heads. CRT approach: every pixel value in Z/214,414,200 decomposes into 7 independent scale channels via CRT. mod 8 = coarse structure. mod 9 = medium form. mod 25 = fine edges. mod 49 = sub-pixel detail. mod 11 = integrity check. mod 13 = edge sharpness. mod 17 = contrast level. Per-channel edge detection = 7-level feature pyramid for FREE. GCD classification = O(1) object categorization. No CNN. No training. The ring IS the feature extractor.
Scene seed:
128x96 pixel detection. Left: GCD class map. Right: multi-channel edge detection (mod-11 sentinel at 3x weight). Side-by-side: content vs structure. Rendered in one cvs_blit call.
Scene seed:
Synthetic 16x12 image with 3 embedded objects (mod-8-dominant, mod-9-dominant, mod-25-dominant). CRT feature pyramid decomposes into 7 scale channels. Per-channel edge detection. GCD classification colors each pixel by gcd structure.
10 synthetic scenes. Per-channel edge counts. GCD class diversity per scene. CRT provides 7 independent edge maps without any convolution or learned parameters.
Source code · Public domain (CC0)
.ax source compiled to WASM via self-hosting compiler. Zero HTML authored.