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.
有一些问题弄清楚这一点。我有一个 488x520x3 RGB 图像。如果我想处理特定像素数 (x,y) 处的 R、G 或 B 强度值...如何做到这一点?
谢谢大家
m顶部像素和左侧像素的n像素可以引用为
m
n
rgb_vals = img_data(m,n,:);
其中 的三个元素分别rgb_vals代表红、绿、蓝。这是因为您使用矩阵表示法(行,列)而不是笛卡尔坐标(x,y)进行索引。
rgb_vals