Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 683 Bytes

index.rst

File metadata and controls

42 lines (29 loc) · 683 Bytes

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"
        )
.. toctree::
   :maxdepth: 2
   :caption: Contents:

   reader
   position
   camera

Indices and tables