Back to FabImage Library website
You are here: Start » Function Reference » Computer Vision » Barcodes » DetectMultipleBarcodes_Deprecated

DetectMultipleBarcodes_Deprecated
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Barcodes |
Determines the positions of multiple barcodes on the input image.
Applications: Detection of barcodes, but without actual recognition. Usually followed by a RecognizeBarcode filter.
Syntax
void fil::DetectMultipleBarcodes_Deprecated ( const fil::Image& inImage, ftl::Optional<fil::BarcodeFormat::Type> inFormat, float inMinGradientLength, int inBaseBarWidth, int inScanCount, const int inScanWidth, const float inMinStrength, const float inSmoothingStdDev, fil::Polarity::Type inPolarity, ftl::Array<fil::Rectangle2D>& outBarcodePositions, ftl::Optional<ftl::Array<fil::Polarity::Type>&> outBarcodePolarities = ftl::NIL, ftl::Optional<ftl::Array<fil::Rectangle2D>&> outBarcodeCandidates = ftl::NIL, fil::Image& diagGradientImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inImage | const Image& | Input image | ||
![]() |
inFormat | Optional<BarcodeFormat::Type> | EAN13 | Format of the barcode | |
![]() |
inMinGradientLength | float | 0.0 - ![]() |
8.0f | Minimal gradient length of edge pixels used for detecting barcodes |
![]() |
inBaseBarWidth | int | 1 - ![]() |
3 | Estimated width of the thinnest bar |
![]() |
inScanCount | int | 1 - ![]() |
5 | Number of scan lines used in detecting barcode |
![]() |
inScanWidth | const int | 1 - ![]() |
5 | Width of the single scan |
![]() |
inMinStrength | const float | 0.0 - ![]() |
5.0f | Minimal strength of an extracted edge |
![]() |
inSmoothingStdDev | const float | 0.0 - ![]() |
0.25f | Standard deviation of the gaussian smoothing applied to the profile extracted in each scan |
![]() |
inPolarity | Polarity::Type | Dark | Specifies whether code is darker or brighter than the background | |
![]() |
outBarcodePositions | Array<Rectangle2D>& | Positions of the found barcodes | ||
![]() |
outBarcodePolarities | Optional<Array<Polarity::Type>&> | NIL | Polarities of the found barcodes | |
![]() |
outBarcodeCandidates | Optional<Array<Rectangle2D>&> | NIL | Places with high gradient values that are further investigated | |
![]() |
diagGradientImage | Image& | Image of gradient directions |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outBarcodePolarities, outBarcodeCandidates.
Read more about Optional Outputs.
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.