You are here: Start » FIL.NET » FIS.DetectMultipleBarcodes Method
FIS.DetectMultipleBarcodes Method
Determines the positions of multiple barcodes on the input image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void DetectMultipleBarcodes ( FilNet.Image inImage, FilNet.BarcodeFormat? inFormat, float inMinGradientLength, int inBaseBarWidth, int inScanCount, int inScanWidth, float inMinStrength, float inSmoothingStdDev, FilNet.Polarity inPolarity, IList<FilNet.Rectangle2D> outBarcodePositions, NullableRef<List<FilNet.Polarity>> outBarcodePolarities, NullableRef<List<FilNet.Rectangle2D>> outBarcodeCandidates )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inFormat | FilNet.BarcodeFormat? | EAN13 | Format of the barcode. Default value: EAN13. | |
![]() | inMinGradientLength | float | <0.0f, INF> | 8.0f | Minimal gradient length of edge pixels used for detecting barcodes. Default value: 8.0f. |
![]() | inBaseBarWidth | int | <1, INF> | 3 | Estimated width of the thinnest bar. Default value: 3. |
![]() | inScanCount | int | <1, INF> | 5 | Number of scan lines used in detecting barcode. Default value: 5. |
![]() | inScanWidth | int | <1, INF> | 5 | Width of the single scan. Default value: 5. |
![]() | inMinStrength | float | <0.0f, INF> | 5.0f | Minimal strength of an extracted edge. Default value: 5.0f. |
![]() | inSmoothingStdDev | float | <0.0f, INF> | 0.25f | Standard deviation of the gaussian smoothing applied to the profile extracted in each scan. Default value: 0.25f. |
![]() | inPolarity | FilNet.Polarity | Dark | Specifies whether code is darker or brighter than the background. Default value: Dark. | |
![]() | outBarcodePositions | System.Collections.Generic.IList<FilNet.Rectangle2D> | Positions of the found barcodes. | ||
![]() | outBarcodePolarities | FilNet.NullableRef<System.Collections.Generic.List<FilNet.Polarity>> | Polarities of the found barcodes. Can be null to skip this parameter calculation. | ||
![]() | outBarcodeCandidates | FilNet.NullableRef<System.Collections.Generic.List<FilNet.Rectangle2D>> | Places with high gradient values that are further investigated. Can be null to skip this parameter calculation. |
Function Overrides
- DetectMultipleBarcodes(Image, Single, Int32, Int32, Int32, Single, Single, Polarity, IList<Rectangle2D>)
- DetectMultipleBarcodes(Image, Nullable<BarcodeFormat>, Single, Int32, Int32, Int32, Single, Single, Polarity, IList<Rectangle2D>)
- DetectMultipleBarcodes(Image, Nullable<BarcodeFormat>, Single, Int32, Int32, Int32, Single, Single, Polarity, IList<Rectangle2D>, NullableRef<List<Polarity>>, NullableRef<List<Rectangle2D>>, Image)