io.cequence.azureform.model.BoundingBox.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-form-recognizer-domain_2.13 Show documentation
Show all versions of azure-form-recognizer-domain_2.13 Show documentation
Domain for Azure Form Recognizer
package io.cequence.azureform.model
case class BoundingBox(
minX: Double,
minY: Double,
maxX: Double,
maxY: Double
)
case class BoundingBoxWithPage(
pageIndex: Int,
refPageWidth: Double,
refPageHeight: Double,
boundingBox: BoundingBox
)
case class BufferedImageSource(
width: Int,
height: Int,
source: Array[Byte]
)