Skip to content

Commit

Permalink
Fix issue #56 typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
l00mi committed Aug 5, 2015
1 parent 89c8f42 commit 1080014
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLCanny.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void IPLCanny::init()
addProcessPropertyInt("window", "Window", "", 3, IPL_WIDGET_SLIDER_ODD, 3, 7);
addProcessPropertyDouble("sigma", "Sigma", "", 1.5, IPL_WIDGET_SLIDER, 0.5, 10);
addProcessPropertyDouble("lowThreshold", "Low Threshold", "", 0.3, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLCanny::destroy()
Expand Down
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLFloodFill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void IPLFloodFill::init()

// properties
addProcessPropertyInt("threshold", "Threshold", "", 1, IPL_WIDGET_SLIDER, 1, 255);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLFloodFill::destroy()
Expand Down
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLHarrisCorner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void IPLHarrisCorner::init()

// properties
addProcessPropertyInt("threshold", "Threshold", "", 1, IPL_WIDGET_SLIDER, 1, 255);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLHarrisCorner::destroy()
Expand Down
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLLaplacian.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void IPLLaplacian::init()

// properties
addProcessPropertyInt("threshold", "Threshold", "", 1, IPL_WIDGET_SLIDER, 1, 255);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLLaplacian::destroy()
Expand Down
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLScharr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void IPLScharr::init()

// properties
addProcessPropertyInt("threshold", "Threshold", "", 1, IPL_WIDGET_SLIDER, 1, 255);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLScharr::destroy()
Expand Down
2 changes: 1 addition & 1 deletion IPL/src/processes/IPLSobel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void IPLSobel::init()

// properties
addProcessPropertyInt("threshold", "Threshold", "", 1, IPL_WIDGET_SLIDER, 1, 255);
addProcessPropertyDouble("highThreshold", "Hight Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
addProcessPropertyDouble("highThreshold", "High Threshold", "Thresholds for the hysteresis procedure", 0.6, IPL_WIDGET_SLIDER, 0.0, 1.0);
}

void IPLSobel::destroy()
Expand Down

0 comments on commit 1080014

Please sign in to comment.