Table of Contents

Class DocumentQualityAnalyzerConfiguration

Namespace
IO.Scanbot.Sdk.Documentqualityanalyzer
Assembly
DocumentSDK.NET.Droid.dll
[Register("io/scanbot/sdk/documentqualityanalyzer/DocumentQualityAnalyzerConfiguration", DoNotGenerateAcw = true)]
public sealed class DocumentQualityAnalyzerConfiguration : Object, IParcelable, IJavaObject, IJavaPeerable, IDisposable
Inheritance
DocumentQualityAnalyzerConfiguration
Implements
Inherited Members

Constructors

DocumentQualityAnalyzerConfiguration()

[Register(".ctor", "()V", "")]
public DocumentQualityAnalyzerConfiguration()

DocumentQualityAnalyzerConfiguration(JSONObject)

[Register(".ctor", "(Lorg/json/JSONObject;)V", "")]
public DocumentQualityAnalyzerConfiguration(JSONObject json)

Parameters

json JSONObject

DocumentQualityAnalyzerConfiguration(IDictionary<string, Object>)

[Register(".ctor", "(Ljava/util/Map;)V", "")]
public DocumentQualityAnalyzerConfiguration(IDictionary<string, Object> source)

Parameters

source IDictionary<string, Object>

DocumentQualityAnalyzerConfiguration(IList<DocumentQualityThreshold>, IList<DocumentQuality>, bool, bool, int, int, ProcessByTileConfiguration, double, bool)

[Register(".ctor", "(Ljava/util/List;Ljava/util/List;ZZIILio/scanbot/sdk/documentqualityanalyzer/ProcessByTileConfiguration;DZ)V", "")]
public DocumentQualityAnalyzerConfiguration(IList<DocumentQualityThreshold> qualityThresholds, IList<DocumentQuality> qualityIndices, bool detectOrientation, bool inspectSmallText, int maxImageSize, int minEstimatedNumberOfSymbolsForDocument, ProcessByTileConfiguration processByTileConfiguration, double minRequiredOrientationConfidence, bool returnQualityHeatmap)

Parameters

qualityThresholds IList<DocumentQualityThreshold>
qualityIndices IList<DocumentQuality>
detectOrientation bool
inspectSmallText bool
maxImageSize int
minEstimatedNumberOfSymbolsForDocument int
processByTileConfiguration ProcessByTileConfiguration
minRequiredOrientationConfidence double
returnQualityHeatmap bool

Properties

Creator

[Register("CREATOR")]
public static IParcelableCreator Creator { get; }

Property Value

IParcelableCreator

DetectOrientation

public bool DetectOrientation { get; set; }

Property Value

bool

InspectSmallText

public bool InspectSmallText { get; set; }

Property Value

bool

MaxImageSize

public int MaxImageSize { get; set; }

Property Value

int

MinEstimatedNumberOfSymbolsForDocument

public int MinEstimatedNumberOfSymbolsForDocument { get; set; }

Property Value

int

MinRequiredOrientationConfidence

public double MinRequiredOrientationConfidence { get; set; }

Property Value

double

ProcessByTileConfiguration

public ProcessByTileConfiguration ProcessByTileConfiguration { get; set; }

Property Value

ProcessByTileConfiguration

QualityIndices

public IList<DocumentQuality> QualityIndices { get; set; }

Property Value

IList<DocumentQuality>

QualityThresholds

public IList<DocumentQualityThreshold> QualityThresholds { get; set; }

Property Value

IList<DocumentQualityThreshold>

ReturnQualityHeatmap

public bool ReturnQualityHeatmap { get; set; }

Property Value

bool

Methods

Component1()

[Register("component1", "()Ljava/util/List;", "")]
public IList<DocumentQualityThreshold> Component1()

Returns

IList<DocumentQualityThreshold>

Component2()

[Register("component2", "()Ljava/util/List;", "")]
public IList<DocumentQuality> Component2()

Returns

IList<DocumentQuality>

Component3()

[Register("component3", "()Z", "")]
public bool Component3()

Returns

bool

Component4()

[Register("component4", "()Z", "")]
public bool Component4()

Returns

bool

Component5()

[Register("component5", "()I", "")]
public int Component5()

Returns

int

Component6()

[Register("component6", "()I", "")]
public int Component6()

Returns

int

Component7()

[Register("component7", "()Lio/scanbot/sdk/documentqualityanalyzer/ProcessByTileConfiguration;", "")]
public ProcessByTileConfiguration Component7()

Returns

ProcessByTileConfiguration

Component8()

[Register("component8", "()D", "")]
public double Component8()

Returns

double

Component9()

[Register("component9", "()Z", "")]
public bool Component9()

Returns

bool

Copy(IList<DocumentQualityThreshold>, IList<DocumentQuality>, bool, bool, int, int, ProcessByTileConfiguration, double, bool)

[Register("copy", "(Ljava/util/List;Ljava/util/List;ZZIILio/scanbot/sdk/documentqualityanalyzer/ProcessByTileConfiguration;DZ)Lio/scanbot/sdk/documentqualityanalyzer/DocumentQualityAnalyzerConfiguration;", "")]
public DocumentQualityAnalyzerConfiguration Copy(IList<DocumentQualityThreshold> qualityThresholds, IList<DocumentQuality> qualityIndices, bool detectOrientation, bool inspectSmallText, int maxImageSize, int minEstimatedNumberOfSymbolsForDocument, ProcessByTileConfiguration processByTileConfiguration, double minRequiredOrientationConfidence, bool returnQualityHeatmap)

Parameters

qualityThresholds IList<DocumentQualityThreshold>
qualityIndices IList<DocumentQuality>
detectOrientation bool
inspectSmallText bool
maxImageSize int
minEstimatedNumberOfSymbolsForDocument int
processByTileConfiguration ProcessByTileConfiguration
minRequiredOrientationConfidence double
returnQualityHeatmap bool

Returns

DocumentQualityAnalyzerConfiguration

Default()

[Register("default", "()Lio/scanbot/sdk/documentqualityanalyzer/DocumentQualityAnalyzerConfiguration;", "")]
public static DocumentQualityAnalyzerConfiguration Default()

Returns

DocumentQualityAnalyzerConfiguration

DescribeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

[Register("describeContents", "()I", "")]
public int DescribeContents()

Returns

int

a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

Remarks

<p>Describe the kinds of special objects contained in this Parcelable

instance's marshaled representation. For example, if the object will include a file descriptor in the output of #writeToParcel(Parcel, int), the return value of this method must include the #CONTENTS_FILE_DESCRIPTOR bit.

Java documentation for

android.os.Parcelable.describeContents()
.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

ToJson(ToJsonConfiguration)

[Register("toJson", "(Lio/scanbot/sdk/common/ToJsonConfiguration;)Lorg/json/JSONObject;", "")]
public JSONObject ToJson(ToJsonConfiguration config)

Parameters

config ToJsonConfiguration

Returns

JSONObject

WriteToParcel(Parcel, ParcelableWriteFlags)

Flatten this object in to a Parcel.

[Register("writeToParcel", "(Landroid/os/Parcel;I)V", "")]
public void WriteToParcel(Parcel dest, ParcelableWriteFlags flags)

Parameters

dest Parcel

The Parcel in which the object should be written.

flags ParcelableWriteFlags

Additional flags about how the object should be written. May be 0 or #PARCELABLE_WRITE_RETURN_VALUE.

Remarks

Flatten this object in to a Parcel.

Java documentation for

android.os.Parcelable.writeToParcel(android.os.Parcel, int)
.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.