Class OCRImageObject
Inherited Members
Namespace: Glitch9.AIDevKit.Mistral
Assembly: Glitch9.AIDevKit.Provider.Mistral.dll
Syntax
public class OCRImageObject
Properties
| Edit this page View SourceBottomRightX
Optional. X coordinate of bottom-right corner of the extracted image
Declaration
[JsonProperty("bottom_right_x")]
public int? BottomRightX { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
BottomRightY
Optional. Y coordinate of bottom-right corner of the extracted image
Declaration
[JsonProperty("bottom_right_y")]
public int? BottomRightY { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Id
Required. Image ID for extracted image in a page
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ImageAnnotation
Optional. Annotation of the extracted image in json str
Declaration
[JsonProperty("image_annotation")]
public string ImageAnnotation { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ImageBase64
Optional. Base64 string of the extracted image
Declaration
[JsonProperty("image_base64")]
public string ImageBase64 { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
TopLeftX
Optional. X coordinate of top-left corner of the extracted image
Declaration
[JsonProperty("top_left_x")]
public int? TopLeftX { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
TopLeftY
Optional. Y coordinate of top-left corner of the extracted image
Declaration
[JsonProperty("top_left_y")]
public int? TopLeftY { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |