diff --git a/Applications/Segmentation/CMakeLists.txt b/Applications/Segmentation/CMakeLists.txt
index f313addedda6c2110c5e26f4f2f9f5b27251457b..652eefb6db9a974ec3c94c05da7daaa7e648b29c 100644
--- a/Applications/Segmentation/CMakeLists.txt
+++ b/Applications/Segmentation/CMakeLists.txt
@@ -10,9 +10,9 @@ OTB_CREATE_APPLICATION(NAME           ConnectedComponentSegmentation
 OTB_CREATE_APPLICATION(NAME           HooverCompareSegmentation
                        SOURCES        otbHooverCompareSegmentation.cxx
                        LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
-                       
-OTB_CREATE_APPLICATION(NAME           LargeScaleSegmentation
-                       SOURCES        otbLargeScaleSegmentation.cxx
+
+OTB_CREATE_APPLICATION(NAME           Segmentation
+                       SOURCES        otbSegmentation.cxx
                        LINK_LIBRARIES OTBBasicFilters;OTBOBIA;OTBOGRAdapters)
-                       
-                       
+
+
diff --git a/Applications/Segmentation/otbLargeScaleSegmentation.cxx b/Applications/Segmentation/otbSegmentation.cxx
similarity index 99%
rename from Applications/Segmentation/otbLargeScaleSegmentation.cxx
rename to Applications/Segmentation/otbSegmentation.cxx
index 239ef1227c51f6b2fc238a7e6287ca83ccb965ef..fac24af77fe65d30f16f13c88cbdbf718789444f 100644
--- a/Applications/Segmentation/otbLargeScaleSegmentation.cxx
+++ b/Applications/Segmentation/otbSegmentation.cxx
@@ -41,11 +41,11 @@ namespace otb
 {
 namespace Wrapper
 {
-class LargeScaleSegmentation : public Application
+class Segmentation : public Application
 {
 public:
   /** Standard class typedefs. */
-  typedef LargeScaleSegmentation        Self;
+  typedef Segmentation        Self;
   typedef Application                   Superclass;
   typedef itk::SmartPointer<Self>       Pointer;
   typedef itk::SmartPointer<const Self> ConstPointer;
@@ -122,12 +122,12 @@ public:
 
   /** Standard macro */
   itkNewMacro(Self);
-  itkTypeMacro(LargeScaleSegmentation, otb::Application);
+  itkTypeMacro(Segmentation, otb::Application);
 
 private:
   void DoInit()
   {
-    SetName("LargeScaleSegmentation");
+    SetName("Segmentation");
     SetDescription("Performs Large scale segmentation");
 
     // Documentation
@@ -542,4 +542,4 @@ private:
 }
 }
 
-OTB_APPLICATION_EXPORT(otb::Wrapper::LargeScaleSegmentation)
+OTB_APPLICATION_EXPORT(otb::Wrapper::Segmentation)