Skip to content
Snippets Groups Projects
Commit 8ae2348d authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Inversion between 16 bits and 8 bits RGBA type declarations

parent efe6df77
No related branches found
No related tags found
No related merge requests found
......@@ -102,10 +102,10 @@ typedef otb::VectorImage<unsigned int> UInt32VectorImageType;
typedef otb::VectorImage<float> FloatVectorImageType;
typedef otb::VectorImage<double> DoubleVectorImageType;
typedef otb::Image< itk::RGBAPixel<short> > Int8RGBAImageType;
typedef otb::Image< itk::RGBAPixel<unsigned short> > UInt8RGBAImageType;
typedef otb::Image< itk::RGBAPixel<char> > Int16RGBAImageType;
typedef otb::Image< itk::RGBAPixel<unsigned char> > UInt16RGBAImageType;
typedef otb::Image< itk::RGBAPixel<char> > Int8RGBAImageType;
typedef otb::Image< itk::RGBAPixel<unsigned char> > UInt8RGBAImageType;
typedef otb::Image< itk::RGBAPixel<short> > Int16RGBAImageType;
typedef otb::Image< itk::RGBAPixel<unsigned short> > UInt16RGBAImageType;
typedef otb::Image< itk::RGBAPixel<int> > Int32RGBAImageType;
typedef otb::Image< itk::RGBAPixel<unsigned int> > UInt32RGBAImageType;
typedef otb::Image< itk::RGBAPixel<float> > FloatRGBAImageType;
......
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