Skip to main content

GenDC Python package

Project description

gendc-python

The gendc descriptor comprises main elements: the descriptor the container data

descriptor includes the the container header, the component header, and the part header.

the container data includes all part data

GenDC Containers layout

  • Container Header
    • Component 1 Header (RGB Planar Intensity)
      • Part 1 Header
      • Part 2 Header
      • Part 3 Header
    • Component 2 Header (Range)
      • Part 1 Header
    • Component 3 Header (Metadata)
      • Part 1 Header
        • Part 1 Data (Metadata Chunk)
  • Container Data
    • Part 1 Data (Red plane)
    • Part 2 Data (Green plane)
    • Part 3 Data (Blue plane)
    • Part 1 Data (Range)
    • Part 1 Data (Metadata Chunk)

In this library, we reconstruct each element in following way:

  • Container Header
    • Component 1 Header (RGB Planar Intensity)
      • Part 1 Header
        • Part 1 Data (Red plane)
      • Part 2 Header
        • Part 2 Data (Green plane)
      • Part 3 Header
        • Part 3 Data (Blue plane)
    • Component 2 Header (Range)
      • Part 1 Header
        • Part 1 Data (Range)
    • Component 3 Header (Metadata)
      • Part 1 Header
        • Part 1 Data (Metadata Chunk)

Quick start

from gendc_python.gendc_separator import descriptor

gendc_container = descriptor.Container("binary_gendc_information")

API

Container

gendc_container = descriptor.Container("binary_gendc_information")
  • is_gendc_descriptor(binary_info): Checks if the descriptor in the binary data matches the specific signature for a GENDC descriptor.

    • Parameters:
      • binary_info (bytes): The binary data from which to load the signature.
    • Returns:
      • bool: True if the binary data is GenDC format
  • get_data_size(): Retrieves the size in bytes of the data of the container.

    • Returns:
      • int: total size in bytes of the container data
  • get_descriptor_size(): Retrieves the size in bytes of the descriptor part of the container.

    • Returns:
      • int: total size in bytes of the descriptor
  • get_container_size(): Calculates the total size of the container by adding up data size and descriptor size.

    • Returns:
      • int: total size in bytes of the container
  • get_component_count(): Retrieves the count of components in the container.

    • Returns:
      • int: the count of components in the container.
  • get_1st_component_idx_by_typeid(typeid): Finds the index of the first available component with the specified data type.

  • Parameters:

    • typeid (int): The target type ID to search for in components.
  • Returns:

    • int: The index of the first available component with the matching data type, or -1 if not found.
  • get_1st_component_idx_by_sourceid(sourceid): Finds the index of the first available component with the specified source ID.

    • Parameters:
      • sourceid (int): The target source ID to search for in components.
    • Returns:
      • int: The index of the first available component with the matching data type, or -1 if not found.
  • get_component_by_index(ith_component): Retrieves the component header at the specified index.

    • Parameters:
      • ith_component (int): The index of the component to retrieve.
    • Returns:
      • Component object: The component object at the specified index.
  • get_component_header_value(key, ith_component): Retrieves a specific value from a component's header based on a given key.

    • Parameters:
      • ith_component (int): The index of the component to retrieve.
      • key (str): The value from component header to retrieve.
    • Returns:
      • Any: The value associated with the key from the specified component's header..
  • get_part_header_value(key, ith_component, jth_part): Retrieves a specific value from a part's header within a component based on a given key.

    • Parameters:
      • ith_component (int): The index of the component to retrieve.
      • jth_part (int): The index of the part within the component.
      • key (str): The key of the value from part header to retrieve.
    • Returns:
      • Any: The value associated with the key from the specified part's header within the component.
  • get(key): General method to retrieve a specific value from a container's header based on a given key.

    • Parameters:
      • key (str): The key of the value from part header to retrieve.
    • Returns:
      • Any: The value associated with the key from container header.

