napari plugin for reading videos.
Project description
napari-video
Napari plugin for working with videos.
Relies on pyvideoreader as a backend which itself uses opencv for reading videos.
Installation
pip install napari[all] napari_video
Usage
From a terminal:
napari video.avi
Or from within python:
import napari
from napari_video.napari_video import VideoReaderNP
path='video.mp4'
vr = VideoReaderNP(path)
with napari.gui_qt():
viewer = napari.view_image(vr, name=path)
Internals
napari_video.napari_video.VideoReaderNP exposes a video with a numpy-like interface, using opencv as a backend.
For instance, open a video:
vr = VideoReaderNP('video.avi')
print(vr)
video.avi with 60932 frames of size (920, 912, 3) at 100.00 fps
Then
vr[100]will return the 100th frame as a numpy array with shape(902, 912, 3).vr[100:200:10]will return 10 frames evenly spaced between frame number 100 and 200 (shape(10, 902, 912, 3)).- Note that by default, single-frame and slice indexing return 3D and 4D arrays, respectively. To consistently return 4D arrays, open the video with
remove_leading_singleton=False.vr[100]will then return a(1, 902, 912, 3)array. - We can also request specific ROIs and channels. For instance,
vr[100:200:10,100:400,800:850,1]will return an array with shape(10, 300, 50, 1).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file napari_video-0.2.13.tar.gz.
File metadata
- Download URL: napari_video-0.2.13.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a81ea583d8562d5ed2226b323a77f7953a98aa1b2276213788352c18c16b29c
|
|
| MD5 |
a629863a30baf50b008161194d9ef62a
|
|
| BLAKE2b-256 |
2b089b21abdfb6bfee7d2efcf5525bf75e5f8a66c15179aa22e2bac6c0e6e312
|
File details
Details for the file napari_video-0.2.13-py3-none-any.whl.
File metadata
- Download URL: napari_video-0.2.13-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ded8ffc1a5557ace61ae03b9695fdf1a7f2a055f09f844825eff921e57fcfc33
|
|
| MD5 |
c2b09972f9cf60b7c19871c0b01bf671
|
|
| BLAKE2b-256 |
1dfd6de9f181a51467d9b68fb2bb7eab2bcaaeec305665496227b3595418f96c
|