Function for re-generating prog/recog/digits/bootnum4.pa from an
encoded, gzipped and serialized string.
Call this way:
PIXA *pixa = l_bootnum_gen4(nsamp);
where nsamp is the number of digit templates requested for each
of the 10 digits. nsamp can be anything from 1 to 100.
This file was generated using the stringcode utility, in recog_bootnum3.c,
slightly edited, and then merged into a single file. That program
generated a pixa of 100 mosaic'd samples of each digit,
which was copied to recog/digits/bootnum4.pa.
L_STRCODE *strc;
strc = strcodeCreate(212); // arbitrary integer
strcodeGenerate(strc, "recog/digits/bootnum4.pa", "PIXA");
strcodeFinalize(&strc, ".");
The two output files, autogen.212.c and autogen.212.h, were
then slightly edited and merged into this file, and the code
to generate the pixa of sample templates was added.
Definition in file bootnumgen4.c.