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.
是否有经验法则或数学方程式告诉我(一维离散)高斯内核对于某个 sigma 应该有多宽?
可以说,我选择 1.87 的 sigma,我的内核应该是 5 个值/步长/像素宽,7 还是 25,以便执行标准化的图像平滑处理?谢谢你。
选择一个您认为可以忽略的阈值,例如T = 0.01. 然后解决exp(-x^2/(2s^2)) / sqrt(2pi s^2) < T:
T = 0.01
exp(-x^2/(2s^2)) / sqrt(2pi s^2) < T
|x| < s sqrt(-2 ln(sqrt(2pi s^2) T))
右侧为您提供宽度。对于s = 1.87和T = 0.01,这为您提供了 4 个像素的宽度。
s = 1.87