# SMQTK-Descriptors **Repository Path**: mirrors_Kitware/SMQTK-Descriptors ## Basic Information - **Project Name**: SMQTK-Descriptors - **Description**: Algorithms and data structures around computing descriptor vectors from input data. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-16 - **Last Updated**: 2026-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SMQTK - Descriptors ## Intent This package aims to provide interfaces for algorithms and data structures around computing descriptor vectors from input data. This package also includes a utility function that can map an arbitrary function to some set of input iterables, not unlike the python `map`, except that this version is parallelized across threads or processes. This function also does not block and may be used for parallelized stream processing. ## Documentation You can build the sphinx documentation locally for the most up-to-date reference: ```bash # Install dependencies poetry install # Navigate to the documentation root. cd docs # Build the docs. poetry run make html # Open in your favorite browser! firefox _build/html/index.html ```