cigvis.gui package#

Subpackages#

Submodules#

Module contents#

Compatibility stubs for removed standalone cigvis GUI entry points.

The old standalone 2D/3D viewers have been removed. The only GUI kept inside cigvis is the lightweight shell used internally by cigvis.plot3D(..., gui=True).

class cigvis.gui.Gui3dWindow(nx: int | None = None, ny: int | None = None, nz: int | None = None, clear_dim: bool = True, data: ndarray | None = None, decode_fn: callable | None = None, theme: str = 'light', nodes: list | None = None, grid: tuple | None = None, share: bool = False, canvas_kwargs: Dict[str, Any] | None = None, parent=None)

Bases: QMainWindow

Modern 3D seismic viewer with animated collapsible sidebar.

Parameters#

nx, ny, nzint, optional

Pre-set dimensions.

clear_dimbool

Clear dimensions on data clear.

datandarray, optional

Pre-load data on startup.

decode_fncallable, optional

SAM-like inference function. If provided, enables the SAM tab.

property is_drawer_open: bool
keyPressEvent(event) None
on_file_dropped(path: str) None
resizeEvent(event) None
staticMetaObject = PySide6.QtCore.QMetaObject("Gui3dWindow" inherits "QMainWindow": )
cigvis.gui.Plot3DGuiWindow

alias of Gui3dWindow

cigvis.gui.gui2d(*_args, **_kwargs)

Removed standalone 2D GUI entry point.

cigvis.gui.gui3d(*_args, **_kwargs)

Removed standalone 3D GUI entry point.

cigvis.gui.launch_plot3d_gui(*, nodes: list | None = None, grid: tuple | None = None, share: bool = False, theme: str = 'dark', canvas_kwargs: Dict[str, Any] | None = None, run_app: bool = True) Gui3dWindow

Launch the retained plot3D(gui=True) PySide6 shell.