cv2.imread不能正常讀取gif格式圖片
Python中cv2模組的imread函式呆以正常讀取'jpg','png'格式的圖片,但是不能處理'gif'圖片。可以改用imageio模組來處理。
import cv2
import imageio
def readImg(im_fn):
im = cv2.imread(im_fn)
if im is None :
print('{} cv2.imread failed'.format(im_fn))
tmp = imageio.mimread(im_fn)
if tmp is not None:
imt = np.array(tmp)
imt = imt[0]
im = imt[:,:,0:3]
return im
help(imageio.mimread)
mimread(uri, format=None, memtest=True, **kwargs)
mimread(uri, format=None, memtest=True, **kwargs)
#可以同時讀取多個檔案,返回num arrays列表
Reads multiple images from the specified file. Returns a list of
numpy arrays, each with a dict of meta data at its 'meta' attribute.
Parameters
----------
uri : {str, bytes, file}
The resource to load the images from, e.g. a filename, http address or
file object, see the docs for more info.
format : str
The format to use to read the file. By default imageio selects
the appropriate for you based on the filename and its contents.
memtest : bool
If True (default), this function will raise an error if the
resulting list of images consumes over 256 MB of memory. This
is to protect the system using so much memory that it needs to
resort to swapping, and thereby stall the computer. E.g.
``mimread('hunger_games.avi')``.
kwargs : ...
Further keyword arguments are passed to the reader. See :func:`.help`
to see what arguments are available for a particular format.
相關文章
- MATLAB學習之gif圖片讀取顯示Matlab
- python--字串格式化用於批量讀取圖片Python字串格式化
- 讀取本地圖片地圖
- 怎麼把Excel 表格轉成PNG、JPEG、GIF圖片格式 ?Excel
- 聊一聊幾種常用web圖片格式:gif、jpg、png、webpWeb
- GIF動圖怎麼製作?GIF圖片製作
- 【學習圖片】05:GIF
- LaTeX 中插入GIF圖片
- csdn上傳gif圖不能新增水印
- python opencv讀取網路圖片PythonOpenCV
- ARKit 如何給SCNNode貼Gif圖片CNN
- 編輯最愛,輕鬆製作GIF圖片,這幾款MacOS工具不能少!Mac
- 圖片格式-AVIF
- 常用圖片格式
- 濃縮的才是精華:淺析GIF格式圖片的儲存和壓縮
- Windows10系統不能複製圖片格式如何解決Windows
- 03 #### 讀取靜態檔案-圖片
- Python如何讀取pdf中的圖片Python
- win10不能看gif怎麼辦_win10系統下gif圖片打不開要怎麼辦Win10
- GifCam,Gif動態圖片截圖小軟體
- 影片直播原始碼,載入gif圖片原始碼
- Excel 讀取圖片並獲取儲存路徑Excel
- win10照片庫檢視器無法檢視gif圖片怎麼辦_win10自帶照片檢視器不能看gif圖片如何解決Win10
- win10系統中gif圖不能動怎麼解決_win10系統中gif圖不能動如何處理Win10
- Java 讀取PDF中的文字和圖片Java
- phpSpreadsheet 讀取圖片並另存為檔案PHP
- 在讀取資料時拼接圖片域名
- html將圖片讀取為base64格式預覽並傳到伺服器HTML伺服器
- FileReader()讀取檔案、圖片上傳預覽
- Java 讀取Word表格中的文字和圖片Java
- MATLAB讀取圖片遇到長寬的問題Matlab
- GifGun for Mac(快速輸出GIF動圖格式AE外掛)Mac
- 一道指令快速解決MAC不能預覽WebP格式圖片問題MacWeb
- 一文讀懂 Web 開發中常見的圖片格式Web
- 怎麼轉換圖片格式並壓縮圖片
- 圖片格式轉換,JPG圖片轉換成PDF
- phpSpreadsheet Artisan command 讀取圖片並另存為檔案PHP
- Java 讀取Word文字框中的文字/圖片/表格Java