Home > Back-end >  Help bosses, the problem of 3 d reconstruction.
Help bosses, the problem of 3 d reconstruction.

Time:04-13

I am a beginner in VTK platform in the run of 3 d reconstruction program
Source code https://blog.csdn.net/HW140701/article/details/72721974#comments_15881908
(a)
Are not able to run through at the beginning, but I through the search, at the beginning of the code to add the following three lines, there is no error
#include
VTK_MODULE_INIT (vtkRenderingOpenGL2);

VTK_MODULE_INIT (vtkRenderingFreeType);
Results clearly incorrect, and the original url of the gap is too large, as shown:


And
The generated output Windows will have warning:
Warning: In D: \ VTK, VTK - 8.2.0, Rendering, Core \ vtkInteractorStyleSwitchBase CXX, line 39
VtkInteractorStyleSwitchBase a7ae7b5a20 (000001) : Warning: the Link to vtkInteractionStyle for default style selection.

(2)
Then I through the comparison, but through comparing online almost all I need to add code is required to join the following four lines,
#include
VTK_MODULE_INIT (vtkRenderingOpenGL2);
VTK_MODULE_INIT (vtkInteractionStyle);
VTK_MODULE_INIT (vtkRenderingFreeType);
But along with the complete four line (line 2) later I will have "cannot resolve the external symbol of" error, as shown:


Could you tell me how to solve you?

CodePudding user response:

Help!!!!!!!!!!
  • Related