gpt4 book ai didi

opencv - 不平滑的下采样

转载 作者:太空宇宙 更新时间:2023-11-03 20:49:49 25 4
gpt4 key购买 nike

在 OpenCV 2.3.1 中是否有一种内置的方法可以在没有事先高斯平滑的情况下对图像进行下采样(由 pyrDown C++ 函数执行)。

谢谢。

最佳答案

也许您正在寻找 resize() .

# Python code:
import cv2
large_img = cv2.imread('our_large_image.jpg')
small_to_large_image_size_ratio = 0.2
small_img = cv2.resize(large_img, # original image
(0,0), # set fx and fy, not the final size
fx=small_to_large_image_size_ratio,
fy=small_to_large_image_size_ratio,
interpolation=cv2.INTER_NEAREST)

代替 interpolation=cv2.INTER_NEAREST 您可以使用 these interpolation methods 中的任何一个.

关于opencv - 不平滑的下采样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10431919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com