Welcome to kw6’s documentation!

Minimalistic library for reading files in the kw6 file format.

Install

pip install kw6

Usage

from pathlib import Path
import kw6

path = Path("...")

for position in kw6.Reader.from_path(path):
    for camera in position.cameras:
        camera.image.save(
            f"{position.header.frame_index}_{camera.header.camera_index}.png"
        )

Contents:

Indices and tables