在Matlab中使用OpenGL获取深度缓冲区
我之前问过类似的问题,但没有找到直接的答案。
有人可以提供示例代码,用于将对象渲染的深度缓冲区提取到 Matlab 中的图形中吗?
假设我加载一个 obj 文件,甚至只是一个简单的 surf 调用,渲染它,现在想要访问它的深度缓冲区,那么什么代码将使用 Matlab 和 OpenGL 来为我做到这一点。即我如何设置它然后访问实际数据?
我本质上希望能够使用 Matlab 强大的绘图函数,然后能够访问底层图形上下文以获取深度缓冲区。
注意:赏金指定了 JOGL,但这不是必须的。任何如上操作并在 Matlab 中运行后可以为我提供深度缓冲区的代码就足够了)
Ive asked a similar question before and didnt manage to find a direct answer.
Could someone provide sample code for extracting the depth buffer of the rendering of an object into a figure in Matlab?
So lets say I load an obj file or even just a simple surf call, render it and now want to get to its depth buffer then what code will do that for me using both Matlab and OpenGL. I.e. how do I set this up and then access the actual data?
I essentially want to be able to use Matlabs powerful plotting functions and then be able to access the underlying graphics context for getting the depth buffer out.
NOTE: The bounty specifies JOGL but that is not a must. Any code which acts as above and can provide me with the depth buffer after running it in Matlab is sufficient)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
今天,我和同事一起去喝酒,喝了五杯啤酒和一些龙舌兰酒后,我发现了这个问题并想,“来吧!”所以我挣扎了一段时间,但后来我找到了一个使用 MEX 的简单解决方案。我推测由最后一个窗口创建的 OpenGL 上下文可以保持活动状态,因此如果脚本在同一线程中运行,则可以从“C”访问。
我创建了一个简单的“C”程序,它调用一个名为“testofmyfilter”的 matlab 函数,该函数绘制滤波器的频率响应(这是我手头唯一的脚本)。这是使用 OpenGL 渲染的。然后程序使用 glGetViewport() 和 glReadPixels() 来获取 OpenGL 缓冲区。然后它创建一个矩阵,用深度值填充它,并将其传递给第二个函数,称为“trytodisplaydepthmap”。它只是使用 imshow 函数显示深度图。请注意,MEX 函数也允许返回值,因此也许后处理不必是另一个函数,但我无法理解它是如何完成的。不过应该是微不足道的。我今天第一次与 MEX 合作。
事不宜迟,我使用了源代码:
testofmyfilter.m
test.c
trytodisplaydepthmap.m:
将所有这些保存到同一目录,编译 test.c(将其输入到 Matlab 控制台):
其中“Q:\ MATLAB \ R2008a\sys\lcc\lib\opengl32.lib”是“opengl32.lib”文件的路径。
最后只需在 matlab 控制台中输入“test”即可执行所有操作。它应该打开一个带有滤波器频率响应的窗口,以及另一个带有深度缓冲区的窗口。请注意,在“C”代码读取深度缓冲区时,前缓冲区和后缓冲区会交换,因此可能需要运行脚本两次才能获得结果(因此现在包含结果的前缓冲区再次与后缓冲区交换,并且可以读出深度)。这可以由“C”自动完成,或者您可以尝试包含 getframe(gcf);在脚本的末尾(也从 OpenGL 读回,以便它为您交换缓冲区或其他内容)。
这在 Matlab 7.6.0.324 (R2008a) 中适用于我。该脚本运行并输出以下内容:
当然它会显示图像。请注意,深度缓冲区范围取决于 Matlab,并且可能非常高,因此对生成的图像进行任何理解可能并不简单。
Today, I went drinking with my colleagues, and after five beers and some tequillas I found this question and thought, "have at ya!" So I was struggling for a while but then I found a simple solution using MEX. I theorized that the OpenGL context, created by the last window, could be left active and therefore could be accessible from "C", if the script ran in the same thread.
I created a simple "C" program which calls one matlab function, called "testofmyfilter" which plots frequency response of a filter (that was the only script I had at hand). This is rendered using OpenGL. Then the program uses glGetViewport() and glReadPixels() to get to the OpenGL buffers. Then it creates a matrix, fills it with the depth values, and passes it to the second function, called "trytodisplaydepthmap". It just displays the depthmap using the imshow function. Note that the MEX function is allowed to return values as well, so maybe the postprocessing would not have to be another function, but I'm in no state to be able to understand how it's done. Should be trivial, though. I'm working with MEX for the first time today.
Without further delay, there are source codes I used:
testofmyfilter.m
test.c
trytodisplaydepthmap.m:
Save all of these to the same directory, compile test.c with (type that to Matlab console):
Where "Q:\MATLAB\R2008a\sys\lcc\lib\opengl32.lib" is path to "opengl32.lib" file.
And finally execute it all by merely typing "test" in matlab console. It should bring up a window with filter frequency response, and another window with the depth buffer. Note the front and back buffers are swapped at the moment "C" code reads the depth buffer, so it might be required to run the script twice to get any results (so the front buffer which now contains the results swaps with back buffer again, and the depth can be read out). This could be done automatically by "C", or you can try including getframe(gcf); at the end of your script (that reads back from OpenGL as well so it swaps the buffers for you, or something).
This works for me in Matlab 7.6.0.324 (R2008a). The script runs and spits out the following:
And of course it displays the images. Note the depth buffer range depends on Matlab, and can be quite high, so making any sense of the generated images may not be straightforward.
猪的答案是正确的。
这是一个稍微格式化且更简单的跨平台版本。
创建一个名为 mexGetDepth.c 的文件
然后,如果您在 Windows 上使用 编译
,或者如果您在 nix 系统上
然后运行以下小脚本来测试新函数
the swine's answer is the correct one.
Here is a slightly formatted and simpler version that is cross-platform.
Create a file called mexGetDepth.c
Then if youre on windows compile using
or if youre on a nix system
Then run the following small script to test out the new function