主頁(yè) > 知識(shí)庫(kù) > OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐

OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐

熱門標(biāo)簽:佛山400電話辦理 所得系統(tǒng)電梯怎樣主板設(shè)置外呼 小蘇云呼電話機(jī)器人 北瀚ai電銷機(jī)器人官網(wǎng)手機(jī)版 北京電銷外呼系統(tǒng)加盟 朝陽(yáng)手機(jī)外呼系統(tǒng) 市場(chǎng)上的電銷機(jī)器人 地圖標(biāo)注面積 儋州電話機(jī)器人

原圖:

圖像信息,可以看到圖像是一個(gè)816*2100像素的圖片:

python代碼:

import cv2
import numpy as np
import matplotlib.pyplot as plt
 
img = cv2.imread('11.jpg', 0)
img1 = img.astype('float')
img_dct = cv2.dct(img1)
img_dct_log = np.log(abs(img_dct))
img_recor = cv2.idct(img_dct)
recor_temp = img_dct[0:100,0:100]
recor_temp2 = np.zeros(img.shape)
recor_temp2[0:100,0:100] = recor_temp
print recor_temp.shape
print recor_temp2.shape
img_recor1 = cv2.idct(recor_temp2)
plt.subplot(221)
plt.imshow(img)
plt.title('original')
plt.subplot(222)
plt.imshow(img_dct_log)
plt.title('dct transformed')
plt.subplot(223)
plt.imshow(img_recor)
plt.title('idct transformed')
plt.subplot(224)
plt.imshow(img_recor1)
plt.title('idct transformed2')
 
plt.show()

僅僅提取一個(gè)100*100的DCT系數(shù)后的效果:

當(dāng)用800*1000的DCT系數(shù):

可以看到圖像細(xì)節(jié)更豐富了一些:

import cv2
import numpy as np
import matplotlib.pyplot as plt
 
img = cv2.imread('11.jpg', 0)
img1 = img.astype('float')
img_dct = cv2.dct(img1)
img_dct_log = np.log(abs(img_dct))
img_recor = cv2.idct(img_dct)
recor_temp = img_dct[0:800,0:1000]
recor_temp2 = np.zeros(img.shape)
recor_temp2[0:800,0:1000] = recor_temp
print recor_temp.shape
print recor_temp2.shape
img_recor1 = cv2.idct(recor_temp2)
plt.subplot(221)
plt.imshow(img)
plt.title('original')
plt.subplot(222)
plt.imshow(img_dct_log)
plt.title('dct transformed')
plt.subplot(223)
plt.imshow(img_recor)
plt.title('idct transformed')
plt.subplot(224)
plt.imshow(img_recor1)
plt.title('idct transformed2')
 
plt.show()

當(dāng)用816*1200的DCT系數(shù):

可以看出圖像恢復(fù)到原來(lái)的質(zhì)量了.

分析代碼:

img_dct保存的是dct變換后的矩陣,img_dct_log是矩陣中的元素首先取絕對(duì)值,再求對(duì)數(shù)的矩陣.

img_dct_log = np.log(abs(img_dct))

那么對(duì)數(shù)的底是多少呢?

打印出來(lái)img_dct_log和abs(img_dct)看一下:

打印結(jié)果:

其中9.45971865e+04=9.45971865 x 10^4 =94597.1865表示的是科學(xué)計(jì)數(shù)法.

我們看到只有在底數(shù)取e的時(shí)候,對(duì)應(yīng)的對(duì)數(shù)才符合題目輸出要求,所以,python numpy.log函數(shù)取的是以自然常數(shù)e為地的對(duì)數(shù).

到此這篇關(guān)于OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐的文章就介紹到這了,更多相關(guān)OpenCV 圖片編解碼內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • python opencv通過(guò)按鍵采集圖片源碼
  • Opencv判斷顏色相似的圖片示例代碼
  • C++ opencv ffmpeg圖片序列化實(shí)現(xiàn)代碼解析
  • 用opencv給圖片換背景色的示例代碼
  • python opencv把一張圖片嵌入(疊加)到另一張圖片上的實(shí)現(xiàn)代碼
  • python opencv實(shí)現(xiàn)gif圖片分解的示例代碼
  • python opencv圖片編碼為h264文件的實(shí)例
  • 10個(gè)步驟Opencv輕松檢測(cè)出圖片中條形碼

標(biāo)簽:定西 云南 江蘇 龍巖 酒泉 金融催收 商丘 寧夏

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐》,本文關(guān)鍵詞  OpenCV,實(shí)現(xiàn),圖片,編,解碼,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于OpenCV實(shí)現(xiàn)圖片編解碼實(shí)踐的相關(guān)信息資訊供網(wǎng)民參考!
  • 企业400电话

    智能AI客服机器人
    15000

    在线订购

    合计11份范本:公司章程+合伙协议+出资协议+合作协议+股权转让协议+增资扩股协议+股权激励+股东会决议+董事会决议

    推薦文章