Skip to content

Commit

Permalink
TopoAdj params order
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmuller committed Sep 12, 2024
1 parent 1da871f commit 545e6a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MMVII/Doc/CommandReferences/SysCo.tex
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ \subsection{Adjustment}
\begin{verbatim}
== Mandatory unnamed args : ==
* string [Topo,In] :: Dir for Topo measures
* string [Topo,Out] :: Dir for Topo measures output
* string [PointsMeasure,In] :: Dir for points initial coordinates
* string [Topo,Out] :: Dir for Topo measures output
* string [PointsMeasure,Out] :: Dir for points final coordinates
== Optional named args : ==
Expand All @@ -366,7 +366,7 @@ \subsection{Adjustment}
In our example, the input topo directory is \texttt{Obs1} and the input PointsMeasure is \texttt{InitRTL}.
We give output directories names for topo and points.
\begin{lstlisting}
MMVII TopoAdj Obs1 Obs1_out InitRTL FinalRTL
MMVII TopoAdj Obs1 InitRTL Obs1_out FinalRTL
\end{lstlisting}

The final $\sigma_0$ value should be around 1 if everything goes well.
Expand Down
2 changes: 1 addition & 1 deletion MMVII/MMVII-UseCaseDataSet/TopoMini/Cmd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ MMVII GCPChSysCo "RTL*657700*6860700*0*IGNF:LAMB93" InitL93 InitRTL
MMVII ImportOBS inputs/meas.obs Obs1

# adjust
MMVII TopoAdj Obs1 Obs1_out InitRTL FinalRTL
MMVII TopoAdj Obs1 InitRTL Obs1_out FinalRTL

# export to L93
MMVII GCPChSysCo L93 FinalRTL FinalL93
4 changes: 2 additions & 2 deletions MMVII/src/BundleAdjustment/cAppliTopoAdj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ cCollecSpecArg2007 & cAppliTopoAdj::ArgObl(cCollecSpecArg2007 & anArgObl)
{
return anArgObl
<< mPhProj.DPTopoMes().ArgDirInMand("Dir for Topo measures")
<< mPhProj.DPPointsMeasures().ArgDirInMand("Dir for initial coordinates")
<< mPhProj.DPTopoMes().ArgDirOutMand("Dir for Topo measures output")
<< mPhProj.DPPointsMeasures().ArgDirInMand("Dir for points initial coordinates")
<< mPhProj.DPPointsMeasures().ArgDirOutMand("Dir for points final coordinates")
<< mPhProj.DPPointsMeasures().ArgDirOutMand("Dir for final coordinates")
;
}

Expand Down

0 comments on commit 545e6a6

Please sign in to comment.