Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumColourClusteringMode

  • Android
  • Objective-C
  • Swift
public class EnumColourClusteringMode {
    public static final int CCM_AUTO = 1;
    public static final int CCM_GENERAL_HSV = 2;
    public static final int CCM_SKIP = 0;
}
typedef NS_ENUM(NSInteger, EnumColourClusteringMode)
{
    /** Not supported yet. */
    EnumColourClusteringModeAuto = 0x01,
    /** Clusters colours using the general algorithm based on HSV. Check @ref CCM for available argument settings.*/
    EnumColourClusteringModeGeneralHSV = 0x02,
    /** Skips colour clustering. */
    EnumColourClusteringModeSkip = 0x00
};
public enum EnumColourClusteringMode : Int{
    /** Not supported yet. */
    auto = 0x01
    /** Clusters colours using the general algorithm based on HSV. Check @ref CCM for available argument settings.*/
    generalHSV = 0x02
    /** Skips colour clustering. */
    skip = 0x00
}

This page is compatible for:

Is this page helpful?

YesYes NoNo