Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions docs/api/processors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Available Processors
- ``AudioProcessor``: For audio signal data
- ``SignalProcessor``: For general signal data (e.g., EEG, ECG)
- ``TimeseriesProcessor``: For time-series data
- ``TimeImageProcessor``: For time-stamped image sequences (e.g., serial X-rays)
- ``TensorProcessor``: For pre-processed tensor data
- ``RawProcessor``: Pass-through processor for raw data

Expand Down Expand Up @@ -270,6 +271,7 @@ Common string keys for automatic processor selection:
- ``"audio"``: For audio data
- ``"signal"``: For signal data
- ``"timeseries"``: For time-series data
- ``"time_image"``: For time-stamped image sequences
- ``"tensor"``: For pre-processed tensors
- ``"raw"``: For raw/unprocessed data

Expand Down Expand Up @@ -459,6 +461,7 @@ API Reference
processors/pyhealth.processors.AudioProcessor
processors/pyhealth.processors.SignalProcessor
processors/pyhealth.processors.TimeseriesProcessor
processors/pyhealth.processors.TimeImageProcessor
processors/pyhealth.processors.TensorProcessor
processors/pyhealth.processors.RawProcessor
processors/pyhealth.processors.IgnoreProcessor
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
pyhealth.processors.TimeImageProcessor
=======================================

Processor for time-aware image data.

.. autoclass:: pyhealth.processors.TimeImageProcessor
:members:
:undoc-members:
:show-inheritance:
Loading