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

Rolling window boolean (onset / termination) #7

Open
Peder2911 opened this issue Mar 11, 2021 · 1 comment
Open

Rolling window boolean (onset / termination) #7

Peder2911 opened this issue Mar 11, 2021 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@Peder2911
Copy link
Contributor

A "rolling window boolean" is a convolution of a 2-d vector, combined with a boolean operation.
This transform allows us to expose "onset" and "termination" transformations, where each value is the product of either the preceding or the following value:

0,0,1,1,1,0,0

results in

0,0,1,0,0,0,0

or

0,0,0,0,0,1,0

The crafty user would maybe "implement" this themselves by combining conditional and delta transforms (change in gt_0/lt_1)

@Peder2911 Peder2911 changed the title Rolling window boolean Rolling window boolean (onset / termination) Mar 11, 2021
@Peder2911
Copy link
Contributor Author

This is added via a port from ViEWS 2 I think. Demonstration remains.

@Peder2911 Peder2911 self-assigned this Oct 8, 2021
@Peder2911 Peder2911 added the enhancement New feature or request label Oct 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant