biosiglive package
Subpackages
- biosiglive.file_io package
- biosiglive.gui package
- biosiglive.interfaces package
- Submodules
- biosiglive.interfaces.generic_interface module
GenericInterfaceGenericInterface.add_device()GenericInterface.add_marker_set()GenericInterface.get_device()GenericInterface.get_device_data()GenericInterface.get_force_plate_data()GenericInterface.get_frame()GenericInterface.get_frame_number()GenericInterface.get_kinematics_from_marker_set()GenericInterface.get_latency()GenericInterface.get_marker_set()GenericInterface.get_marker_set_data()GenericInterface.init_client()
- biosiglive.interfaces.param module
- biosiglive.interfaces.pytrigno_interface module
- biosiglive.interfaces.tcp_interface module
- biosiglive.interfaces.vicon_interface module
ViconClientViconClient.add_device()ViconClient.add_marker_set()ViconClient.get_device_data()ViconClient.get_force_plate_data()ViconClient.get_frame()ViconClient.get_frame_number()ViconClient.get_kinematics_from_markers()ViconClient.get_latency()ViconClient.get_marker_set_data()ViconClient.init_client()
- Module contents
- biosiglive.processing package
- biosiglive.streaming package
Submodules
biosiglive.enums module
Groups the different enums used in the program. it is a good place to start to check what’s available.
- class biosiglive.enums.DeviceType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of devices that can be used.
- Emg = 'emg'
- ForcePlate = 'force_plate'
- Generic = 'generic'
- Imu = 'imu'
- class biosiglive.enums.InterfaceType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of interfaces that can be used.
- Custom = 'custom'
- PytrignoClient = 'pytrigno_client'
- TcpClient = 'tcp_client'
- ViconClient = 'vicon_client'
- class biosiglive.enums.InverseKinematicsMethods(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of inverse kinematics methods that can be used.
- BiorbdKalman = 'biorbd_kalman'
- BiorbdLeastSquare = 'biorbd_least_square'
- Custom = 'custom'
- class biosiglive.enums.MarkerType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of markers that can be used.
- Labeled = 'labeled'
- Unlabeled = 'unlabeled'
- class biosiglive.enums.OfflineProcessingMethod(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of offline processing methods that can be used.
- CalibrationMatrix = 'calibration_matrix'
- ComputeMvc = 'compute_mvc'
- ProcessEmg = 'process_emg'
- class biosiglive.enums.PlotType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of plots that can be used.
- Curve = 'curve'
- ProgressBar = 'progress_bar'
- Scatter3D = 'scatter3d'
- Skeleton = 'skeleton'
- class biosiglive.enums.RealTimeProcessingMethod(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]
Bases:
EnumThe different types of real time processing methods that can be used.
- CalibrationMatrix = 'calibration_matrix'
- Custom = 'custom'
- GetPeaks = 'get_peaks'
- ProcessEmg = 'process_emg'
- ProcessGenericSignal = 'process_generic_signal'
- ProcessImu = 'process_imu'