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.
我想在英特尔 IPP 或 OpenCV 中使用过滤器功能。关于锚点的位置存在争论,我不知道它们是什么或如何使用它们。
什么是锚点,它的用途是什么?
假设您使用带有内核(或掩码大小或类似内容)的过滤器。锚点定义了内核相对于过滤操作期间当前处理的像素的定位方式。
锚点是一个IppiPoint,即具有成员x和的结构y。这是当前处理的像素在内核中的坐标。通常,它被设置为中心,即kernelWidth/2和kernelHeight/2。
IppiPoint
x
y
kernelWidth/2
kernelHeight/2
最初,我声称锚点是线性索引。对不起,那是错误的。