Bundle Adjustment
Hi,
I am wondering if the OpenCV implementation for Java contains some Bundle-Adjustment. If not do you have any tips which libary I can use? I've googled a lot and only found boofCV and JavaCV but it seems those libaries are not very easy to use with openCV data.
Thanks
unfortunately, there's no such thing in opencv's java wrappers.
(there is a LevMarqSparse BundleAdjuster in the c++ legacy api, but it's using outdated api structures, and ppl complained about it being unstable)
if you're not afraid of JNI, wrapping ssba-3.0 might be the way.
So there is the only way to rewrite the OpenCV Java Android App in C++ using the NDK and then include SSBA-3.0?
oh, boofCV actually seems to have something similar.
did you succeed in compiling SSBA for Android? or did you find any other bundle adjuster?