Skip to content
Snippets Groups Projects
Commit a6b47fb4 authored by remi cresson's avatar remi cresson
Browse files

ADD: Temporary aliases for deprecated classes

parent 6aba578f
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (C) 1999-2011 Insight Software Consortium
* 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.
*/
#ifndef otbImageToLuminanceImageFilter_h
#define otbImageToLuminanceImageFilter_h
#include <otbImageToRadianceImageFilter.h>
#include <vcl_deprecated_header.h>
namespace otb
{
/** \class ImageToLuminanceImageFilter
* \brief Convert a raw value into a Luminance value
*
* \deprecated in OTB 6.2, please use ImageToRadianceImageFilter instead
*
* \ingroup OTBOpticalCalibration
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT ImageToLuminanceImageFilter :
public ImageToRadianceImageFilter<TInputImage, TOutputImage>
{
};
} // namespace otb
#endif
/*
* Copyright (C) 1999-2011 Insight Software Consortium
* 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.
*/
#ifndef otbLuminanceToImageImageFilter_h
#define otbLuminanceToImageImageFilter_h
#include <otbRadianceToImageImageFilter.h>
#include <vcl_deprecated_header.h>
namespace otb
{
/** \class LuminanceToImageImageFilter
* \brief Convert a radiance value into raw image value
*
* \deprecated in OTB 6.2, please use RadianceToImageImageFilter instead
*
* \ingroup OTBOpticalCalibration
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT LuminanceToImageImageFilter :
public RadianceToImageImageFilter<TInputImage, TOutputImage>
{
};
}
#endif
/*
* Copyright (C) 1999-2011 Insight Software Consortium
* 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.
*/
#ifndef otbLuminanceToReflectanceImageFilter_h
#define otbLuminanceToReflectanceImageFilter_h
#include <otbRadianceToReflectanceImageFilter.h>
#include <vcl_deprecated_header.h>
namespace otb
{
/** \class LuminanceToReflectanceImageFilter
* \brief Convert radiance value into reflectance value
*
* \deprecated in OTB 6.2, please use RadianceToReflectanceImageFilter instead
*
* \ingroup OTBOpticalCalibration
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT LuminanceToReflectanceImageFilter :
public RadianceToReflectanceImageFilter<TInputImage,TOutputImage>
{
};
}
#endif
/*
* Copyright (C) 1999-2011 Insight Software Consortium
* 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.
*/
#ifndef otbReflectanceToLuminanceImageFilter_h
#define otbReflectanceToLuminanceImageFilter_h
#include <otbReflectanceToRadianceImageFilter.h>
#include <vcl_deprecated_header.h>
namespace otb
{
/** \class ReflectanceToLuminanceImageFilter
* \brief Convert reflectance value into radiance value
*
* \deprecated in OTB 6.2, please use ReflectanceToRadianceImageFilter instead
*
* \ingroup OTBOpticalCalibration
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT ReflectanceToLuminanceImageFilter :
public ReflectanceToRadianceImageFilter<TInputImage,TOutputImage>
{
};
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment