HistogramPhaseUnwrapping Constructor |
http://www.emgu.com
Create a HistogramPhaseUnwrapping instance
Namespace:
Emgu.CV.PhaseUnwrapping
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic HistogramPhaseUnwrapping(
int width = 800,
int height = 600,
float histThresh = 29.60881f,
int nbrOfSmallBins = 10,
int nbrOfLargeBins = 5
)
Public Sub New (
Optional width As Integer = 800,
Optional height As Integer = 600,
Optional histThresh As Single = 29.60881F,
Optional nbrOfSmallBins As Integer = 10,
Optional nbrOfLargeBins As Integer = 5
)
public:
HistogramPhaseUnwrapping(
int width = 800,
int height = 600,
float histThresh = 29.60881f,
int nbrOfSmallBins = 10,
int nbrOfLargeBins = 5
)
new :
?width : int *
?height : int *
?histThresh : float32 *
?nbrOfSmallBins : int *
?nbrOfLargeBins : int
(* Defaults:
let _width = defaultArg width 800
let _height = defaultArg height 600
let _histThresh = defaultArg histThresh 29.60881f
let _nbrOfSmallBins = defaultArg nbrOfSmallBins 10
let _nbrOfLargeBins = defaultArg nbrOfLargeBins 5
*)
-> HistogramPhaseUnwrapping
Parameters
- width (Optional)
- Type: SystemInt32
Phase map width. - height (Optional)
- Type: SystemInt32
Phase map height. - histThresh (Optional)
- Type: SystemSingle
Bins in the histogram are not of equal size. Default value is 3*pi*pi. The one before "histThresh" value are smaller. - nbrOfSmallBins (Optional)
- Type: SystemInt32
Number of bins between 0 and "histThresh". Default value is 10. - nbrOfLargeBins (Optional)
- Type: SystemInt32
Number of bins between "histThresh" and 32*pi*pi (highest edge reliability value). Default value is 5.
See Also