Search code examples
c++copencvvisual-studio-debugging

When i run the code of curve matching,error comes


I run the code on this page,enter link description here

some error comes.

  1. First,"#include " and "#include "/usr/local/include/eigen3/Eigen/Eigen" " is necesary in the file std.h?I can not find these included file.
  2. Second,when i comment out the code lines "#include " and "#include "/usr/local/include/eigen3/Eigen/Eigen",then i run the code,many error comes,as followenter image description here

I tried,but failed,can someone help me?Thanks in advands!


Solution

  • Eigen is a C++ library for linear algebra that you need to install and include the correct headers.
    The source code seems to target Linux. /usr/local/include/eigen3/Eigen/Eigen implies a unix path.
    You are on Windows, that won't work. you have to modify the code to work.