You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I tried your code, its perfect! It worked well on my laptop except one place.
On line 278 pop_solver.cpp C.block ( 3, 0, 1, 4 ) = Eigen::Vector4d ( 1.0, 1.0, 1.0, 1.0 );
When I run the program, it got stuck here. assertion error. rows and cols != problem.
my fix is C.block ( 3, 0, 1, 4 ) = Eigen::Vector4d ( 1.0, 1.0, 1.0, 1.0 ).transpose();
Good job! I found your result is much much better than OpenCV's epnp!
The text was updated successfully, but these errors were encountered:
@craigstar hi, do you have compare demos? I encountered an error when using this code in my project, so I want to compare OpenCV and this work. May you provide a demo or some suggestions about comparison. Thank you, sincerely.
Hi, I tried your code, its perfect! It worked well on my laptop except one place.
On line 278 pop_solver.cpp
C.block ( 3, 0, 1, 4 ) = Eigen::Vector4d ( 1.0, 1.0, 1.0, 1.0 );
When I run the program, it got stuck here. assertion error. rows and cols != problem.
my fix is
C.block ( 3, 0, 1, 4 ) = Eigen::Vector4d ( 1.0, 1.0, 1.0, 1.0 ).transpose();
Good job! I found your result is much much better than OpenCV's epnp!
The text was updated successfully, but these errors were encountered: