MinSeparation
Overview
MinSeparation defines the minimum distance between barcodes of identical value and vertical alignment in pixels. If the distance between two barcodes of same value and on the same alignment is less than MinSeparation then the toolkit assumes that it is a single barcode that has been split into 2 parts by a problem in the scanning process.
Default value = 180
void STSetParameter(hBarcode, ST_MIN_SEPARATION, uint16 *value) ;
void STGetParameter(hBarcode, ST_MIN_SEPARATION, uint16 *value) ;
e.g
// Set MinSeparation to a value of 100
#include "barcode.h"
uint16 value = 100 ;
STSetParameter(hBarcode, ST_MIN_SEPARATION, &value) ;