Class CharacterLevelAnnotation
- Namespace
- IO.Scanbot.Sdk.Documentqualityanalyzer
- Assembly
- DocumentSDK.NET.Droid.dll
[Register("io/scanbot/sdk/documentqualityanalyzer/CharacterLevelAnnotation", DoNotGenerateAcw = true)]
public sealed class CharacterLevelAnnotation : Object, IParcelable, IJavaObject, IJavaPeerable, IDisposable
- Inheritance
-
CharacterLevelAnnotation
- Implements
- Inherited Members
Constructors
CharacterLevelAnnotation(PointF, double, double, double, double, double, double, double, double)
[Register(".ctor", "(Landroid/graphics/PointF;DDDDDDDD)V", "")]
public CharacterLevelAnnotation(PointF plotCenter, double plotWidth, double plotHeight, double ocrability, double contrast, double fontSize, double orientation, double orientationNormalized, double orientationDeviation)
Parameters
plotCenterPointFplotWidthdoubleplotHeightdoubleocrabilitydoublecontrastdoublefontSizedoubleorientationdoubleorientationNormalizeddoubleorientationDeviationdouble
CharacterLevelAnnotation(JSONObject)
[Register(".ctor", "(Lorg/json/JSONObject;)V", "")]
public CharacterLevelAnnotation(JSONObject json)
Parameters
jsonJSONObject
CharacterLevelAnnotation(IDictionary<string, Object>)
[Register(".ctor", "(Ljava/util/Map;)V", "")]
public CharacterLevelAnnotation(IDictionary<string, Object> source)
Parameters
sourceIDictionary<string, Object>
Properties
Contrast
public double Contrast { get; }
Property Value
Creator
[Register("CREATOR")]
public static IParcelableCreator Creator { get; }
Property Value
FontSize
public double FontSize { get; }
Property Value
Ocrability
public double Ocrability { get; }
Property Value
Orientation
public double Orientation { get; }
Property Value
OrientationDeviation
public double OrientationDeviation { get; }
Property Value
OrientationNormalized
public double OrientationNormalized { get; }
Property Value
PlotCenter
public PointF PlotCenter { get; }
Property Value
PlotHeight
public double PlotHeight { get; }
Property Value
PlotWidth
public double PlotWidth { get; }
Property Value
Methods
Component1()
[Register("component1", "()Landroid/graphics/PointF;", "")]
public PointF Component1()
Returns
Component2()
[Register("component2", "()D", "")]
public double Component2()
Returns
Component3()
[Register("component3", "()D", "")]
public double Component3()
Returns
Component4()
[Register("component4", "()D", "")]
public double Component4()
Returns
Component5()
[Register("component5", "()D", "")]
public double Component5()
Returns
Component6()
[Register("component6", "()D", "")]
public double Component6()
Returns
Component7()
[Register("component7", "()D", "")]
public double Component7()
Returns
Component8()
[Register("component8", "()D", "")]
public double Component8()
Returns
Component9()
[Register("component9", "()D", "")]
public double Component9()
Returns
Copy(PointF, double, double, double, double, double, double, double, double)
[Register("copy", "(Landroid/graphics/PointF;DDDDDDDD)Lio/scanbot/sdk/documentqualityanalyzer/CharacterLevelAnnotation;", "")]
public CharacterLevelAnnotation Copy(PointF plotCenter, double plotWidth, double plotHeight, double ocrability, double contrast, double fontSize, double orientation, double orientationNormalized, double orientationDeviation)
Parameters
plotCenterPointFplotWidthdoubleplotHeightdoubleocrabilitydoublecontrastdoublefontSizedoubleorientationdoubleorientationNormalizeddoubleorientationDeviationdouble
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