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.
我有一个图像,其中包含 3 个图像 1 在另一个下方。
有没有办法可以将图像分成三个相等的部分?
你可以使用imcrop。参考这篇文章:如何在matlab中分割图像
这在stackoverflow上:如何在matlab中划分图像
rgb = imread('ngc6543a.jpg'); r = rgb(:, :, 1); g = rgb(:, :, 2); b = rgb(:, :, 3);