Component

  • get_part_count(): Retrieves the count of parts in the component.

    • Parameters:
      • key (str): The key of the value from part header to retrieve.
    • Returns:
      • int: The number of parts.
  • get_part_by_index(jth_part): Retrieves a part based on its index.

    • Parameters:
      • jth_part (int): The index of the part to retrieve.
    • Returns:
      • Part Object: The part header at the specified index.
  • get(key): Retrieves a specific value from container header based on a given key.

    • Parameters:
      • key (str): The key of the value from part header to retrieve.
    • Returns:
      • Any: The value associated with the key from container header.
  • get_part_header_value(key, jth_part): Retrieves a specific value from a part's header based on a given key.

    • Parameters:
      • jth_part (int): The index of the part to retrieve.
    • Returns:
      • Any: The value associated with the key from part header.
  • get(key): General method to retrieve a specific value from current component header based on a given key.

    • Parameters:
      • key (str): The key of the value from current component header to retrieve.
    • Returns:
      • Any: The value associated with the key from current component header.

Part

  • is_data_1D_image(): Determines if the part data is a 1D image based on the header type.

    • Returns:
      • bool: True if the header type indicates a 1D image, otherwise False.
  • is_data_2D_image(): Determines if the part data is a 2D image based on the header type.

    • Returns:
      • bool: True if the header type indicates a 2D image, otherwise False.
  • get_dimension(): Retrieves the dimensions of the data.

    • Returns:
      • list: A list containing the dimensions of the part. Returns an empty list if neither.
  • get_data_size(): Retrieves the size of the data.

    • Returns:
      • int: The size of the data part in bytes
  • get_data_offset(): Retrieves the offset at which the data part starts within the binary file.

    • Returns:
      • int: The offset of the data part in bytes.
  • get_data(): Extracts and returns the data part based on its size and offset.

    • Returns:
      • bytes: The binary data of the part.
  • get(key): General method to retrieve a specific value from current part header based on a given key.

    • Parameters:
      • key (str): The key of the value from current part header to retrieve.
    • Returns:
      • Any: The value associated with the key from current part header.

Reference

GenDC v1.1 by emva https://www.emva.org/wp-content/uploads/GenICam_GenDC_v1_1.pdf

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gendc_python-0.4.1-py3-none-win_amd64.whl (12.4 kB view details)

Uploaded Python 3Windows x86-64

gendc_python-0.4.1-py3-none-manylinux1_x86_64.whl (12.3 kB view details)

Uploaded Python 3

gendc_python-0.4.1-py3-none-macosx_10_9_universal2.whl (12.3 kB view details)

Uploaded Python 3macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file gendc_python-0.4.1-py3-none-win_amd64.whl.

File metadata

  • Download URL: gendc_python-0.4.1-py3-none-win_amd64.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for gendc_python-0.4.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb3a5981b607fb9e96f515b47d6dcb6d63bc0e805d6873c20bdace0f2a036868
MD5 dda4fb54703891c0cd5dcc6dfbb7f710
BLAKE2b-256 0a608034381f0cff0d9ccddb3a3bdd92801c3ead4be276ca51cca527c13c158c

See more details on using hashes here.

File details

Details for the file gendc_python-0.4.1-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gendc_python-0.4.1-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c2fa44129e594e3ed7275fee8c4213913f2f8fb562617db232581df46f55b431
MD5 962f974f0598d2ca41150cd4c591e069
BLAKE2b-256 a7b394e20d79514f2601a728147847e12e0bed872e7bc5cf0a713dd54e19ad4d

See more details on using hashes here.

File details

Details for the file gendc_python-0.4.1-py3-none-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for gendc_python-0.4.1-py3-none-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80839e9246d99030d92bec0a5788d4993ae2baf5593a0e42d67386f2aec77c5f
MD5 0ec17067cd088b349ec54353162bb201
BLAKE2b-256 3e4ca2c21fa163ca140f74b6f9367e7ee04c714335aac4d949ef473cd2d24dc6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page