RemoveBufferProcessor
Tiles processor that removes the buffer of channels
Implements the TilesProcessor protocol.
| PARAMETER | DESCRIPTION |
|---|---|
channel_names
|
Channel name, channel names, no channels (False or None), or all channels (True)
TYPE:
|
from_config
classmethod
Creates a remove buffer processor from the configuration.
| PARAMETER | DESCRIPTION |
|---|---|
config
|
Configuration |
| RETURNS | DESCRIPTION |
|---|---|
RemoveBufferProcessor
|
Remove buffer processor |
RemoveBufferProcessorConfig
Bases: pydantic.BaseModel
Configuration for the from_config class method of RemoveBufferProcessor
Create the configuration from a config file
- Use null instead of None
- Use false or true instead of False or True
Example
You can create the configuration from a config file.
package: 'aviary'
name: 'RemoveBufferProcessor'
config:
channel_names: true
| ATTRIBUTE | DESCRIPTION |
|---|---|
channel_names |
Channel name, channel names, no channels (False or None), or all channels (True) - defaults to True
TYPE:
|