diff --git a/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h new file mode 100644 index 0000000000000000000000000000000000000000..0b6cda132f6f1846cc8503a9b8553d05f57966b7 --- /dev/null +++ b/Modules/Radiometry/OpticalCalibration/include/otbImageToLuminanceImageFilter.h @@ -0,0 +1,48 @@ +/* + * 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 diff --git a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h new file mode 100644 index 0000000000000000000000000000000000000000..3ddbe95da8505254593c1b32690c5fc3c5f197db --- /dev/null +++ b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToImageImageFilter.h @@ -0,0 +1,45 @@ +/* + * 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 diff --git a/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h new file mode 100644 index 0000000000000000000000000000000000000000..79a14d62dc7d060a26d662a7353a5dfc97555950 --- /dev/null +++ b/Modules/Radiometry/OpticalCalibration/include/otbLuminanceToReflectanceImageFilter.h @@ -0,0 +1,45 @@ +/* + * 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 diff --git a/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h new file mode 100644 index 0000000000000000000000000000000000000000..786e023a795cb961f20e489d748ccb52096f5e2b --- /dev/null +++ b/Modules/Radiometry/OpticalCalibration/include/otbReflectanceToLuminanceImageFilter.h @@ -0,0 +1,44 @@ +/* + * 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