Software Elaborazione Immagini
- Recogniform Image Processor
- Recogniform Zonal Thresholder
- Recogniform Paper Capture
- Recogniform PerfectScan®
- Driver TWAIN per Olivetti PR2 Scanner





// Apply DESKEW on the image
// Range: -5/+5°
// Resolution: 0,1°
// Step: Automatic
// Background: Black
// Interpolation: No;
SkewAngle:=ImgDeskew( _CurrentImage, 5, 0.1, 0, True, False );
// Apply BLACK BORDER REMOVAL on the image
// Min black %: 99
// Max holes: 1
// Borders: Clean
// Clean residues: Yes
Left:=ImgFindBlackBorderLeft( _CurrentImage, 99.0, 1 );
Top:=ImgFindBlackBorderTop( _CurrentImage, 99.0, 1 );
Right:=ImgFindBlackBorderRight( _CurrentImage, 99.0, 1 );
Bottom:=ImgFindBlackBorderBottom( _CurrentImage, 99.0, 1 );
ImgCleanBorder( _CurrentImage, Left, Top, Right, Bottom );
// Apply DYNAMIC THRESHOLDING on the image
// Mode: MinMax
// Local Contrast: 16
// Area Size: 7 x 7
ImgDynamicThreshold( _CurrentImage, 0, 16, 7, 7 );
Batch processing
