-
Notifications
You must be signed in to change notification settings - Fork 17
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
feat: Add gaze.transforms.smooth() #555
Conversation
for more information, see https://pre-commit.ci
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #555 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 52 52
Lines 2258 2289 +31
Branches 559 570 +11
=========================================
+ Hits 2258 2289 +31
☔ View full report in Codecov by Sentry. |
for more information, see https://pre-commit.ci
* Fix First line should end with a period (not 'g')
…nto feature/add-transforms-smooth
* use rounded up half of window_length as padding length * add tests for all smoothing methods
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
Adding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for this great work!
Description
Fixes issue #301
Implemented changes
Implementation of transforms.smooth function for smoothing data. The following methods have been
implemented
Type of change
How Has This Been Tested?
Tested smoothing methods by applying them to a simple 2D array with values
[[0., 0.], [1., 1.], [0., 0.]]
.Checklist: