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.
nlfilter我知道matlab中有一个函数。我试图找到的是4-neighbours一个像素。这是否意味着一个2x2窗口?我们可以这样做nlfilter吗?
nlfilter
4-neighbours
2x2
谢谢。
我想如果你从街区而不是邻居的角度来考虑它,你可能会发现这更容易理解。所以一个 2x2 的邻居实际上只是一个 2x2 的块。
如果您谈论的是相对于北、南、东、西像素的中心像素,那么您将需要使用 3x3 块。不幸的是,该街区还将包括东北、西北、东南、西南邻国。
这是在 Matlab 中使用 nlfilter 进行滑动邻域运算的示例。