pynaviz.audiovideo.video_plot.PlotVideo#

class pynaviz.audiovideo.video_plot.PlotVideo(video, t=None, stream_index=0, index=None, start_worker=True, parent=None)[source]#

Bases: PlotBaseVideoTensor

Visualization for rendering video files synchronized with a time series.

This class uses shared memory and multiprocessing to efficiently stream frames from disk to GPU via pygfx. It also supports real-time interaction and frame-based control.

Parameters:
__init__(video, t=None, stream_index=0, index=None, start_worker=True, parent=None)[source]#

Initialize the PlotVideo instance with a given video source.

Parameters:
  • video (str or pathlib.Path or VideoHandler) – Path to the video file to be visualized or a VideoHandler object.

  • t (numpy.typing.NDArray, optional) – Time vector to use for syncing frames.

  • stream_index (int, default 0) – Index of the stream to read in the video file.

  • index (int, optional) – Controller ID index.

  • start_worker (bool, optional) – Start the worker thread. This should be set to true when used in GUI but for speeding up tests, should be set to False.

  • parent (object, optional) – Parent GUI container or widget.

Methods

__init__(video[, t, stream_index, index, ...])

Initialize the PlotVideo instance with a given video source.

add_interval_sets(epochs[, colors, alpha, ...])

animate()

Main render loop callback for pygfx.

close()

Cleanly close shared memory, worker, and background thread.

color_by(metadata_name[, cmap_name, vmin, vmax])

Applies color mapping to plot elements based on a metadata field.

group_by(metadata_name[, spacing])

Placeholder for future metadata grouping method.

remove_interval_set(label)

Remove an interval set from the plot.

set_frame(target_time)

Set the video display to the frame closest to the target time.

show()

To show the canvas in case of GLFW context used

sort_by(metadata_name[, mode])

Placeholder for future metadata sorting method.

superpose_points(tsdframe[, color, ...])

Superpose a set of points on top of the video plot.

update_interval_set(name, colors, alpha)

Update the color and transparency of an existing interval set.

Attributes

cmap

data

Read-only access to the video data handler.

add_interval_sets(epochs, colors=None, alpha=None, labels=None)#
Parameters:
animate()[source]#

Main render loop callback for pygfx.

Handles texture and text update, syncing, and redraw triggering.

close()[source]#

Cleanly close shared memory, worker, and background thread.

property cmap#
color_by(metadata_name, cmap_name='viridis', vmin=0.0, vmax=100.0)#

Applies color mapping to plot elements based on a metadata field.

This method retrieves values from the given metadata field and maps them to colors using the specified colormap and value range. The mapped colors are applied to each plot element’s material. If color mappings are still being computed in a background thread, the function retries after a short delay.

Parameters:
  • metadata_name (str) – Name of the metadata field used for color mapping.

  • cmap_name (str, default "viridis") – Name of the colormap to apply (e.g., “jet”, “plasma”, “viridis”).

  • vmin (float, default 0.0) – Minimum value for the colormap normalization.

  • vmax (float, default 100.0) – Maximum value for the colormap normalization.

Return type:

None

Notes

  • If the color_mapping_thread is still running, the method defers execution by 25 milliseconds and retries automatically.

  • If no appropriate color map is found for the metadata, a warning is issued.

  • Requires self.data to support get_info() for metadata retrieval.

  • Triggers a canvas redraw by calling self.animate() after updating colors.

Warning

UserWarning

Raised when the specified metadata field has no associated color mapping.

property data#

Read-only access to the video data handler.

group_by(metadata_name, spacing=None)#

Placeholder for future metadata grouping method.

Parameters:
remove_interval_set(label)#

Remove an interval set from the plot.

Parameters:

label (str) – The label of the interval set to be removed.

Return type:

None

set_frame(target_time)#

Set the video display to the frame closest to the target time.

Parameters:

target_time (float) – Time in seconds to seek to.

show()#

To show the canvas in case of GLFW context used

sort_by(metadata_name, mode='ascending')#

Placeholder for future metadata sorting method.

Parameters:
  • metadata_name (str)

  • mode (str | None)

superpose_points(tsdframe, color=None, markersize=10, thickness=2, label=None)#

Superpose a set of points on top of the video plot. Argument tsdframe should be a nap.Tsdframe with multiple of 2 columns (x1, y1, x2, y2, …). The label of the columns doesn’t matter.

Parameters:
  • tsdframe (nap.TsdFrame) – Time series data to overlay.

  • color (str or rgba tuple, optional) – Color of the set of points.

  • markersize (float, default 10) – Size of the set of points.

  • thickness (float, default 2) – Thickness of the lines connecting the points.

  • label (str, optional) – Label for the set of points. If None, a default label is assigned.

update_interval_set(name, colors, alpha)#

Update the color and transparency of an existing interval set.

Parameters:
  • name (str) – The label of the interval set to be updated.

  • colors (str | Color) – The new color of the interval set.

  • alpha (float) – The new transparency level, between 0 and 1.

Return type:

None