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.
嗨,要使用 matlab 检测碱基和高频,我想像图片中一样将 25% 的图像像素设置为 0,有人知道我该怎么做
谢谢你
![将中心像素置零][1]
![将边界像素置零][2]
假设您有一个img100x80 的图像并且您希望将中间的 25% 设置为零,您可以这样做:
img
img(26:75,21:60) = 0;
概括这一点应该不难。
您可能也有兴趣将它们设置为NaN而不是 0,只需尝试一下。
NaN