I am trying to build this simple visualization example using VS2010:
http://pointclouds.org/documentation/tutorials/pcl_visualizer.php
I have linked all .lib files (both pcl and 3rdparty) however I get a bunch of unresolved external symbol errors all of which are happening on vtkRendering-gd.lib and seem to be OpenGL related like the following:
vtkRendering-gd.lib(vtkOpenGLTexture.obj) : error LNK2001: unresolved external symbol __imp_glPopAttrib
vtkRendering-gd.lib(vtkOpenGLRenderer.obj) : error LNK2001: unresolved external symbol __imp_glPopAttrib
vtkRendering-gd.lib(vtkOpenGLRepresentationPainter.obj) : error LNK2001: unresolved external symbol __imp_glPopAttrib
vtkRendering-gd.lib(vtkOpenGLLight.obj) : error LNK2001: unresolved external symbol __imp_glPopMatrix
I am on a x64 Windows 7 machine, and I have installed the x64 version of PCL using the all-in-one installer.
Thanks for your help.