python opencv cv2.imdecode()函数(从内存中的缓冲区读取图像)
生活随笔
收集整理的這篇文章主要介紹了
python opencv cv2.imdecode()函数(从内存中的缓冲区读取图像)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
from cv2.__init__.py
def imdecode(buf, flags): # real signature unknown; restored from __doc__"""imdecode(buf, flags) -> retval. @brief Reads an image from a buffer in memory.從內存中的緩沖區讀取圖像。. . The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or. contains invalid data, the function returns an empty matrix ( Mat::data==NULL ).函數imdecode從內存中的指定緩沖區讀取圖像。 如果緩沖區太短或包含無效數據,則該函數返回一個空矩陣(Mat :: data == NULL)。. . See cv::imread for the list of supported formats and flags description.. . @note In the case of color images, the decoded images will have the channels stored in **B G R** order.對于彩色圖像,解碼后的圖像將具有以** B G R **順序存儲的通道。. @param buf Input array or vector of bytes.輸入數組或字節向量。. @param flags The same flags as in cv::imread, see cv::ImreadModes."""pass總結
以上是生活随笔為你收集整理的python opencv cv2.imdecode()函数(从内存中的缓冲区读取图像)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python numpy np.from
- 下一篇: opencv python cv2.im