Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Main Repositories
otb
Commits
3b12c544
Commit
3b12c544
authored
Mar 02, 2018
by
Guillaume Pasero
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'complexImage_integration' into 'develop'
Splitting cxx file for InputImageParameter See merge request
!19
parents
118bef41
2541beae
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
352 additions
and
12 deletions
+352
-12
Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt
Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt
+11
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx
...s/ApplicationEngine/src/otbWrapperInputImageParameter.cxx
+0
-12
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx
...cationEngine/src/otbWrapperInputImageParameterCDouble.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx
...icationEngine/src/otbWrapperInputImageParameterCFloat.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx
...icationEngine/src/otbWrapperInputImageParameterCInt16.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx
...icationEngine/src/otbWrapperInputImageParameterCInt32.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx
...icationEngine/src/otbWrapperInputImageParameterDouble.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx
...licationEngine/src/otbWrapperInputImageParameterFloat.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx
...licationEngine/src/otbWrapperInputImageParameterInt16.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx
...licationEngine/src/otbWrapperInputImageParameterInt32.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx
...icationEngine/src/otbWrapperInputImageParameterUInt16.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx
...icationEngine/src/otbWrapperInputImageParameterUInt32.cxx
+31
-0
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx
...licationEngine/src/otbWrapperInputImageParameterUInt8.cxx
+31
-0
No files found.
Modules/Wrappers/ApplicationEngine/src/CMakeLists.txt
View file @
3b12c544
...
...
@@ -31,6 +31,17 @@ set( OTBApplicationEngine_SRC
otbWrapperInputFilenameListParameter.cxx
otbWrapperOutputImageParameter.cxx
otbWrapperInputImageParameter.cxx
otbWrapperInputImageParameterUInt8.cxx
otbWrapperInputImageParameterUInt16.cxx
otbWrapperInputImageParameterUInt32.cxx
otbWrapperInputImageParameterInt16.cxx
otbWrapperInputImageParameterInt32.cxx
otbWrapperInputImageParameterCInt16.cxx
otbWrapperInputImageParameterCInt32.cxx
otbWrapperInputImageParameterCFloat.cxx
otbWrapperInputImageParameterCDouble.cxx
otbWrapperInputImageParameterFloat.cxx
otbWrapperInputImageParameterDouble.cxx
otbWrapperParameterKey.cxx
otbWrapperDocExampleStructure.cxx
otbWrapperInputVectorDataParameter.cxx
...
...
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameter.cxx
View file @
3b12c544
...
...
@@ -70,18 +70,6 @@ InputImageParameter::GetImage()
otbGetImageMacro
(
UInt8RGBImage
);
otbGetImageMacro
(
UInt8RGBAImage
);
otbGetImageAndVectorImageMacro
(
UInt8
);
otbGetImageAndVectorImageMacro
(
UInt16
);
otbGetImageAndVectorImageMacro
(
UInt32
);
otbGetImageAndVectorImageMacro
(
Int16
);
otbGetImageAndVectorImageMacro
(
Int32
);
otbGetImageAndVectorImageMacro
(
Float
);
otbGetImageAndVectorImageMacro
(
Double
);
otbGetImageAndVectorImageMacro
(
ComplexInt16
);
otbGetImageAndVectorImageMacro
(
ComplexInt32
);
otbGetImageAndVectorImageMacro
(
ComplexFloat
);
otbGetImageAndVectorImageMacro
(
ComplexDouble
);
void
InputImageParameter
::
SetImage
(
FloatVectorImageType
*
image
)
...
...
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCDouble.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
ComplexDouble
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCFloat.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
ComplexFloat
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt16.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
ComplexInt16
);
}
}
\ No newline at end of file
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterCInt32.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
ComplexInt32
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterDouble.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
Double
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterFloat.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
Float
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt16.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
Int16
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterInt32.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
Int32
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt16.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
UInt16
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt32.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
UInt32
);
}
}
Modules/Wrappers/ApplicationEngine/src/otbWrapperInputImageParameterUInt8.cxx
0 → 100644
View file @
3b12c544
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageParameterMacros.h"
#include "otbWrapperTypes.h"
namespace
otb
{
namespace
Wrapper
{
otbGetImageAndVectorImageMacro
(
UInt8
);
}
}
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