From 108001472e4c82c5e6d61562ae138ecd4149612d Mon Sep 17 00:00:00 2001 From: Michael Luggen Date: Wed, 5 Aug 2015 21:29:07 +0200 Subject: [PATCH] Fix issue #56 typos. --- IPL/src/processes/IPLCanny.cpp | 2 +- IPL/src/processes/IPLFloodFill.cpp | 2 +- IPL/src/processes/IPLHarrisCorner.cpp | 2 +- IPL/src/processes/IPLLaplacian.cpp | 2 +- IPL/src/processes/IPLScharr.cpp | 2 +- IPL/src/processes/IPLSobel.cpp | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/IPL/src/processes/IPLCanny.cpp b/IPL/src/processes/IPLCanny.cpp index 882a19e..b41e0d7 100644 --- a/IPL/src/processes/IPLCanny.cpp +++ b/IPL/src/processes/IPLCanny.cpp @@ -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() diff --git a/IPL/src/processes/IPLFloodFill.cpp b/IPL/src/processes/IPLFloodFill.cpp index 05c09cc..cafb31b 100644 --- a/IPL/src/processes/IPLFloodFill.cpp +++ b/IPL/src/processes/IPLFloodFill.cpp @@ -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() diff --git a/IPL/src/processes/IPLHarrisCorner.cpp b/IPL/src/processes/IPLHarrisCorner.cpp index 4df7381..bce99e2 100644 --- a/IPL/src/processes/IPLHarrisCorner.cpp +++ b/IPL/src/processes/IPLHarrisCorner.cpp @@ -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() diff --git a/IPL/src/processes/IPLLaplacian.cpp b/IPL/src/processes/IPLLaplacian.cpp index 1e743b4..7733075 100644 --- a/IPL/src/processes/IPLLaplacian.cpp +++ b/IPL/src/processes/IPLLaplacian.cpp @@ -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() diff --git a/IPL/src/processes/IPLScharr.cpp b/IPL/src/processes/IPLScharr.cpp index ffe7297..80fe3f8 100644 --- a/IPL/src/processes/IPLScharr.cpp +++ b/IPL/src/processes/IPLScharr.cpp @@ -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() diff --git a/IPL/src/processes/IPLSobel.cpp b/IPL/src/processes/IPLSobel.cpp index 16e2f98..f93d7d2 100644 --- a/IPL/src/processes/IPLSobel.cpp +++ b/IPL/src/processes/IPLSobel.cpp @@ -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()