Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added imu_timeline.py to shared_modules #2151

Merged
merged 23 commits into from Jul 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
24f5412
Added imu_timeline.py to shared_modules
N-M-T Jun 21, 2021
8a74e01
Merge branch 'develop' into pupil-labs-neil-develop
romanroibu Jun 22, 2021
8ca8ba3
Apply black
romanroibu Jun 22, 2021
a1510d9
Add IMUTimeline plugin to the list of player plugins
romanroibu Jun 22, 2021
9f4bab7
Only enable IMUTimeline plugin in Player for Pupil Invisible recordings
romanroibu Jun 22, 2021
46887fa
Extract code enumerating IMU files
romanroibu Jun 22, 2021
7a8622e
Update IMUTimeline.is_available_within_context to prevent loading the…
romanroibu Jun 22, 2021
d1f8853
Remove all other checks for valid recording
romanroibu Jun 22, 2021
510ad9e
Add time limit to background fetch in IMUTimeline.recent_events
romanroibu Jun 23, 2021
b5be8ba
Merge pull request #4 from pupil-labs/develop
N-M-T Jun 23, 2021
78e0652
Use new imu timeline icon
papr Jul 5, 2021
78a226a
Improve performance when calculating timeline y-axis limits
papr Jul 5, 2021
496c369
Limit timeline plotting to a maximum of 4000 samples
papr Jul 5, 2021
8c7d700
Make plugin settings persistent
papr Jul 5, 2021
58bf3d7
Sort imports
papr Jul 5, 2021
929f080
Rename variables
papr Jul 5, 2021
ce23d6a
Cache orientation data
papr Jul 5, 2021
89d3030
Start fusing after timeline setup
papr Jul 5, 2021
9f2d037
Reduce recalculation delay after changing parameter
papr Jul 5, 2021
3fc7736
Allow displaying the orient. timeline while the orientation is still …
papr Jul 5, 2021
c053f71
Ensure a minimum difference between the y-axis limits to avoid OpenGL…
papr Jul 5, 2021
9f99550
Display timelines by default and document gyro_error value priority
papr Jul 5, 2021
696b5f5
Tidy up plugin description
N-M-T Jul 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions pupil_src/launchables/player.py
Expand Up @@ -123,6 +123,7 @@ def player(
from gaze_producer.gaze_from_offline_calibration import (
GazeFromOfflineCalibration,
)
from imu_timeline import IMUTimeline
from pupil_detector_plugins.detector_base_plugin import PupilDetectorPlugin
from system_graphs import System_Graphs
from system_timelines import System_Timelines
Expand Down Expand Up @@ -194,6 +195,7 @@ def interrupt_handler(sig, frame):
iMotions_Exporter,
Eye_Video_Exporter,
Offline_Head_Pose_Tracker,
IMUTimeline,
] + runtime_plugins

plugins = system_plugins + user_plugins
Expand Down