如何在 SIMULINK 中有效地对矩阵进行阈值处理(消除噪声)
我正在做一些光流,并且有一个速度矩阵,但是我想丢弃(用零替换)低于某个阈值的条目。是否有一个方便的模块可以在矩阵信号上执行此操作?
I am doing some optical flow and I have a matrix of velocities, however I would like to discard (replace with zero) the entries which are below a certain threshold. Is there a convenient block that does this on a matrix signal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那会是这样的:
That would be like:
使用 Simulink,您可以使用查找表,方法为“Interp-Extrap”,输入向量 [0 th th (th+1)],表数据 [0 0 th (th+1)],其中 'th' 为阈值。
在 0 和 'th' 之间,结果为 0,高于 'th',它是线性的。
With Simulink, you can use a lookup table with method 'Interp-Extrap", Vector of inputs [0 th th (th+1)], table data [0 0 th (th+1)], with 'th' your threshold.
Between 0 and 'th', result is 0, upper that 'th', it's linear.
如果您可以容忍几个块(显示的阈值为 1):
if you can tolerate a few blocks (threshold of 1 shown):