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 中 RGB 图像的 3 个维度是多少?
在 matlab 中,我的彩色图像采用 am*n*3 矩阵形式,3 维表示什么?如果你跳过第三维,我会丢失任何数据吗?
据我所知,在坐标 m,n 处,值是一个像素,第三维是什么?
例如是
B(1,2,3)=B(1,2)
???
第三个维度是颜色通道。它代表红色,绿色和蓝色。
B(1,2,3) 是位于第 1 行第 2 列的像素的蓝色通道。
是颜色!以三元组的形式表示每种颜色的强度 (R,G,B)。如果你跳过第三个维度,你的图片将只显示一个颜色通道的阴影——我认为是红色。