//clika-runtime/io.clika.runtime/ImageInfo
ImageInfo
[jvm]
data class ImageInfo(var height: Long = 0, var width: Long = 0, var channels: Long = 0)
An image header's geometry (clika_rt_image_info).
Constructors
| ImageInfo | [jvm] constructor(height: Long = 0, width: Long = 0, channels: Long = 0) |
Properties
| Name | Summary |
|---|---|
| channels | [jvm] var channels: Long 1 gray / 3 RGB / 4 RGBA. |
| height | [jvm] var height: Long Pixel rows. |
| width | [jvm] var width: Long Pixel columns. |