accurate constant
TextifyConfig
const accurate
Accurate configuration optimized for precision.
Uses larger dilation, enables dictionary correction, and higher matching threshold for better accuracy at the cost of speed.
Implementation
static const TextifyConfig accurate = TextifyConfig(
dilationSize: 30,
excludeLongLines: true,
attemptCharacterSplitting: true,
applyDictionaryCorrection: true,
matchingThreshold: 0.6,
);