Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
273
Issues
273
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
414b21e1
Commit
414b21e1
authored
Dec 04, 2017
by
Guillaume Pasero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
STYLE: uniform include guards
parent
47f0a8df
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
38 additions
and
38 deletions
+38
-38
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx
...on/include/otbDimensionalityReductionTrainAutoencoder.txx
+2
-2
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx
...yReduction/include/otbDimensionalityReductionTrainPCA.txx
+2
-2
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx
...yReduction/include/otbDimensionalityReductionTrainSOM.txx
+2
-2
Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h
.../include/otbTrainDimensionalityReductionApplicationBase.h
+2
-2
Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx
...nclude/otbTrainDimensionalityReductionApplicationBase.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h
...nsionalityReductionLearning/include/otbAutoencoderModel.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx
...ionalityReductionLearning/include/otbAutoencoderModel.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h
...ityReductionLearning/include/otbAutoencoderModelFactory.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx
...yReductionLearning/include/otbAutoencoderModelFactory.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h
...Learning/include/otbDimensionalityReductionModelFactory.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx
...arning/include/otbDimensionalityReductionModelFactory.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h
...nLearning/include/otbImageDimensionalityReductionFilter.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx
...earning/include/otbImageDimensionalityReductionFilter.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h
...ing/DimensionalityReductionLearning/include/otbPCAModel.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx
...g/DimensionalityReductionLearning/include/otbPCAModel.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h
...ensionalityReductionLearning/include/otbPCAModelFactory.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx
...sionalityReductionLearning/include/otbPCAModelFactory.txx
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h
...ing/DimensionalityReductionLearning/include/otbSOMModel.h
+2
-2
Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx
...sionalityReductionLearning/include/otbSOMModelFactory.txx
+2
-2
No files found.
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef
cb
TrainAutoencoder_txx
#define
cb
TrainAutoencoder_txx
#ifndef
otbDimensionalityReduction
TrainAutoencoder_txx
#define
otbDimensionalityReduction
TrainAutoencoder_txx
#include "otbTrainDimensionalityReductionApplicationBase.h"
#include "otbAutoencoderModel.h"
...
...
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef
cb
TrainPCA_txx
#define
cb
TrainPCA_txx
#ifndef
otbDimensionalityReduction
TrainPCA_txx
#define
otbDimensionalityReduction
TrainPCA_txx
#include "otbTrainDimensionalityReductionApplicationBase.h"
#include "otbPCAModel.h"
...
...
Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef
cb
TrainSOM_txx
#define
cb
TrainSOM_txx
#ifndef
otbDimensionalityReduction
TrainSOM_txx
#define
otbDimensionalityReduction
TrainSOM_txx
#include "otbTrainDimensionalityReductionApplicationBase.h"
#include "otbSOMModel.h"
...
...
Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef
cbLearningApplicationBaseDR
_h
#define
cbLearningApplicationBaseDR
_h
#ifndef
otbTrainDimensionalityReductionApplicationBase
_h
#define
otbTrainDimensionalityReductionApplicationBase
_h
#include "otbConfigure.h"
...
...
Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef
cbLearningApplicationBaseDR
_txx
#define
cbLearningApplicationBaseDR
_txx
#ifndef
otbTrainDimensionalityReductionApplicationBase
_txx
#define
otbTrainDimensionalityReductionApplicationBase
_txx
#include "otbTrainDimensionalityReductionApplicationBase.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AutoencoderModel_h
#define AutoencoderModel_h
#ifndef
otb
AutoencoderModel_h
#define
otb
AutoencoderModel_h
#include "otbMachineLearningModelTraits.h"
#include "otbMachineLearningModel.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AutoencoderModel_txx
#define AutoencoderModel_txx
#ifndef
otb
AutoencoderModel_txx
#define
otb
AutoencoderModel_txx
#include "otbAutoencoderModel.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AutoencoderModelFactory_h
#define AutoencoderModelFactory_h
#ifndef
otb
AutoencoderModelFactory_h
#define
otb
AutoencoderModelFactory_h
//#include <shark/Models/TiedAutoencoder.h>
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AutoencoderModelFactory_txx
#define AutoencoderModelFactory_txx
#ifndef
otb
AutoencoderModelFactory_txx
#define
otb
AutoencoderModelFactory_txx
#include "otbAutoencoderModelFactory.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef DimensionalityReductionModelFactory_h
#define DimensionalityReductionModelFactory_h
#ifndef
otb
DimensionalityReductionModelFactory_h
#define
otb
DimensionalityReductionModelFactory_h
//#include "DimensionalityReductionModel.h"
#include "otbMachineLearningModelFactoryBase.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef DimensionalityReductionModelFactory_txx
#define DimensionalityReductionModelFactory_txx
#ifndef
otb
DimensionalityReductionModelFactory_txx
#define
otb
DimensionalityReductionModelFactory_txx
#include "otbDimensionalityReductionModelFactory.h"
#include "otbConfigure.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ImageDimensionalityReduction_h
#define ImageDimensionalityReduction_h
#ifndef
otb
ImageDimensionalityReduction_h
#define
otb
ImageDimensionalityReduction_h
#include "itkImageToImageFilter.h"
//#include "DimensionalityReductionModel.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otbImage
Classifica
tionFilter_txx
#define otbImage
Classifica
tionFilter_txx
#ifndef otbImage
DimensionalityReduc
tionFilter_txx
#define otbImage
DimensionalityReduc
tionFilter_txx
#include "otbImageDimensionalityReductionFilter.h"
#include "itkImageRegionIterator.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PCAModel_h
#define PCAModel_h
#ifndef
otb
PCAModel_h
#define
otb
PCAModel_h
#include "otbMachineLearningModelTraits.h"
#include "otbMachineLearningModel.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PCAModel_txx
#define PCAModel_txx
#ifndef
otb
PCAModel_txx
#define
otb
PCAModel_txx
#include "otbPCAModel.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PCAModelFactory_h
#define PCAModelFactory_h
#ifndef
otb
PCAModelFactory_h
#define
otb
PCAModelFactory_h
#include "itkObjectFactoryBase.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PCAFactory_txx
#define PCAFactory_txx
#ifndef
otb
PCAFactory_txx
#define
otb
PCAFactory_txx
#include "otbPCAModelFactory.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SOMModel_h
#define SOMModel_h
#ifndef
otb
SOMModel_h
#define
otb
SOMModel_h
//#include "DimensionalityReductionModel.h"
#include "otbSOMMap.h"
...
...
Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx
View file @
414b21e1
...
...
@@ -17,8 +17,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SOMFactory_txx
#define SOMFactory_txx
#ifndef
otb
SOMFactory_txx
#define
otb
SOMFactory_txx
#include "otbSOMModelFactory.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment