Visual Studio 2017 Freezes when I move mouse over Mat keyword (OpenCv 3.4.1)

前端 未结 4 1576
灰色年华
灰色年华 2021-02-03 12:47

I want to develop openCv project in Visual Studio 2017. I downloaded the opencv pre-build libraries and made necessary settings. That is:

1) I added System Path ..

相关标签:
4条回答
  • 2021-02-03 13:25

    It is still unfixed until 15.7.4 which was published today.

    0 讨论(0)
  • 2021-02-03 13:34

    It seems the problem is related with VS2017, I tried on VS2015 and did not get such an error.

    0 讨论(0)
  • 2021-02-03 13:36

    You can disable the Auto Quick Info option by starting at the top menu and navigating to Tools, Options, Text Editor, C/C++, Advanced and under IntelliSense change the value for Auto Quick Info to False.

    This will turn all of the Quick Info helpers off, but will at least keep the project from freezing.

    0 讨论(0)
  • 2021-02-03 13:44

    This error is caused due to a long comment about Mat. Look for mat.hpp files in your include directory of opencv (use search to find) >> go to Mat function definition >> remove the multiline comment before Mat definition.

    There are two mat.hpp files in the include directory. Follow the steps in both.

    Save the files. Restart Visual Studio and enjoy !!

    0 讨论(0)
提交回复
热议问题