Skip to main content

This is a secondary package of OpenCV,for manage image data

Project description

base_image

对opencv_python常用接口的二次开发

文档后续更新

Example

  1. Create

Create an object from test.png

import cv2
from baseImage import Image

Image(img='test.png', flags=cv2.IMREAD_COLOR, path='./')
# param img: can be fileName/bytes/numpy.ndarry/cuda.GpuMat
# param flags: 'https://docs.opencv.org/master/d8/d6a/group__imgcodecs__flags.html#ga61d9b0126a3e57d9277ac48327799c80'
# param path: Used to set the read path
  1. transform_gpu

Transform image Data to cuda.GpuMat

from baseImage import Image

img = Image('test.png')
img.transform_gpu()
  1. transform_cpu

Transform image Data to numpy.ndarray

from baseImage import Image

img = Image('test.png')
img.transform_cpu()
  1. imread

This returns image Data with numpy.ndarry

This function will call transform_cpu

from baseImage import Image

img = Image('test.png')
img.imread()
  1. download

This returns image Data with cuda.GpuMat

This function will call transform_gpu

from baseImage import Image

img = Image('test.png')
img.download()
  1. imwrite

Write Data to object

import cv2
from baseImage import Image

img = Image(path='./')
img.imwrite(data='test.png', flags=cv2.IMREAD_COLOR)

# param img: can be fileName/bytes/numpy.ndarry/cuda.GpuMat
# param flags: 'https://docs.opencv.org/master/d8/d6a/group__imgcodecs__flags.html#ga61d9b0126a3e57d9277ac48327799c80'
# param path: Used to set the read path
  1. shape

This returns image shape with tuple

from baseImage import Image

img = Image('test.png')
print(img.shape)
# Output example:(1080, 1920, 4)
  1. size

This return image size with tuple

from baseImage import Image

img = Image('test.png')
print(img.size)
# Output example:(1080, 1920)
  1. clone

Returns a new clone object

from baseImage import Image

img1 = Image('test.png')
print(img1)
img2 = img1.clone()
print(img2)
print(img1 == img2)
# Output example:False

More

直接查看函数实现

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

baseImage-2.0.5.tar.gz (23.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page