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
jsonJSONObject
DocumentQualityAnalyzerConfiguration(IDictionary<string, Object>)
[Register(".ctor", "(Ljava/util/Map;)V", "")]
public DocumentQualityAnalyzerConfiguration(IDictionary<string, Object> source)
Parameters
sourceIDictionary<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
qualityThresholdsIList<DocumentQualityThreshold>qualityIndicesIList<DocumentQuality>detectOrientationboolinspectSmallTextboolmaxImageSizeintminEstimatedNumberOfSymbolsForDocumentintprocessByTileConfigurationProcessByTileConfigurationminRequiredOrientationConfidencedoublereturnQualityHeatmapbool
Properties
Creator
[Register("CREATOR")]
public static IParcelableCreator Creator { get; }
Property Value
DetectOrientation
public bool DetectOrientation { get; set; }
Property Value
InspectSmallText
public bool InspectSmallText { get; set; }
Property Value
MaxImageSize
public int MaxImageSize { get; set; }
Property Value
MinEstimatedNumberOfSymbolsForDocument
public int MinEstimatedNumberOfSymbolsForDocument { get; set; }
Property Value
MinRequiredOrientationConfidence
public double MinRequiredOrientationConfidence { get; set; }
Property Value
ProcessByTileConfiguration
public ProcessByTileConfiguration ProcessByTileConfiguration { get; set; }
Property Value
QualityIndices
public IList<DocumentQuality> QualityIndices { get; set; }
Property Value
QualityThresholds
public IList<DocumentQualityThreshold> QualityThresholds { get; set; }
Property Value
ReturnQualityHeatmap
public bool ReturnQualityHeatmap { get; set; }
Property Value
Methods
Component1()
[Register("component1", "()Ljava/util/List;", "")]
public IList<DocumentQualityThreshold> Component1()
Returns
Component2()
[Register("component2", "()Ljava/util/List;", "")]
public IList<DocumentQuality> Component2()
Returns
Component3()
[Register("component3", "()Z", "")]
public bool Component3()
Returns
Component4()
[Register("component4", "()Z", "")]
public bool Component4()
Returns
Component5()
[Register("component5", "()I", "")]
public int Component5()
Returns
Component6()
[Register("component6", "()I", "")]
public int Component6()
Returns
Component7()
[Register("component7", "()Lio/scanbot/sdk/documentqualityanalyzer/ProcessByTileConfiguration;", "")]
public ProcessByTileConfiguration Component7()
Returns
Component8()
[Register("component8", "()D", "")]
public double Component8()
Returns
Component9()
[Register("component9", "()Z", "")]
public bool Component9()
Returns
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
qualityThresholdsIList<DocumentQualityThreshold>qualityIndicesIList<DocumentQuality>detectOrientationboolinspectSmallTextboolmaxImageSizeintminEstimatedNumberOfSymbolsForDocumentintprocessByTileConfigurationProcessByTileConfigurationminRequiredOrientationConfidencedoublereturnQualityHeatmapbool
Returns
Default()
[Register("default", "()Lio/scanbot/sdk/documentqualityanalyzer/DocumentQualityAnalyzerConfiguration;", "")]
public static DocumentQualityAnalyzerConfiguration Default()
Returns
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.
.
android.os.Parcelable.describeContents()
Portions of this page are modifications based on work created and shared by the
ToJson(ToJsonConfiguration)
[Register("toJson", "(Lio/scanbot/sdk/common/ToJsonConfiguration;)Lorg/json/JSONObject;", "")]
public JSONObject ToJson(ToJsonConfiguration config)
Parameters
configToJsonConfiguration
Returns
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
destParcelThe Parcel in which the object should be written.
flagsParcelableWriteFlagsAdditional flags about how the object should be written. May be 0 or
#PARCELABLE_WRITE_RETURN_VALUE.
Remarks
Flatten this object in to a Parcel.
.
android.os.Parcelable.writeToParcel(android.os.Parcel, int)
Portions of this page are modifications based on work created and shared by the