我应该与 3D 眼镜一起使用什么(屏幕)颜色?
在清理阁楼时,我发现了一副3D眼镜,左“眼睛”是蓝色,右“眼睛”是红色。只是为了好玩,我创建了一个程序,用红色和蓝色绘制一个立方体(边缘),这样它就应该在 3D 眼镜中呈现出三维效果。
绘制立方体时我选择了纯红色(255,0,0)和纯蓝色(0,0,255)。据我所知,数学是正确的,但看着立方体感觉很不自然。我猜这是因为一只眼睛看到的立方体颜色与右眼不同。
那么,我可以通过改变颜色来增强观看体验吗?如果是这样,我会使用什么颜色?
While cleaning up the attic, I found a pair of 3d-glasses with the left "eye" being blue and the right one being red. Just for the fun of it, I then created a program that draws a cube (the edges) in red and blue such that it should appear three dimensional with the 3d glasses.
I chose pure red (255, 0, 0) and pure blue (0, 0, 255) when drawing the cube. As far as I can see, the math is correct, but it feels quite unnatural looking at the cube. I guess this is because the one eye sees the cube in different colors than the right eye.
So, could I enhance the viewing experience by altering the colors? And if so, what colors would I use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
制作浮雕有一些技巧。虽然写得不好,但维基百科文章触及了一些关键点:
http://en.wikipedia.org/wiki /Anaglyph_image
There are some tricks for producing anaglyphs. While not well written, the Wikipedia article touches on some key points:
http://en.wikipedia.org/wiki/Anaglyph_image
如果我是你,我会在这样的页面上查看 pdf,选择我想要的颜色认为最合适,然后使用这样的程序找到这些颜色的RGB值。
If I were you, I would view the pdfs on a page like this, pick the colours I thought were most appropriate, then find the rgb values of those colours using a program like this.