three.MF.V3.Descriptors.Image

 1class Image:
 2
 3    """
 4     Image descriptor.
 5    """
 6    def __init__(self, width: int, height: int, step: int, type: int):
 7        # Image width.
 8        self.width = width
 9        # Image height.
10        self.height = height
11        # Image row step in bytes.
12        self.step = step
13        # OpenCV image [type](https:gist.github.com/yangcha/38f2fa630e223a8546f9b48ebbb3e61a).
14        self.type = type
class Image:
 2class Image:
 3
 4    """
 5     Image descriptor.
 6    """
 7    def __init__(self, width: int, height: int, step: int, type: int):
 8        # Image width.
 9        self.width = width
10        # Image height.
11        self.height = height
12        # Image row step in bytes.
13        self.step = step
14        # OpenCV image [type](https:gist.github.com/yangcha/38f2fa630e223a8546f9b48ebbb3e61a).
15        self.type = type

Image descriptor.

Image(width: int, height: int, step: int, type: int)
 7    def __init__(self, width: int, height: int, step: int, type: int):
 8        # Image width.
 9        self.width = width
10        # Image height.
11        self.height = height
12        # Image row step in bytes.
13        self.step = step
14        # OpenCV image [type](https:gist.github.com/yangcha/38f2fa630e223a8546f9b48ebbb3e61a).
15        self.type = type
width
height
step
type