Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • otb otb
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 207
    • Issues 207
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 12
    • Merge requests 12
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Main Repositories
  • otbotb
  • Wiki
  • Migration guide OTBv8

Migration guide OTBv8 · Changes

Page history
Update Migration guide OTBv8 authored Dec 01, 2021 by Julien Osman's avatar Julien Osman
Hide whitespace changes
Inline Side-by-side
Migration-guide-OTBv8.md
View page @ df89f636
......@@ -370,3 +370,18 @@ auto sensorModel = otb::SensorTransformFactory::GetInstance().CreateTransform
if (sensorModel != nullptr)
[...]
```
The `GenericRSTransform` filter is also impacted by this refactoring. The methods getting and setting the KeyWordList are replaced by methods getting and setting ImageMetadata objects:
```cpp
typedef otb::GenricRSTransform<double, InputSpaceDimension, OutputSpaceDimension> TransformType;
TransformType::Pointer transform = TransformType::New();
transform->SetInputKeywordList(kwl);
```
Becomes
```cpp
transform->SetInputImageMetadata(imd);
transform->SetOutputImageMetadata(*(image->GetImageMetadata));
```
Clone repository
  • Deprecated Info
  • Help for release actions
  • How to contribute to QGIS related to OTB processing provider
  • How to deprecate
  • List of publications mentioning OTB
  • Migration guide OTBv8
  • OTB Continuous Integration platform
  • OTB Users Day 2018
  • PSC meetings
  • Remote Modules
  • Remove OSSIM
  • Home
  • uploads
    • d7dcea8f9f7385fc40a5cc8328f02520
      • filterRefactoring