Skip to content
Snippets Groups Projects
swittl's avatar
Simon Wittl authored
52049e27
History

Json Datadefinition

This repository contains data structure definitions for the RoboCT group at Deggendorf. It includes custom data structure schemas, example data files, and validation scripts.

  • Example Files: Stored in the example folder, these files demonstrate data structure usage.
  • Validation Scripts: Located in the scripts folder, these scripts validate thd_json data structure definitions against their schemas.

THD JSON

This data structure use always a human-readable .json for storing header information.

CLI

CLI tools for the validation of folder are automatically created. To install the current tools just use:

uv tool install --from git+https://mygit.th-deg.de/roboct/definitions/json_schemas thd-json

After the installation the validators are available as CLI:

projection_validator(.exe) --help 

Projection

This schema defines the properties for projection data in THD JSON format.

Property Type Description Constraints Required
header header Header to identify File. format: Header Yes
focal_spot_position_mm array Position of the focal spot in millimeters 3 numbers Yes
focal_spot_orientation_quat array Quaternion representing the focal spots orientation 4 numbers No
detector_center_position_mm array Center position of the detector in millimeters 3 numbers Yes
detector_horizontal_vector array Horizontal orientation vector of the detector 3 numbers No
detector_vertical_vector array Vertical orientation vector of the detector 3 numbers No
detector_center_orientation_quat array Quaternion representing the detector's center orientation 4 numbers Yes
pixel_pitch_width_mm number Pixel pitch in millimeters (width) Minimum 0.001 Yes
pixel_pitch_height_mm number Pixel pitch in millimeters (height) Minimum 0.001 Yes
image_width_px integer Width of the image in pixels Minimum 1 Yes
image_height_px integer Height of the image in pixels Minimum 1 Yes
projection_matrix_cera array Projection matrix for CERA, representing transformations 3 arrays of 4 numbers No

Header

Property Type Description Constraints Required
timestamp string Timestamp, e.g., 2018-11-13T20:20:39+00:00 format: date-time Yes
uuid string Unique identifier format: uuid Yes

Examples

Python example to validate a projection file:

from thd_json.projection import get_projection_validator
from pathlib import Path


FILE = Path("./examples/thd_json/test_thd.json")


def main():
    projection_validator = get_projection_validator()
    projection_validator.file(FILE)


if __name__ == "__main__":
    main()

Python example to validate a folder of projections

def main():
    projection_validator = get_projection_validator()
    projection_validator.folder(FOLDER)

Contribute

  • For changes please make a pull request.
  • Update the version and date number of the schema.
  • Add a new datatyp:
    • add a moulde to src\ thd_json\ new_data_type
    • add a validation function to the __init__.py of the new_data_typ. Example of projection._init_.py":
from thd_json import Validator

from pathlib import Path
import argparse


def get_projection_validator(json_suffix: str = "*.json") -> Validator:
    return Validator(Path(__file__).parent / Path("projection.json"), json_suffix)


def projection_cli():
    parser = argparse.ArgumentParser(
        description="JSON THD Projection Geometry Validator CLI with uv."
    )
    parser.add_argument("folder", help="Folder to check.", type=str)
    parser.add_argument(
        "suffix", help="Projection suffix.", default="*.json", type=Path, nargs="?"
    )
    args = parser.parse_args()

    suffix = str(args.suffix)
    if not suffix.startswith("*"):
        raise ValueError(f'The suffix must always start with: "*". \nIt is: {suffix}')

    validator = get_projection_validator(suffix)

    folder = Path(args.folder)
    if not folder.exists():
        raise FileNotFoundError(f"Folder: {folder} does not exist")

    validator.folder(Path(args.folder))


if __name__ == "__main__":
    projection_cli()
  • add the CLI script to the pyproject.toml
[project.scripts]
projection_validator = "thd_json.projection:projection_cli"
...
new_data_typ_validator = "thd_json.new_data_typ:new_data_typ_cli"