noise
This is the code to start the visualization of the noise mode, which will be used to view noise statistics of the retina chip.
setup_noise_plots(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
required | ||
CURRENT_THEME |
required | ||
themes |
required | ||
NUM_CHANNELS_PER_BUFFER |
required |
Source code in src/controller/modes/mode_noise.py
def setup_noise_plots(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER):
"""
Args:
app:
CURRENT_THEME:
themes:
NUM_CHANNELS_PER_BUFFER:
Returns:
"""
# (1) load the Qt Designer template
uic.loadUi("./src/view/layouts/NoiseWindow.ui", app)
# (2) set the functions to continually update charts in the GUI
app.charts = {
"channelTracesVerticalLayout": app.channelTraceLayout,
"channelTraces": [app.channelTrace1, app.channelTrace2, app.channelTrace3, app.channelTrace4],
"noiseHistogram": app.noiseHistogramPlot,
"noiseHeatMap": app.noiseHeatMap
}
app.chart_update_function_mapping = {
"channelTraces": update_channel_trace_plot,
"noiseHistogram": update_noise_histogram_plot,
"noiseHeatMap": update_noise_heat_map
}
app.chart_update_extra_params = {
"channelTraces": app.charts["channelTraces"],
"noiseHistogram": None,
"noiseHeatMap": None
}
app.CHART_MIN_TIME_TO_REFRESH = {
"channelTraces": 1,
"noiseHistogram": 2,
"noiseHeatMap": 4
}
app.charts["noiseHeatMap"].setTitle("Noise Heat Map", size="12pt")
setupSpikeTrace(app.charts["channelTraces"], CURRENT_THEME, themes)
setupNoiseHistogramPlot(app.charts["noiseHistogram"], CURRENT_THEME, themes)
# (3) Set up additional functionality
pass