28 lines
767 B
Swift
28 lines
767 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import CoreGraphics
|
|
|
|
/// Describes the data extracted as key-value pair in
|
|
/// an image/document resulting from identify() API
|
|
/// e.g The text "Name: John Doe" present in an image/document
|
|
public struct BoundedKeyValue {
|
|
public let key: String
|
|
public let value: String
|
|
public let isSelected: Bool
|
|
public let boundingBox: CGRect
|
|
public let polygon: Polygon
|
|
|
|
public init(key: String, value: String, isSelected: Bool, boundingBox: CGRect, polygon: Polygon) {
|
|
self.key = key
|
|
self.value = value
|
|
self.isSelected = isSelected
|
|
self.boundingBox = boundingBox
|
|
self.polygon = polygon
|
|
}
|
|
}
|