IdentifyTextResult
public struct IdentifyTextResult : IdentifyResult
Results are mapped to IdentifyTextResult when .plain is passed for .detectText in the type: field in identify() API
-
Declaration
Swift
public let fullText: String?
-
Declaration
Swift
public let words: [IdentifiedWord]?
-
Declaration
Swift
public let rawLineText: [String]?
-
Declaration
Swift
public let identifiedLines: [IdentifiedLine]?
-
Declaration
Swift
public init(fullText: String?, words: [IdentifiedWord]?, rawLineText: [String]?, identifiedLines: [IdentifiedLine]?)