Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a6bde95
WIP qualisys_interface - copy from vicon
ophlariviere Apr 5, 2024
004a874
Adding the Qualisys client on interface type class
ophlariviere Apr 9, 2024
d15c2b1
set up of qualisys client, client init, add device PF
ophlariviere Apr 9, 2024
da304bb
Perform Qualisys interface
ophlariviere May 13, 2024
01b4a60
QTM data extraction needed for QualysisClient
ophlariviere May 16, 2024
fa89a14
All def adaptation
ophlariviere May 17, 2024
a2da35c
Qualisys interface added
ophlariviere May 24, 2024
fc26c51
Debug in process
ophlariviere May 24, 2024
98bfdf4
Test to of Qualisys client
ophlariviere May 24, 2024
0b26866
Merge branch 'qualysis_ophelie' of https://github.com/ophlariviere/bi…
ophlariviere May 24, 2024
525ec25
Bug in add device data and get force data fix
ophlariviere May 30, 2024
ff248e8
An example to streamdata with QualisysClient
ophlariviere May 30, 2024
280d346
Error fixed on QualisysClient and exemple
ophlariviere Jun 3, 2024
df64b05
WIP Perform force data saving
ophlariviere Aug 29, 2024
d9fb689
A code to send stim during walking propulsive phase
ophlariviere Aug 29, 2024
5a89c9b
Modification on FrocePlateData
ophlariviere Oct 9, 2024
4eb6954
add get makers names
ophlariviere Oct 17, 2024
71cbff9
Gestion of makers names
ophlariviere Oct 17, 2024
088dffa
update for running with 49mksmodel
ophlariviere Oct 18, 2024
6010078
Improve get force data
ophlariviere Dec 2, 2024
ae715c9
A server between Qualisys and another PC
ophlariviere Dec 2, 2024
9b1571c
resolution pb pf
ophlariviere Dec 18, 2024
a9596ea
upgrade pf data storage
ophlariviere Jan 13, 2025
58162da
code state on the 20th of January (Charbie)
ophlariviere Jan 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions biosiglive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from .interfaces.pytrigno_interface import PytrignoClient
from .interfaces.vicon_interface import ViconClient
from .interfaces.qualisys_interface import QualisysClient
from .interfaces.generic_interface import GenericInterface
from .interfaces.tcp_interface import TcpClient
from .interfaces.param import Param, Device, MarkerSet
Expand Down
2 changes: 1 addition & 1 deletion biosiglive/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class InterfaceType(Enum):
PytrignoClient = "pytrigno_client"
TcpClient = "tcp_client"
Custom = "custom"

QualisysClient = "qualisys_client"

class DeviceType(Enum):
"""
Expand Down
Loading