public delegate bool BarCodeReadPreprocessCallback(
RasterImage ,
LeadRect
)
'Declaration
Public Delegate Function BarCodeReadPreprocessCallback( _
ByVal As RasterImage, _
ByVal As LeadRect _
) As Boolean
'Usage
Dim instance As New BarCodeReadPreprocessCallback(AddressOf HandlerMethod)
public delegate bool BarCodeReadPreprocessCallback(
RasterImage binarizedImage,
LeadRect barcodeZone
)
typedef BOOL (^LTBarCodeReadPreprocessCallback)(LTRasterImage * __null_unspecified binarizedImage, LeadRect barcodeZone)
- (BOOL)run:(LTRasterImage *)image
progress:(nullable LTRasterCommandProgress)progressHandler
preprocess:(nullable LTBarCodeReadPreprocessCallback)preprocessCallback
error:(NSError **)error
public void removePreprocessListener()
public void setPreprocessListener(BarCodeReadPreprocessListener value)
BarCodeReadPreprocessCallback(
binarizedImage ,
barcodeZone
)
public delegate bool BarCodeReadPreprocessCallback(
RasterImage^ ,
LeadRect
)
Parameters
- binarizedImage
- A RasterImage that represents the Barcode Read Preprocessed (Binarized) image.
- barcodeZone
- A LeadRect that represents the zone in the image where barcode data has been found.
Return Value
true to continue, false to abort.