Subversion Repositories seema-scanner

Rev

Rev 180 | Rev 183 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 180 Rev 182
Line 1... Line 1...
1
#include "SMReconstructionWorker.h"
1
#include "SMReconstructionWorker.h"
2
 
2
 
3
#include "AlgorithmGrayCode.h"
3
#include "AlgorithmGrayCode.h"
4
#include "AlgorithmGrayCodeHorzVert.h"
4
#include "AlgorithmGrayCodeHorzVert.h"
5
#include "AlgorithmGrayCodeMax.h"
-
 
6
#include "AlgorithmPhaseShiftTwoFreq.h"
5
#include "AlgorithmPhaseShiftTwoFreq.h"
7
#include "AlgorithmPhaseShiftThreeFreq.h"
6
#include "AlgorithmPhaseShiftThreeFreq.h"
8
#include "AlgorithmLineShift.h"
7
#include "AlgorithmLineShift.h"
9
 
8
 
10
#include <QCoreApplication>
9
#include <QCoreApplication>
Line 41... Line 40...
41
 
40
 
42
    if(codec == "GrayCode")
41
    if(codec == "GrayCode")
43
        algorithm = new AlgorithmGrayCode(resX, resY);
42
        algorithm = new AlgorithmGrayCode(resX, resY);
44
    else if(codec == "GrayCodeHorzVert")
43
    else if(codec == "GrayCodeHorzVert")
45
        algorithm = new AlgorithmGrayCodeHorzVert(resX, resY);
44
        algorithm = new AlgorithmGrayCodeHorzVert(resX, resY);
46
    else if(codec == "GrayCodeMax")
-
 
47
        algorithm = new AlgorithmGrayCodeMax(resX, resY);
-
 
48
    else if(codec == "PhaseShiftTwoFreq")
45
    else if(codec == "PhaseShiftTwoFreq")
49
        algorithm = new AlgorithmPhaseShiftTwoFreq(resX, resY);
46
        algorithm = new AlgorithmPhaseShiftTwoFreq(resX, resY);
50
    else if(codec == "PhaseShiftThreeFreq")
47
    else if(codec == "PhaseShiftThreeFreq")
51
        algorithm = new AlgorithmPhaseShiftThreeFreq(resX, resY);
48
        algorithm = new AlgorithmPhaseShiftThreeFreq(resX, resY);
52
    else if(codec == "LineShift")
49
    else if(codec == "LineShift")