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.
我想显示图像并允许鼠标悬停以显示像素值 - 就像在 impixelinfo 函数中一样。 问题是 - 我以反比例(1./image)显示图像,但希望显示的值是原始值。 有什么办法吗?
一种可能的解决方法 - 将您的原始图像作为透明层放在顶部,为用户留下可见图像(1./image)和 impixelinfo 从中获取数据的不可见图像。
imshow(1./image); hold on h = imshow(image); set(h, 'AlphaData', zeros(size(image))); impixelinfo