Class BarcodeFormatPharmaCodeConfiguration


  • public class BarcodeFormatPharmaCodeConfiguration
    extends BarcodeFormatOneDConfigurationBase
    PharmaCode barcode configuration. Add to scanner configuration to scan linear (1D) Laetus Pharmacode barcodes. Two-track PharmaCode scanning is configured separately through the PharmaCodeTwoTrackConfig class.
    • Constructor Detail

      • BarcodeFormatPharmaCodeConfiguration

        public BarcodeFormatPharmaCodeConfiguration​(java.lang.String regexFilter,
                                                    double minimumSizeScore,
                                                    boolean addAdditionalQuietZone,
                                                    int minimum1DQuietZoneSize,
                                                    int minimum1DConfirmationCount,
                                                    int minimumValue,
                                                    boolean allowNarrowBarsOnly,
                                                    boolean allowWideBarsOnly)
        Constructs BarcodeFormatPharmaCodeConfiguration with the given params.
        Parameters:
        regexFilter - Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off). Default is ""
        minimumSizeScore - Minimum acceptable value of a result BarcodeItem's sizeScore (between 0 and 1). Barcodes with a sizeScore less than this value will not be scanned. When set to 0, barcodes are returned no matter what their size is. Default is 0
        addAdditionalQuietZone - If true, we process the barcode scanning with an artificial quiet zone that we add to the input image. This flag should be used to scan sharp crops of a barcode in single-shot mode. Default is false
        minimum1DQuietZoneSize - Minimum quiet zone size on the left and right sides of a 1D barcode, measured in number of modules. The quiet zone is only for 1D barcodes with weak start/stop patterns, i.e. Iata2Of5, Industrial2Of5, Code25, Itf, Codabar, MsiPlessey and Code11. Default is 6
        minimum1DConfirmationCount - In case of live scanning, we require confirmations across frames to consider the one-d barcode as valid. Default is 1
        minimumValue - Minimum value for PharmaCode. Very low values are likely to produce more false positives. Default is 16
        allowNarrowBarsOnly - If true, a result consisting of only narrow bars is accepted as valid. The specification does not recommend such barcodes. Default is false. Default is false
        allowWideBarsOnly - If true, a result consisting of only wide bars is accepted as valid. The specification does not recommend such barcodes. Default is false. Default is false
      • BarcodeFormatPharmaCodeConfiguration

        public BarcodeFormatPharmaCodeConfiguration()
        Constructs BarcodeFormatPharmaCodeConfiguration with default parameters.
    • Method Detail

      • getMinimumValue

        public int getMinimumValue()
        Getter for minimumValue field. See constructor documentation for more information about the field.
        Returns:
        minimumValue
      • setMinimumValue

        public void setMinimumValue​(int minimumValue)
        Setter for minimumValue field. See constructor documentation for more information about the field.
        Parameters:
        minimumValue - Value to set.
      • getAllowNarrowBarsOnly

        public boolean getAllowNarrowBarsOnly()
        Getter for allowNarrowBarsOnly field. See constructor documentation for more information about the field.
        Returns:
        allowNarrowBarsOnly
      • setAllowNarrowBarsOnly

        public void setAllowNarrowBarsOnly​(boolean allowNarrowBarsOnly)
        Setter for allowNarrowBarsOnly field. See constructor documentation for more information about the field.
        Parameters:
        allowNarrowBarsOnly - Value to set.
      • getAllowWideBarsOnly

        public boolean getAllowWideBarsOnly()
        Getter for allowWideBarsOnly field. See constructor documentation for more information about the field.
        Returns:
        allowWideBarsOnly
      • setAllowWideBarsOnly

        public void setAllowWideBarsOnly​(boolean allowWideBarsOnly)
        Setter for allowWideBarsOnly field. See constructor documentation for more information about the field.
        Parameters:
        allowWideBarsOnly - Value to set.