Coder Social home page Coder Social logo

orb-slam3forwindows's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

orb-slam3forwindows's Issues

opencv4 & cv.h

Opencv/cv.h file was cancelled in opencv4, I used opencv2/opencv.hpp instead,
but in PnPsolver.h and PnPsolver.cc, cvMat is used for svd calculation.
Because opencv2 cancels the definitions of cvMat and cvSVD, So if opencv4 is used, how to solve these problems?
I think you are using opencv3.4.1. There should be the same problem. How did you solve it?

Unresolved external symbol __imp_(...)

Hello! I'm trying to build mono_inertial_euroc, but I get the following error:
I'm using Windows 10 with VirtualBox.

Error LNK2019 unresolved external symbol __imp_strerror referenced in function png_image_begin_read_from_file mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\libpng16_static.lib(pngread.obj) 1
Error LNK2001 unresolved external symbol __imp_strerror mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\libpng16_static.lib(pngwrite.obj) 1
Error LNK2019 unresolved external symbol __imp_ferror referenced in function png_image_write_to_file mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\libpng16_static.lib(pngwrite.obj) 1
Error LNK2019 unresolved external symbol __imp_remove referenced in function png_image_write_to_file mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\libpng16_static.lib(pngwrite.obj) 1
Error LNK2019 unresolved external symbol __imp_atof referenced in function png_get_sCAL mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\libpng16_static.lib(pngget.obj) 1
Error LNK2019 unresolved external symbol __imp___stdio_common_vsscanf referenced in function sscanf mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\jpeg.lib(jmemmgr.obj) 1
Error LNK2001 unresolved external symbol __CxxFrameHandler4 mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\g2o.lib(property.obj) 1
Error LNK2001 unresolved external symbol __CxxFrameHandler4 mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\g2o.lib(optimization_algorithm_with_hessian.obj) 1
Error LNK2001 unresolved external symbol __CxxFrameHandler4 mono_inertial_euroc C:\Users\ivan\Source\Repos\ORB-SLAM3forWindows\build\g2o.lib(robust_kernel_factory.obj) 1

Having an error in defining usleep function and std::chrono::monotonic_clock

Hi,
Can you please let me know what usleep function you added in the example?
Since I have got an error by defining the following usleep finction and also got an error in line 181 of mono_inertial_euroc.cc std::chrono::monotonic_clock::time_point time2 = std::chrono::monotonic_clock::now();: which it said "Error (active) E0304 no instance of function template "std::chrono::duration_cast" matches the argument list mono_inertial_euroc"

#include <windows.h>
void usleep(__int64 usec)
{
HANDLE timer;
LARGE_INTEGER ft;

ft.QuadPart = -(10*usec); // Convert to 100 nanosecond interval, negative value indicates relative time

timer = CreateWaitableTimer(NULL, TRUE, NULL); 
SetWaitableTimer(timer, &ft, 0, NULL, NULL, 0); 
WaitForSingleObject(timer, INFINITE); 
CloseHandle(timer); 

}

I would greatly appreciate it if you could help me.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.