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.
我有一个灰度 uint8 图像:
I = ones(100,100) * 50; I = uint8(I); imshow(I);
现在,如果我尝试使用“数据光标”读取像素值,它会显示灰色像素的 RGB 值。
有没有办法用数据游标获得灰色的 0...255 值?
当您使用数据光标时,它应该显示为“索引”值,例如“索引:50”。
我的数据光标框如下所示:
X: 63 Y: 43 Index: 50 RGB: 0, 0, 0