コード例 #1
0
ファイル: ucThresholding.cs プロジェクト: tarinishukla/gcd
        public ucThresholding()
        {
            InitializeComponent();

            // Initialize coherence properties in case they are needed.
            CoherenceProps = new CoherenceProperties();
        }
コード例 #2
0
        public frmCoherenceProperties(CoherenceProperties props)
        {
            // This call is required by the designer.
            InitializeComponent();

            CoherenceProps = props;
        }
コード例 #3
0
 public ChangeDetectionEngineProbabilistic(Surface newDEM, Surface oldDEM, Project.Masks.AOIMask aoi, ErrorSurface newError, ErrorSurface oldError,
                                           decimal fThreshold, CoherenceProperties spatCoherence = null, bool isAsync = false)
     : base(newDEM, oldDEM, newError, oldError, aoi, isAsync)
 {
     Threshold        = fThreshold;
     SpatialCoherence = spatCoherence;
 }