我正在将RGB图像转换为YCbCr,然后想要计算拉普拉斯金字塔。在颜色转换之后,我正在试验OpenCV的图像金字塔教程中的代码,找到图像的拉普拉斯金字塔,然后重建原始图像。但是,如果我将代码中的级别数增加到更高的数字(例如10),则重建的图像(转换回RGB后)与原始图像看起来不一样(图像看起来模糊 - 请参见下面的链接确切的图像)。我不确定为什么会这样。它是否会在级别增加或代码中出现任何错误时发生?
frame = cv2.cvtColor(frame_RGB, cv2.COLOR_BGR2YCR_CB)
height = 10
Gauss = frame.copy()
gpA = [Gauss]
for i in xrange(height):
Gauss = cv2.pyrDown(Gauss)
gpA.append(Gauss)
lbImage = [gpA[height-1]]
for j in xrange(height-1,0,-1):
GE = cv2.pyrUp(gpA[j])
L = cv2.subtract(gpA[j-1],GE)
lbImage.append(L)
ls_ = lbImage[0]
for j in range(1,height,1):
ls_ = cv2.pyrUp(ls_)
ls_ = cv2.add(ls_,lbImage[j])
ls_ = cv2.cvtColor(ls_, cv2.COLOR_YCR_CB2BGR)
cv2.imshow("Pyramid reconstructed Image",ls_)
cv2.waitKey(0)
供参考,请参阅重建图像和原始图像。
答案 0 :(得分:1)
pyrDown模糊图像并对其进行下采样,丢失一些信息。保存的金字塔等级(此处为gpA[]
)包含越来越小的图像矩阵,但不保留被拒绝的信息详细信息(高频信息)。
如此重建的图像无法显示所有原始细节
来自教程: Note: When we reduce the size of an image, we are actually losing information of the image.
答案 1 :(得分:0)
请勿使用np.add()
或np.substract()
。他们执行剪辑。使用direct - 和+矩阵运算符。换句话说,使用:
L = gpA[j-1] - GE
而不是:
L = cv2.subtract(gpA[j-1],GE)