Current section

Files

Jump to
xberg lib xberg b_box.ex
Raw

lib/xberg/b_box.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:c42b3ed17053806bdcf42dea768a2aecba67c8ec1370751ea7323b02483cbce1
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.BBox do
@moduledoc "Bounding box in original image coordinates (x1, y1) top-left, (x2, y2) bottom-right."
@typedoc "Bounding box in original image coordinates (x1, y1) top-left, (x2, y2) bottom-right."
@type t :: %__MODULE__{
x1: float(),
y1: float(),
x2: float(),
y2: float()
}
defstruct x1: 0.0,
y1: 0.0,
x2: 0.0,
y2: 0.0
end