-
Notifications
You must be signed in to change notification settings - Fork 481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is RunSFM_Ceres? #61
Comments
No, you do not need to implement this function yourself. It is defined in BundleCeres.cpp. However, to compile with that functionality, you need to uncomment the "# USE_CERES=true" line in src/Makefile. |
Can I use ceres by adding BundlerCeres.cpp to Source Files with Visual Studio 2013? |
Yes, though you will also have to add the define __USE_CERES__ to the
build, and also tell the linker to link to the appropriate Ceres libraries.
…On Mon, Mar 12, 2018 at 11:34 PM aki34 ***@***.***> wrote:
Can I use ceres by adding BundlerCeres.cpp to Source Files with Visual
Studio 2013?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt6q6NeV_eWDQY1XGH2JglSKYcXb00yks5tdz45gaJpZM4Sb4lR>
.
|
In BundleCeres.cpp, sys/time.h is included but I can't use it in windows. So what should I do? |
I can make time.h file from here. |
Glad to hear it, and sorry for the difficulty compiling. Are you interested
in contributing your patch to the repository as a push request?
Noah
…On Wed, Mar 21, 2018 at 8:34 PM aki34 ***@***.***> wrote:
I can make time.h file from here.
https://stackoverflow.com/questions/10905892/equivalent-of-gettimeday-for-windows
By adding #undef ERROR to time.h after #include <windows.h>, I built
bundler_sfm.
Thank you for your support.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt6q993GNuDFAvm_lVbuoBlEm21ukUOks5tgv-1gaJpZM4Sb4lR>
.
|
I sent pull request just now. |
Hi
I wonder where RunSFM_Ceres is implemented.
According to header file(BundleApp.h), the function is not defined.
If I want to use Ceres solver, do I have to implement it?
The text was updated successfully, but these errors were encountered: