I have a form that uploads an image to my view; the uploaded image type is:
<class 'django.core.files.uploadedfile.InMemoryUploadedFile'>
I want to process the image though; thus I need it in PIL or CV2 format.
How can I do that ?
I have a form that uploads an image to my view; the uploaded image type is:
<class 'django.core.files.uploadedfile.InMemoryUploadedFile'>
I want to process the image though; thus I need it in PIL or CV2 format.
How can I do that ?