Config saving of pipeline in/out

This commit is contained in:
2025-08-03 17:16:13 +02:00
parent 9801f69d0b
commit bfb4db633d
8 changed files with 303 additions and 136 deletions

View File

@ -1,34 +1,77 @@
[
{
"widget_type": "OpenImageWidget",
"config": {}
{
"pipeline_order": {
"0": "opened_image",
"1": "inverted_image",
"2": "opened_raw",
"3": "monochrome"
},
{
"widget_type": "PipelineStageViewer",
"config": {}
},
{
"widget_type": "InvertStage",
"config": {}
},
{
"widget_type": "OpenRawWidget",
"config": {}
},
{
"widget_type": "LogWindowWidget",
"config": {}
},
{
"widget_type": "MonochromeStage",
"config": {}
},
{
"widget_type": "HistogramWidget",
"config": {}
},
{
"widget_type": "ExportStage",
"config": {}
}
]
"widgets": [
{
"widget_type": "OpenImageWidget",
"config": {
"pipeline_config": {
"stage_in": null,
"stage_out": 0
}
}
},
{
"widget_type": "PipelineStageViewer",
"config": {
"pipeline_config": {
"stage_in": 3,
"stage_out": null
}
}
},
{
"widget_type": "InvertStage",
"config": {
"pipeline_config": {
"stage_in": 2,
"stage_out": 1
}
}
},
{
"widget_type": "OpenRawWidget",
"config": {
"pipeline_config": {
"stage_in": null,
"stage_out": 2
}
}
},
{
"widget_type": "LogWindowWidget",
"config": {}
},
{
"widget_type": "MonochromeStage",
"config": {
"pipeline_config": {
"stage_in": 1,
"stage_out": 3
}
}
},
{
"widget_type": "HistogramWidget",
"config": {
"pipeline_config": {
"stage_in": 3,
"stage_out": null
}
}
},
{
"widget_type": "ExportStage",
"config": {
"pipeline_config": {
"stage_in": 3,
"stage_out": null
}
}
}
]
}