Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是opencv的新手,想知道resize和pryDown/pryUp之间有什么区别,以及如何在它们之间进行选择?
pyrDown()并pyrUp()用于建造金字塔。
pyrDown()
pyrUp()
pyrDown()...执行高斯金字塔构造的下采样步骤。首先,它将源图像与 [a] 内核 [...] 卷积,然后通过拒绝偶数行和列来对图像进行下采样。
和
pyrUp()...执行高斯金字塔构造的上采样步骤...首先,它通过注入甚至零行和列对源图像进行上采样,然后使用与 pyrDown() 中相同的内核乘以 4 对结果进行卷积。
上/下采样本质上类似于最近邻调整大小。
resize()用于调整各种插值模式的大小。
resize()