Subversion Repositories seema-scanner

Rev

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

Rev 180 Rev 181
Line -... Line 1...
-
 
1
//
-
 
2
// Two Frequency Phase Shifting using the Heterodyne Principle
-
 
3
//
-
 
4
// This implementation follows "Reich, Ritter, Thesing, White light heterodyne principle for 3D-measurement", SPIE (1997)
-
 
5
// Different from the paper, it uses only two different frequencies.
-
 
6
//
-
 
7
// The number of periods in the primary (higher frequency) can in principle be chosen freely, but small changes can have a considerable impact on quality.
-
 
8
// The number of phase shifts can be chosen freely (min. 3), and higher values reduce the effects of image noise. They also allow us to filter bad points based on energy at non-primary frequencies.
-
 
9
//
-
 
10
 
1
#include "AlgorithmPhaseShiftTwoFreq.h"
11
#include "AlgorithmPhaseShiftTwoFreq.h"
2
#include <math.h>
12
#include <math.h>
3
 
13
 
4
#include "cvtools.h"
14
#include "cvtools.h"
5
 
15