Subversion Repositories seema-scanner

Rev

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

Rev 137 Rev 162
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"
5
#include "AlgorithmPhaseShiftTwoFreq.h"
6
#include "AlgorithmPhaseShiftTwoFreq.h"
6
#include "AlgorithmPhaseShiftThreeFreq.h"
7
#include "AlgorithmPhaseShiftThreeFreq.h"
7
#include "AlgorithmLineShift.h"
8
#include "AlgorithmLineShift.h"
8
 
9
 
9
#include <QCoreApplication>
10
#include <QCoreApplication>
Line 38... Line 39...
38
 
39
 
39
    if(codec == "GrayCode")
40
    if(codec == "GrayCode")
40
        algorithm = new AlgorithmGrayCode(resX, resY);
41
        algorithm = new AlgorithmGrayCode(resX, resY);
41
    else if(codec == "GrayCodeHorzVert")
42
    else if(codec == "GrayCodeHorzVert")
42
        algorithm = new AlgorithmGrayCodeHorzVert(resX, resY);
43
        algorithm = new AlgorithmGrayCodeHorzVert(resX, resY);
-
 
44
    else if(codec == "GrayCodeMax")
-
 
45
        algorithm = new AlgorithmGrayCodeMax(resX, resY);
43
    else if(codec == "PhaseShiftTwoFreq")
46
    else if(codec == "PhaseShiftTwoFreq")
44
        algorithm = new AlgorithmPhaseShiftTwoFreq(resX, resY);
47
        algorithm = new AlgorithmPhaseShiftTwoFreq(resX, resY);
45
    else if(codec == "PhaseShiftThreeFreq")
48
    else if(codec == "PhaseShiftThreeFreq")
46
        algorithm = new AlgorithmPhaseShiftThreeFreq(resX, resY);
49
        algorithm = new AlgorithmPhaseShiftThreeFreq(resX, resY);
47
    else if(codec == "LineShift")
50
    else if(codec == "LineShift")