Source code for prosi3d.sensors.viscamera

""" Subclass from Abstract Base Class featureExtractor that outputs features of the raw data that are required for machine learning models """

import numpy as np

from prosi3d.meta.featureExtractor import FeatureExtractor

[docs]class Viscamera(FeatureExtractor): """ Attribute: xxx: xxx. xxx: xxx. """
[docs] def get_data(self): """ Beschreibung """ pass
[docs] def process(self): """ Beschreibung """ pass
[docs] def write(self): """ Beschreibung """ pass
[docs] def get_feature(self): """ Beschreibung """ pass