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

DetectSingleBarcode_Deprecated
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Barcodes |
Determines the position of a single barcode on the input image.
Applications: Detection of a barcode, but without actual recognition. Usually followed by a RecognizeBarcode filter.
Syntax
void fil::DetectSingleBarcode_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::Conditional<fil::Rectangle2D>& outBarcodePosition, ftl::Optional<ftl::Conditional<fil::Polarity::Type>&> outBarcodePolarity = 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 | |
![]() |
outBarcodePosition | Conditional<Rectangle2D>& | Position of the found barcode | ||
![]() |
outBarcodePolarity | Optional<Conditional<Polarity::Type>&> | NIL | Polarity of the found barcode | |
![]() |
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: outBarcodePolarity, outBarcodeCandidates.
Read more about Optional Outputs.
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.