diff --git a/Code/FBSD/BlurredSegment/bstracker.cpp b/Code/FBSD/BlurredSegment/bstracker.cpp
index ffbdecc11ddc3f530d0d4bad1979e39ea7dff6a8..6e148b9b5fd1fe4c8f96e8dea3246c3c5a1686e6 100755
--- a/Code/FBSD/BlurredSegment/bstracker.cpp
+++ b/Code/FBSD/BlurredSegment/bstracker.cpp
@@ -266,7 +266,7 @@ BlurredSegment *BSTracker::fineTrack (const Pt2i &center, const Vr2i &scandir,
       atcOn = false;
     }
 
-    // Resets the scan stripe
+    // Resets the scan strip
     if (count > fittingDelay && bsp.isExtending ())
     {
       // Stops the detection if the segment gets crosswise
diff --git a/Code/FBSD/BlurredSegment/bstracker.h b/Code/FBSD/BlurredSegment/bstracker.h
index b820f9b90bd69a044c69db050f5cf83981b08710..681ccf42c3c2b04a443dab2a3c05598e7f8b5194 100755
--- a/Code/FBSD/BlurredSegment/bstracker.h
+++ b/Code/FBSD/BlurredSegment/bstracker.h
@@ -56,7 +56,7 @@ public:
    * \brief Builds and returns a blurred segment from local gradient maxima.
    * Finer detection using gradient ridges and direction input.
    * @param center Central point of the scan.
-   * @param scandir Scan stripe direction.
+   * @param scandir Scan strip direction.
    * @param bsMaxWidth Initial assigned maximal width of the blurred segment.
    * @param acceptedLacks Count of maximal successive detection fails.
    * @param gref Gradient vector reference to select candidates.
diff --git a/Code/FBSD/DirectionalScanner/adaptivescannero1.h b/Code/FBSD/DirectionalScanner/adaptivescannero1.h
index 27d18cb82ba699f6db7afa3a18ab9964db5650a7..6121356a9a0535b56a55b43fa030f35eb29a3166 100755
--- a/Code/FBSD/DirectionalScanner/adaptivescannero1.h
+++ b/Code/FBSD/DirectionalScanner/adaptivescannero1.h
@@ -14,7 +14,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -101,8 +101,8 @@ public:
   int nextOnRight (std::vector<Pt2i> &scan);
 
   /**
-   * \brief Binds the scan stripe to wrap the given digital line.
-   * Resets bounding lines parameters to center the scan stripe on given line.
+   * \brief Binds the scan strip to wrap the given digital line.
+   * Resets bounding lines parameters to center the scan strip on given line.
    * @param a Parameter 'a' of given digital line.
    * @param b Parameter 'b' of given digital line.
    * @param c Parameter 'c' of given digital line.
diff --git a/Code/FBSD/DirectionalScanner/adaptivescannero2.h b/Code/FBSD/DirectionalScanner/adaptivescannero2.h
index e3ab6631ae38ccd53d406111429de77553e379ad..cdfab8f8c33e5e2e378e2cf80de9cb8ec7df9226 100755
--- a/Code/FBSD/DirectionalScanner/adaptivescannero2.h
+++ b/Code/FBSD/DirectionalScanner/adaptivescannero2.h
@@ -16,7 +16,7 @@ public:
   
   /**
    * \brief Creates an adaptive DS from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -36,7 +36,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -57,7 +57,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -103,8 +103,8 @@ public:
   int nextOnRight (std::vector<Pt2i> &scan);
 
   /**
-   * \brief Binds the scan stripe to wrap the given digital line.
-   * Resets bounding lines parameters to center the scan stripe on given line.
+   * \brief Binds the scan strip to wrap the given digital line.
+   * Resets bounding lines parameters to center the scan strip on given line.
    * @param a Parameter 'a' of given digital line.
    * @param b Parameter 'b' of given digital line.
    * @param c Parameter 'c' of given digital line.
diff --git a/Code/FBSD/DirectionalScanner/adaptivescannero7.h b/Code/FBSD/DirectionalScanner/adaptivescannero7.h
index e95d6ab6c3ae062efc583a992b83a91c98f4bcca..50a62232b4a73e8e09519369915325f95054dab0 100755
--- a/Code/FBSD/DirectionalScanner/adaptivescannero7.h
+++ b/Code/FBSD/DirectionalScanner/adaptivescannero7.h
@@ -15,7 +15,7 @@ public:
   
   /**
    * \brief Creates an adaptive DS from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -35,7 +35,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -56,7 +56,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -102,8 +102,8 @@ public:
   int nextOnRight (std::vector<Pt2i> &scan);
 
   /**
-   * \brief Binds the scan stripe to wrap the given digital line.
-   * Resets bounding lines parameters to center the scan stripe on given line.
+   * \brief Binds the scan strip to wrap the given digital line.
+   * Resets bounding lines parameters to center the scan strip on given line.
    * @param a Parameter 'a' of given digital line.
    * @param b Parameter 'b' of given digital line.
    * @param c Parameter 'c' of given digital line.
diff --git a/Code/FBSD/DirectionalScanner/adaptivescannero8.h b/Code/FBSD/DirectionalScanner/adaptivescannero8.h
index e4a73f7b5fc73b95043c81cc3819025ad5f93b23..fcb196cab791df0a350999ddea6982cfd0cb14cb 100755
--- a/Code/FBSD/DirectionalScanner/adaptivescannero8.h
+++ b/Code/FBSD/DirectionalScanner/adaptivescannero8.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates an adaptive DS from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates an adaptive DS from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -101,8 +101,8 @@ public:
   int nextOnRight (std::vector<Pt2i> &scan);
 
   /**
-   * \brief Binds the scan stripe to wrap the given digital line.
-   * Resets bounding lines parameters to center the scan stripe on given line.
+   * \brief Binds the scan strip to wrap the given digital line.
+   * Resets bounding lines parameters to center the scan strip on given line.
    * @param a Parameter 'a' of given digital line.
    * @param b Parameter 'b' of given digital line.
    * @param c Parameter 'c' of given digital line.
diff --git a/Code/FBSD/DirectionalScanner/directionalscanner.h b/Code/FBSD/DirectionalScanner/directionalscanner.h
index 2c1de4206ac324525e2ef28e1650dbd628cfba16..6ee1b13880bcb006541d3bbb6f572d5e8a36ebbe 100755
--- a/Code/FBSD/DirectionalScanner/directionalscanner.h
+++ b/Code/FBSD/DirectionalScanner/directionalscanner.h
@@ -45,17 +45,17 @@ public:
   virtual int nextOnRight (std::vector<Pt2i> &scan) = 0;
 
   /**
-   * \brief Binds the scan stripe to wrap the given digital line.
-   * Resets bounding lines parameters to center the scan stripe on given line.
-   * @param a New value for the 'a' parameter of current scan stripe.
-   * @param b New value for the 'b' parameter of current scan stripe.
-   * @param c New value for the 'c' parameter of current scan stripe.
+   * \brief Binds the scan strip to wrap the given digital line.
+   * Resets bounding lines parameters to center the scan strip on given line.
+   * @param a New value for the 'a' parameter of current scan strip.
+   * @param b New value for the 'b' parameter of current scan strip.
+   * @param c New value for the 'c' parameter of current scan strip.
    */
   virtual void bindTo (int a, int b, int c);
 
   /**
    * \brief Returns the scanner coordinates of given point.
-   * Scanner coordinates are the stripe index and the position in the stripe.
+   * Scanner coordinates are the scan index and the position in the scan.
    * @param pt Image coordinates of the point.
    */
   virtual Pt2i locate (const Pt2i &pt) const;
diff --git a/Code/FBSD/DirectionalScanner/directionalscannero1.h b/Code/FBSD/DirectionalScanner/directionalscannero1.h
index 38e4db47e5b8d5651ee44c6025cb6c05dbd5d92f..f815866bcdeb35efe049a632076f395f7c83b12e 100755
--- a/Code/FBSD/DirectionalScanner/directionalscannero1.h
+++ b/Code/FBSD/DirectionalScanner/directionalscannero1.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a directional scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param xmax Right border of the scan area.
@@ -102,7 +102,7 @@ public:
 
   /**
    * \brief Returns the scanner coordinates of given point.
-   * Scanner coordinates are the stripe index and the position in the stripe.
+   * Scanner coordinates are the scan index and the position in the scan.
    * @param pt Image coordinates of the point.
    */
   virtual Pt2i locate (const Pt2i &pt) const;
@@ -110,14 +110,14 @@ public:
 
 private:
 
-  /** Current pattern step in stripe direction on left side. */
+  /** Current pattern step in strip direction on left side. */
   bool *lst1;
-  /** Current pattern step in stripe direction on right side. */
+  /** Current pattern step in strip direction on right side. */
   bool *rst1;
 
-  /** Status indicating no move in stripe direction on next left scan. */
+  /** Status indicating no move in strip direction on next left scan. */
   bool lstop;
-  /** Status indicating no move in stripe direction on next right scan. */
+  /** Status indicating no move in strip direction on next right scan. */
   bool rstop;
 
 
diff --git a/Code/FBSD/DirectionalScanner/directionalscannero2.h b/Code/FBSD/DirectionalScanner/directionalscannero2.h
index 79e39ff62d93387cef23208f57456e380510100f..ab6d54358a254edd231f352868de8453a6b83ee0 100755
--- a/Code/FBSD/DirectionalScanner/directionalscannero2.h
+++ b/Code/FBSD/DirectionalScanner/directionalscannero2.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a directional scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -102,7 +102,7 @@ public:
 
   /**
    * \brief Returns the scanner coordinates of given point.
-   * Scanner coordinates are the stripe index and the position in the stripe.
+   * Scanner coordinates are the scan index and the position in the scan.
    * @param pt Image coordinates of the point.
    */
   virtual Pt2i locate (const Pt2i &pt) const;
@@ -110,14 +110,14 @@ public:
 
 private:
 
-  /** Current pattern step in stripe direction on left side. */
+  /** Current pattern step in strip direction on left side. */
   bool *lst1;
-  /** Current pattern step in stripe direction on right side. */
+  /** Current pattern step in strip direction on right side. */
   bool *rst1;
 
-  /** Status indicating no move in stripe direction on next left scan. */
+  /** Status indicating no move in strip direction on next left scan. */
   bool lstop;
-  /** Status indicating no move in stripe direction on next right scan. */
+  /** Status indicating no move in strip direction on next right scan. */
   bool rstop;
 
 
diff --git a/Code/FBSD/DirectionalScanner/directionalscannero7.h b/Code/FBSD/DirectionalScanner/directionalscannero7.h
index e4141aaacd605b41a7f39c11818bc1454aea0149..9873163b0ed6d9572e3e5ab279c7cca825541018 100755
--- a/Code/FBSD/DirectionalScanner/directionalscannero7.h
+++ b/Code/FBSD/DirectionalScanner/directionalscannero7.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a directional scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -102,7 +102,7 @@ public:
 
   /**
    * \brief Returns the scanner coordinates of given point.
-   * Scanner coordinates are the stripe index and the position in the stripe.
+   * Scanner coordinates are the scan index and the position in the scan.
    * @param pt Image coordinates of the point.
    */
   virtual Pt2i locate (const Pt2i &pt) const;
@@ -110,14 +110,14 @@ public:
 
 private:
 
-  /** Current pattern step in stripe direction on left side. */
+  /** Current pattern step in strip direction on left side. */
   bool *lst1;
-  /** Current pattern step in stripe direction on right side. */
+  /** Current pattern step in strip direction on right side. */
   bool *rst1;
 
-  /** Status indicating no move in stripe direction on next left scan. */
+  /** Status indicating no move in strip direction on next left scan. */
   bool lstop;
-  /** Status indicating no move in stripe direction on next right scan. */
+  /** Status indicating no move in strip direction on next right scan. */
   bool rstop;
 
 
diff --git a/Code/FBSD/DirectionalScanner/directionalscannero8.h b/Code/FBSD/DirectionalScanner/directionalscannero8.h
index 0b28b9e178833cda99072e0c8bfbe6278961992f..ff5627428e05863298764256351177865aa4937f 100755
--- a/Code/FBSD/DirectionalScanner/directionalscannero8.h
+++ b/Code/FBSD/DirectionalScanner/directionalscannero8.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a directional scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a directional scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -102,7 +102,7 @@ public:
 
   /**
    * \brief Returns the scanner coordinates of given point.
-   * Scanner coordinates are the stripe index and the position in the stripe.
+   * Scanner coordinates are the scan index and the position in the scan.
    * @param pt Image coordinates of the point.
    */
   virtual Pt2i locate (const Pt2i &pt) const;
@@ -110,14 +110,14 @@ public:
 
 private:
 
-  /** Current pattern step in stripe direction on left side. */
+  /** Current pattern step in strip direction on left side. */
   bool *lst1;
-  /** Current pattern step in stripe direction on right side. */
+  /** Current pattern step in strip direction on right side. */
   bool *rst1;
 
-  /** Status indicating no move in stripe direction on next left scan. */
+  /** Status indicating no move in strip direction on next left scan. */
   bool lstop;
-  /** Status indicating no move in stripe direction on next right scan. */
+  /** Status indicating no move in strip direction on next right scan. */
   bool rstop;
 
 
diff --git a/Code/FBSD/DirectionalScanner/scannerprovider.h b/Code/FBSD/DirectionalScanner/scannerprovider.h
index d512635921fd38533782c47fdc1ab908c5d621d7..f8af1f7d32565915ae335f67e1bf3d5ceb56de53 100755
--- a/Code/FBSD/DirectionalScanner/scannerprovider.h
+++ b/Code/FBSD/DirectionalScanner/scannerprovider.h
@@ -41,7 +41,7 @@ public:
   /**
    * \brief Returns a directional scanner from initial scan end points.
    * Returns a directional scanner from two control points.
-   * The scan stripe is composed of parallel scans (line segments),
+   * The scan strip is composed of parallel scans (line segments),
    *   the initial one being defined by control points p1 and p2.
    * @param p1 Initial scan start point.
    * @param p2 Initial scan end point.
@@ -51,7 +51,7 @@ public:
   
   /**
    * \brief Returns a directional scanner from scan center, vector and length.
-   * The scan stripe is composed of parallel scans (line segments),
+   * The scan strip is composed of parallel scans (line segments),
    *   the first one defined by its center, its direct vector, and its length.
    * @param centre Initial scan center.
    * @param normal Initial scan direct vector.
diff --git a/Code/FBSD/DirectionalScanner/vhscannero1.h b/Code/FBSD/DirectionalScanner/vhscannero1.h
index 48d9bf7fbda371b81abbd1fa5af4b4f4335273c1..868dfbe07b3af6616e917ac39d4b8a5b9ab3ae5c 100755
--- a/Code/FBSD/DirectionalScanner/vhscannero1.h
+++ b/Code/FBSD/DirectionalScanner/vhscannero1.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a vh scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and length .
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
diff --git a/Code/FBSD/DirectionalScanner/vhscannero2.h b/Code/FBSD/DirectionalScanner/vhscannero2.h
index f4286db168c9d7e7421268bde7e6d5f257f1f0e3..6012abb76387bc1577557c58081ea21c9665217c 100755
--- a/Code/FBSD/DirectionalScanner/vhscannero2.h
+++ b/Code/FBSD/DirectionalScanner/vhscannero2.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a vh scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
diff --git a/Code/FBSD/DirectionalScanner/vhscannero7.h b/Code/FBSD/DirectionalScanner/vhscannero7.h
index d10d52e2d234a150c8dceca8b2459819ece7a17a..3e31ddc0e9f2162d87de765ecd29d0f71258e427 100755
--- a/Code/FBSD/DirectionalScanner/vhscannero7.h
+++ b/Code/FBSD/DirectionalScanner/vhscannero7.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a vh scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
diff --git a/Code/FBSD/DirectionalScanner/vhscannero8.h b/Code/FBSD/DirectionalScanner/vhscannero8.h
index b8ae4ab362733d3f4db156d6cb313d71ff85b3aa..85fbe8d3523dedef9b708261a0495eea97914382 100755
--- a/Code/FBSD/DirectionalScanner/vhscannero8.h
+++ b/Code/FBSD/DirectionalScanner/vhscannero8.h
@@ -14,7 +14,7 @@ public:
   
   /**
    * \brief Creates a vh scanner from pattern, start and upper bound.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a start point, a line pattern, and an upper bound.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -34,7 +34,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and bounds.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, upper and lower bounds.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.
@@ -55,7 +55,7 @@ public:
 
   /**
    * \brief Creates a vh scanner from pattern, center and length.
-   * The scan stripe is composed of parallel scan lines, the first one being
+   * The scan strip is composed of parallel scan lines, the first one being
    *   defined by a center, a line pattern, and a length value.
    * @param xmin Left border of the scan area.
    * @param ymin Bottom border of the scan area.