cvkit package
Subpackages
- cvkit.pose_estimation package
- Subpackages
- Submodules
- cvkit.pose_estimation.config module
AnnotationConfigCameraViewsDEFAULT_THRESHOLDPoseEstimationConfigPoseEstimationConfig.annotation_viewsPoseEstimationConfig.axis_rotation_3DPoseEstimationConfig.body_partsPoseEstimationConfig.colorsPoseEstimationConfig.computed_scalePoseEstimationConfig.frameratePoseEstimationConfig.num_partsPoseEstimationConfig.output_folderPoseEstimationConfig.project_namePoseEstimationConfig.reconstruction_algorithmPoseEstimationConfig.rotation_matrixPoseEstimationConfig.scalePoseEstimationConfig.skeletonPoseEstimationConfig.thresholdPoseEstimationConfig.translation_vectorPoseEstimationConfig.views
save_config
- cvkit.pose_estimation.skeleton module
- cvkit.pose_estimation.utils module
- Module contents
- cvkit.video_readers package
- Submodules
- cvkit.video_readers.cv2_reader module
- cvkit.video_readers.decord_reader module
- cvkit.video_readers.deffcode_reader module
- cvkit.video_readers.image_sequence_reader module
- cvkit.video_readers.video_reader_interface module
BaseVideoReaderInterfaceBaseVideoReaderInterface.FLAVORBaseVideoReaderInterface.get_current_frameBaseVideoReaderInterface.get_current_indexBaseVideoReaderInterface.get_number_of_framesBaseVideoReaderInterface.next_frameBaseVideoReaderInterface.pauseBaseVideoReaderInterface.random_access_imageBaseVideoReaderInterface.releaseBaseVideoReaderInterface.seek_pos
- Module contents
Submodules
cvkit.utils module
- MAGIC_NUMBER = -4668
Magic number used to represent missing data
Module contents
- class MetaProcessor(plugin_name, processor_type, processor_class)[source]
Bases:
objectIt contains Metadata for the Processor class. It contains the Processor class, the name of the package it belongs, and the type of the processor.
- Parameters:
plugin_name (str) – Name of the plugin to which the processor belongs.
processor_type (str) – Indicates whether it is “generative”,”filter”, or “util”
processor_class (:py:class`~cvkit.pose_estimation.processors.processor_interface.Processor`) – Reference to the Processor class
- get_processor_class(processor_id)[source]
Get Processor class from the Processor ID.
- Parameters:
processor_id (str) – Unique identifier for a Processor
- Returns:
Processor class
- Return type:
class
- register_processor(processor: MetaProcessor)[source]
Registers discovered Processor.
- Parameters:
processor (
MetaProcessor) – The metadata of the plugin that is to be registered.