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 方法可以(高斯)平滑 3 通道(RGB)图像中的 1 个通道?
任何 Python 或 C 或 C++ OpenCV 都可以。
您可以使用Split将图像拆分为其通道,然后Filter2D在其中一个组件上使用。
Split
Filter2D
Split(src, src_r, src_g, src_b) Smooth(src_r, dst_r) Merge(dst_r, src_g, src_b, dst)