I’m using Siril 1.4.0-beta3 commit 7d0a3c0 and when trying to use GraXpert AI script, I realize that the dialog was different and version now is 1.1.3
None of the available operation works. When pressing ‘Apply’ I can only see this message on screen:
Would process single image with XXXXXXX operation
And nothing is displayed on the console view.
I’ve tried to uninstall, install it again, but the same.
Running the following command from console:
pyscript GraXpert-AI.py -denoise -model=“3.0.2” -batch=4 -gpu -smoothing=0.5 -correction=“subtration”
displays the following output:
17:02:40: Running command: pyscript
17:02:42: opencv-python is installed
17:02:42: Detected ONNX Runtime with providers: [‘OpenVINOExecutionProvider’, ‘CPUExecutionProvider’]
17:02:42: ONNX Runtime is already installed: onnxruntime-intel
17:02:42: e[33mWARNING: onnxruntime-openvino is not built with CUDA 12.x support. Please install a version that supports CUDA 12.x, or call preload_dlls with cuda=False and cudnn=False.e[0m
17:02:42: CLI mode - would handle command line arguments here
Looking at the script, this is an excerpt of the code:
def process_single_image(self, operation, batch_size, gpu_acceleration):
“”“Process a single image”“”
self.progress_label.setText(“Processing image…”)# This would be implemented with the actual processing classes # For now, just show a message QMessageBox.information(self, "Processing", f"Would process single image with {operation} operation") self.progress_label.setText("Processing complete")
So, looks like it’s doing nothing.
Previous script worked fine. Is there any repository where I can download old scipts?
Or would somebody share an older script?
Thks in advance