-
Notifications
You must be signed in to change notification settings - Fork 2
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
[WIP] Feature multi marker #6
base: dev
Are you sure you want to change the base?
Conversation
@@ -25,11 +25,17 @@ void TrackerMM::setup(string camParamFile, string multiFile, int maxImagePattern | |||
|
|||
// Initialize a Single Marker Tracker with | |||
// Camera and near and far clipping values for the OpenGL projection matrix | |||
if (!tracker->init(camParamFile.c_str(), multiFile.c_str(), 1.0f, 1000.0f)) { | |||
/*if (!tracker->init(camParamFile.c_str(), multiFile.c_str(), 1.0f, 1000.0f)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i had troble loading both files, now i will develop my init function:
in this commit only load the camera but we can load the multi file and calib file separately.
loading config file fails, i suppose becauseit should loaded as in the old jsartoolkit5 code: |
In this PR i will try to add the Multi Marker feature.