Skip to content

module image_genop


class ImageClassify


classmethod classify

classify(image: 'str | bytes')

Executes image classification operation using vAccel over genop.

Args:

  • image: A string or bytes object containing the image's file path

Returns: A string containing the classifiaction tag


class ImageDetect


classmethod detect

detect(image: 'str | bytes')

Executes image detection operation using vAccel over genop.

Args:

  • image: A string or bytes object containing the image's file path

Returns: A string containing the detection result


class ImageSegment


classmethod segment

segment(image: 'str | bytes')

Executes image segmentation operation using vAccel over genop.

Args:

  • image: A string or bytes object containing the image's file path

Returns: A string containing the segmentation result


class ImagePose


classmethod pose

pose(image: 'str | bytes')

Executes image pose estimation operation using vAccel over genop.

Args:

  • image: A string or bytes object containing the image's file path

Returns: A string containing the pose estimation result


class ImageDepth


classmethod depth

depth(image: 'str | bytes')

Executes image depth estimation operation using vAccel over genop.

Args:

  • image: A string or bytes object containing the image's file path

Returns: A string containing the depth estimation result