This repository has been archived by the owner on Oct 26, 2020. It is now read-only.
v0.0.1
Pre-release
Pre-release
PyNVVL
PyNVVL is a thin wrapper of NVIDIA Video Loader (NVVL). This packages enables you to load videos directoly to GPU memory and access them as CuPy ndarrays with zero copy.
Requirements
- CuPy v4.0.0
Install
pip install [WHEEL URL]
Replace [WHEEL URL]
with one of the wheels below:
Python 3.5
- CUDA 8.0:
https://github.com/mitmul/pynvvl/releases/download/v0.0.1/pynvvl_cuda80-0.0.1-cp35-cp35m-linux_x86_64.whl
- CUDA 9.0:
https://github.com/mitmul/pynvvl/releases/download/v0.0.1/pynvvl_cuda90-0.0.1-cp35-cp35m-linux_x86_64.whl
- CUDA 9.1:
https://github.com/mitmul/pynvvl/releases/download/v0.0.1/pynvvl_cuda91-0.0.1-cp35-cp35m-linux_x86_64.whl
Usage
import pynvvl
import matplotlib.pyplot as plt
# Create NVVLVideoLoader object
loader = pynvvl.NVVLVideoLoader(device_id=0)
# Show the number of frames in the video
n_frames = loader.frame_count('examples/sample.mp4')
print('Number of frames:', n_frames)
# Load a video and return it as a CuPy array
video = loader.read_sequence(
'examples/sample.mp4',
horiz_flip=True,
crop_y=30,
crop_height=190,
scale_method='Nearest',
normalized=True
)
print(video.shape) # => (91, 3, 256, 256): (n_frames, channels, height, width)
print(video.dtype) # => float32
# Get the first frame as numpy array
frame = video[0].get()
frame = frame.transpose(1, 2, 0)
plt.imshow(frame)
plt.savefig('examples/sample.png')
Transformation Options
pynvvl.NVVLVideoLoader.read_sequence
can take some options to specify the color space, the value range, and what transformations you want to perform to the video.
Loads the video from disk and returns it as a CuPy ndarray.
Args:
filename (str): The path to the video.
frame (int): The initial frame number of the returned sequence.
Default is 0.
count (int): The number of frames of the returned sequence.
If it is None, whole frames of the video are loaded.
channels (int): The number of color channels of the video.
Default is 3.
scale_height (int): The height of the scaled video.
Note that scaling is performed before cropping.
If it is 0 no scaling is performed. Default is 0.
scale_width (int): The width of the scaled video.
Note that scaling is performed before cropping.
If it is 0, no scaling is performed. Default is 0.
crop_x (int): Location of the crop within the scaled frame.
Must be set such that crop_y + height <= original height.
Default is 0.
crop_y (int): Location of the crop within the scaled frame.
Must be set such that crop_x + width <= original height.
Default is 0.
crop_height (int): The height of cropped region of the video.
If it is None, no cropping is performed. Default is None.
crop_width (int): The width of cropped region of the video.
If it is None, no cropping is performed. Default is None.
scale_method (str): Scaling method. It should be either of
'Nearest' or 'Lienar'. Default is 'Linear'.
horiz_flip (bool): Whether horizontal flipping is performed or not.
Default is False.
normalized (bool): If it is True, the values of returned video is
normalized into [0, 1], otherwise the value range is [0, 255].
Default is False.
color_space (str): The color space of the values of returned video.
It should be either 'RGB' or 'YCbCr'. Default is 'RGB'.
chroma_up_method (str): How the chroma channels are upscaled from
yuv 4:2:0 to 4:4:4. It should be 'Linear' currently.
Build wheels
Requirements for build
- Docker
- nvidia-docker (v1/v2)
bash docker/build_docker.sh
sudo rm -rf docker/lib
bash docker/build_nvvl.sh
bash docker/build_wheels.sh