Code25MinOccurrenceLength
Overview
If the toolkit only finds one barcode in an image and it's hit count is less than PrefOccurrence, then it is only reported if the hit count is >= MinOccurrence. With Code 25 barcodes this can sometimes yield false positive results and so a special property called Code25MinOccurrenceLength defines the smallest length for a Code 25 that will be reported if it's hit count is less than PrefOccurrence.
Default value = 5
void STSetParameter(hBarcode, ST_CODE25_MIN_OCCURRENCE_LENGTH, uint16 *value) ;
void STGetParameter(hBarcode, ST_CODE25_MIN_OCCURRENCE_LENGTH, uint16 *value) ;
e.g
#include "barcode.h"
uint16 value = 3 ;
STSetParameter(hBarcode,
ST_CODE25_MIN_OCCURRENCE_LENGTH, &value) ;