Line 1... |
Line 1... |
1 |
#include "SMCaptureWorker.h"
|
1 |
#include "SMCaptureWorker.h"
|
2 |
|
2 |
|
3 |
#include "AlgorithmGrayCode.h"
|
3 |
#include "AlgorithmGrayCode.h"
|
4 |
#include "AlgorithmGrayCodeHorzVert.h"
|
4 |
#include "AlgorithmGrayCodeHorzVert.h"
|
5 |
#include "AlgorithmPhaseShiftTwoFreq.h"
|
5 |
#include "AlgorithmPhaseShiftTwoFreq.h"
|
- |
|
6 |
#include "AlgorithmPhaseShiftTwoFreqHorzVert.h"
|
6 |
#include "AlgorithmPhaseShiftThreeFreq.h"
|
7 |
#include "AlgorithmPhaseShiftThreeFreq.h"
|
7 |
#include "AlgorithmPhaseShiftEmbedded.h"
|
8 |
#include "AlgorithmPhaseShiftEmbedded.h"
|
8 |
#include "AlgorithmLineShift.h"
|
9 |
#include "AlgorithmLineShift.h"
|
9 |
|
10 |
|
10 |
#include <QCoreApplication>
|
11 |
#include <QCoreApplication>
|
Line 65... |
Line 66... |
65 |
algorithm = new AlgorithmGrayCodeHorzVert(screenCols, screenRows);
|
66 |
algorithm = new AlgorithmGrayCodeHorzVert(screenCols, screenRows);
|
66 |
else if(codec == "PhaseShiftTwoFreq")
|
67 |
else if(codec == "PhaseShiftTwoFreq")
|
67 |
algorithm = new AlgorithmPhaseShiftTwoFreq(screenCols, screenRows);
|
68 |
algorithm = new AlgorithmPhaseShiftTwoFreq(screenCols, screenRows);
|
68 |
else if(codec == "PhaseShiftThreeFreq")
|
69 |
else if(codec == "PhaseShiftThreeFreq")
|
69 |
algorithm = new AlgorithmPhaseShiftThreeFreq(screenCols, screenRows);
|
70 |
algorithm = new AlgorithmPhaseShiftThreeFreq(screenCols, screenRows);
|
- |
|
71 |
else if(codec == "PhaseShiftTwoFreqHorzVert")
|
- |
|
72 |
algorithm = new AlgorithmPhaseShiftTwoFreqHorzVert(screenCols, screenRows);
|
70 |
else if(codec == "PhaseShiftEmbedded")
|
73 |
else if(codec == "PhaseShiftEmbedded")
|
71 |
algorithm = new AlgorithmPhaseShiftEmbedded(screenCols, screenRows);
|
74 |
algorithm = new AlgorithmPhaseShiftEmbedded(screenCols, screenRows);
|
72 |
else if(codec == "LineShift")
|
75 |
else if(codec == "LineShift")
|
73 |
algorithm = new AlgorithmLineShift(screenCols, screenRows);
|
76 |
algorithm = new AlgorithmLineShift(screenCols, screenRows);
|
74 |
else
|
77 |
else
|