nx_facefind.nx
buildroot/runtime/nx_facefind.nx
about
nx_facefind.nx -- CLI over nx_facefind_lib (aesthetictwin AT30, 2026-09-16): the face box and both eye boxes of a
mirrored photograph, from the sovereign cascade evaluator over the loaded (beta-only, licensed) cascade data.
nx_facefind <jpeg> [min_face_permil] -> FACEFIND ... verdict=FOUND | NOFACE | NOEYES
exit: 0 found | 2 usage | 3 unreadable | 4 decode failed | 5 cascade refused | 6 no face | 7 no eyes
Sides follow the image: R is the eye on the image left (the subject's right in an unmirrored still).
license_tier: ORIGINAL No hw writes (Rule 26).
dependencies 3 imports · 0 importers
imports: nx_syscalls.nxnx_jpeg_ascii.nxnx_facefind_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| 11 | const FC_EXIT_USAGE: i64 = 2 |
| 12 | const FC_EXIT_READ: i64 = 3 |
| 13 | const FC_EXIT_DECODE: i64 = 4 |
| 14 | const FC_EXIT_CASCADE: i64 = 5 |
| 15 | const FC_EXIT_NOFACE: i64 = 6 |
| 16 | const FC_EXIT_NOEYES: i64 = 7 |
| 17 | const FC_ARGC_MIN: i64 = 2 |
| 18 | const FC_ARGC_PERMIL: i64 = 3 |
| 19 | const FC_I64: i64 = 8 |
| 20 | const FC_D0: i64 = 48 |
| 21 | const FC_D9: i64 = 57 |
| 22 | const FC_TEN: i64 = 10 |
functions
| 24 | func fc_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 25 | func fc_putn(v: i64) -> i64 |
| 41 | func fc_kv(k: *u8, v: i64) -> i64 { fc_puts(k); fc_putn(v); return 0 } |
| 42 | func fc_atoi(s: *u8) -> i64 called by 1: main |
| 52 | func main(argc: i64, argv: **u8) -> i64 |