Skip to content

Commit

Permalink
solver core - non-cached markers use overscaned Marker positions.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cattermole committed Feb 12, 2023
1 parent be25a5e commit fb8d384
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mmSolver/adjust/adjust_measureErrors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ void measureErrors_mayaDag(const int numberOfErrors,
mkr_x = mkr_mpos.x;
mkr_y = mkr_mpos.y;
#else
status = marker->getPosXY(mkr_x, mkr_y, frame, timeEvalMode);
bool applyOverscan = true;
status =
marker->getPosXY(mkr_x, mkr_y, frame, timeEvalMode, applyOverscan);
CHECK_MSTATUS(status);
#endif

Expand Down

0 comments on commit fb8d384

Please sign in to comment.