Reputation: 89
I'm working on a face detection project and want to know if opencv provides support for heic format in imread() and imwrite() methods? Can an image be read using cv2's imread() and written using cv2.imwrite() functions? (Language being used: Python3.6)
Upvotes: 6
Views: 9279
Reputation: 1591
According to the API docs of the latest available OpenCV (5.0-pre), HEIC is still not supported.
Update: As mentioned above, there's a feature request from May'19 in the OpenCV repo, which still has an "Open" status and unfortunately has a "Low" priority.
Upvotes: 5
Reputation: 73
cv2's imread() currently, the following file formats are supported:
Upvotes: 1