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

[Feature] Webcam video processing for remote physiology (rPPG, ...) (EXPLORATORY) #736

Merged
merged 16 commits into from
Nov 1, 2022
Merged
6 changes: 5 additions & 1 deletion docs/functions/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ I/O
""""""""""""""""""
.. autofunction:: neurokit2.data.read_bitalino

*read_video()*
""""""""""""""""""
.. autofunction:: neurokit2.data.read_video

*write_csv()*
"""""""""""""""
.. autofunction:: neurokit2.data.write_csv
Expand All @@ -27,4 +31,4 @@ I/O

.. automodule:: neurokit2.data
:members:
:exclude-members: data, read_acqknowledge, read_bitalino, write_csv
:exclude-members: data, read_acqknowledge, read_bitalino, write_csv, read_video
1 change: 1 addition & 0 deletions docs/functions/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ You can find here the API documentation of NeuroKit, with a description of all t
emg
eog
eeg
video
Microstates <microstates>
Signal <signal>
events
Expand Down
6 changes: 5 additions & 1 deletion docs/functions/misc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ Misc
""""""""""""""""""""""""""
.. autofunction:: neurokit2.misc.parallel_run

*progress_bar()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.misc.progress_bar

*replace()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.misc.replace
Expand All @@ -54,5 +58,5 @@ Misc

.. automodule:: neurokit2.misc
:members:
:exclude-members: check_type, expspace, find_closest, find_consecutive, find_groups, find_outliers, find_plateau, intervals_to_peaks, listify, parallel_run, replace, as_vector, find_knee
:exclude-members: check_type, expspace, find_closest, find_consecutive, find_groups, find_outliers, find_plateau, intervals_to_peaks, listify, parallel_run, progress_bar, replace, as_vector, find_knee

19 changes: 19 additions & 0 deletions docs/functions/video.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Video Analysis
---------------

*video_plot()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.video.video_plot

*video_face()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.video.video_face

*video_skin()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.video.video_skin

*video_ppg()*
""""""""""""""""""""""""""
.. autofunction:: neurokit2.video.video_ppg

3 changes: 1 addition & 2 deletions neurokit2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@
from .misc import *
from .ppg import *
from .rsp import *

# Export functions
from .signal import *
from .stats import *
from .video import *

# Info
__version__ = "0.2.2"
Expand Down
Loading