Uploading image files to managed folder
Buse
Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 4 ✭
Hello,
I need to pull images from a folder, transform it and upload it to another folder using python script.
I pulled and transformed the images but I have trouble saving to destination folder. upload_data takes binary data not image data. Other upload methods requires "local file path"
Anyway other method I can use?
Thank you
Tagged:
Best Answer
-
You could use some code similar to this sample code:
import dataiku, io from PIL import Image import numpy as np a = np.asarray(img) img1 = Image.fromarray(a,'RGB') buf=io.BytesIO() img1.save(buf, format='PNG') folder_handle = dataiku.Folder("3wglEqHl") folder_handle.upload_stream("/Monimage7.jpg", buf.getvalue())
Answers
-
This is about the uploading image in managed folder but How we can read the image present in the managed folder of Dataiku?
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,088 Neuron
Please start a new thread.