From what I understand, fl_image accepts a pipeline function that should only accept a single image, i.e. processedClip = input_file.fl_image(imagePipeline)
where
def imagePipeline(img):
....
return finalImage
But what if our imagePipeline function takes in more arguments
i.e.
def imagePipeline(img, arg1, arg2, arg3):
...
return finalImage
How can we add arguments to our imagePipeline in fl_image?