I have a form that uploads an image to my view; the uploaded image type is:
<code><class 'django.core.files.uploadedfile.InMemoryUploadedFile'>
</code>
<code><class 'django.core.files.uploadedfile.InMemoryUploadedFile'>
</code>
<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 ?