diff --git a/Applications/Segmentation/CMakeLists.txt b/Applications/Segmentation/CMakeLists.txt index a777e3e3565ce80f89d9d924df4eecfd51a41b4b..3856786ba1c930e58ce073cc16d5b003821c0157 100644 --- a/Applications/Segmentation/CMakeLists.txt +++ b/Applications/Segmentation/CMakeLists.txt @@ -19,8 +19,8 @@ OTB_CREATE_APPLICATION(NAME LSMSSegmentation SOURCES otbLSMSSegmentation.cxx LINK_LIBRARIES OTBBasicFilters;OTBOBIA;OTBOGRAdapters) -OTB_CREATE_APPLICATION(NAME LSMSMerging - SOURCES otbLSMSMerging.cxx +OTB_CREATE_APPLICATION(NAME LSMSSmallRegionsMerging + SOURCES otbLSMSSmallRegionsMerging.cxx LINK_LIBRARIES OTBBasicFilters;OTBOBIA;OTBOGRAdapters) OTB_CREATE_APPLICATION(NAME LSMSVectorization diff --git a/Applications/Segmentation/otbLSMSSmallRegionsMerging.cxx b/Applications/Segmentation/otbLSMSSmallRegionsMerging.cxx index 91ea2059a12d636b2dd925ae43f44a08182ea492..2a28e0297486ff8f61faf794b105a95430f3a0dd 100644 --- a/Applications/Segmentation/otbLSMSSmallRegionsMerging.cxx +++ b/Applications/Segmentation/otbLSMSSmallRegionsMerging.cxx @@ -43,10 +43,10 @@ namespace otb { namespace Wrapper { -class LSMSMerging : public Application +class LSMSSmallRegionsMerging : public Application { public: - typedef LSMSMerging Self; + typedef LSMSSmallRegionsMerging Self; typedef Application Superclass; typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<const Self> ConstPointer; @@ -80,7 +80,7 @@ private: void DoInit() { - SetName("LSMSSmallRegionMerging"); + SetName("LSMSSmallRegionsMerging"); SetDescription("Third (optional) step of the exact Large-Scale Mean-Shift segmentation workflow."); SetDocName("Exact Large-Scale Mean-Shift segmentation, step 3 (optional)"); @@ -427,6 +427,6 @@ private: } } -OTB_APPLICATION_EXPORT(otb::Wrapper::LSMSMerging) +OTB_APPLICATION_EXPORT(otb::Wrapper::LSMSSmallRegionsMerging)