and is it possible to use the single commands, in particular denoise, from the terminal as single programs?
And if so how?
The following test.py works:
import cv2
import gimpml
image = cv2.imread('sampleinput/img.png')
out = gimpml.kmeans(image)
cv2.imwrite('output/tmp-kmeans.jpg', out)
out = gimpml.deblur(image)
cv2.imwrite('output/tmp-deblur.jpg', out)
(with the command python3 test.py).
But for denoise i don’t know how to do.