diff --git a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx index 05a9c0b726bda4783ec0895aedccd34b85ffaedd..274bd5d5b56e988d26af6dd3faf3430017d48d23 100644 --- a/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx +++ b/Modules/Segmentation/Conversion/include/otbOGRDataSourceToLabelImageFilter.hxx @@ -133,10 +133,8 @@ void OGRDataSourceToLabelImageFilter<TOutputImage>::GenerateOutputInformation() // Set spacing and origin outputPtr->SetSignedSpacing(m_OutputSpacing); outputPtr->SetOrigin(m_OutputOrigin); - - itk::MetaDataDictionary& dict = outputPtr->GetMetaDataDictionary(); - itk::EncapsulateMetaData<std::string>(dict, MetaDataKey::ProjectionRefKey, static_cast<std::string>(this->GetOutputProjectionRef())); - + outputPtr->SetProjectionRef(this->GetOutputProjectionRef()); + // Generate the OGRLayers from the input OGRDataSource for (unsigned int idx = 0; idx < this->GetNumberOfInputs(); ++idx) { @@ -155,6 +153,8 @@ void OGRDataSourceToLabelImageFilter<TOutputImage>::GenerateOutputInformation() noDataValueAvailable.resize(nbBands, true); std::vector<double> noDataValue; noDataValue.resize(nbBands, static_cast<double>(m_BackgroundValue)); + + itk::MetaDataDictionary& dict = outputPtr->GetMetaDataDictionary(); itk::EncapsulateMetaData<std::vector<bool>>(dict, MetaDataKey::NoDataValueAvailable, noDataValueAvailable); itk::EncapsulateMetaData<std::vector<double>>(dict, MetaDataKey::NoDataValue, noDataValue); }