run_process
Instantiate and run any PixInsight process by name, assign parameters as JSON, and execute on a view or globally.
Instructions
Instantiate any PixInsight process by its PJSR constructor name, assign JSON-valued parameters onto the instance, and execute it on a view (when view_id is given) or globally (when it is omitted). Generic fallback for processes with no dedicated tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | PJSR process constructor name, e.g. "SCNR". | |
| params | No | Property name to JSON-valued setting, assigned on the process instance before it runs. | |
| view_id | No | View to run the process on. Omit to run the process globally instead. |