如何在 SIMULINK 中有效地对矩阵进行阈值处理(消除噪声)

发布于 2024-10-16 04:04:13 字数 72 浏览 2 评论 0原文

我正在做一些光流,并且有一个速度矩阵,但是我想丢弃(用零替换)低于某个阈值的条目。是否有一个方便的模块可以在矩阵信号上执行此操作?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

佼人 2024-10-23 04:04:13

那会是这样的:

> M= randn(100, 100);
> M(abs(M)< .1)= 0;
> sum(sum(0== M))
ans =  795

That would be like:

> M= randn(100, 100);
> M(abs(M)< .1)= 0;
> sum(sum(0== M))
ans =  795
世俗缘 2024-10-23 04:04:13

使用 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.

酒儿 2024-10-23 04:04:13

如果您可以容忍几个块(显示的阈值为 1):

在此处输入图像描述

if you can tolerate a few blocks (threshold of 1 shown):

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文