@@ -47,7 +47,8 @@ using UnsignedCharRGBImageType = itk::Image<itk::RGBPixel<unsigned char>, 2>;
4747using FloatRGBImageType = itk::Image<itk::RGBPixel<float >, 2 >;
4848
4949using UnsignedCharImageType = itk::Image<unsigned char , 2 >;
50- using CharImageType = itk::Image<int8_t , 2 >;
50+ using CharImageType = itk::Image<char , 2 >;
51+ using SignedCharImageType = itk::Image<signed char , 2 >;
5152using UnsignedShortImageType = itk::Image<unsigned short , 2 >;
5253using ShortImageType = itk::Image<short , 2 >;
5354using UnsignedIntImageType = itk::Image<unsigned int , 2 >;
@@ -60,6 +61,8 @@ using DoubleImageType = itk::Image<double, 2>;
6061template void ITKVtkGlue_EXPORT
6162QuickView::AddImage<CharImageType>(CharImageType * image, bool FlipVertical, std::string Description);
6263template void ITKVtkGlue_EXPORT
64+ QuickView::AddImage<SignedCharImageType>(SignedCharImageType * image, bool FlipVertical, std::string Description);
65+ template void ITKVtkGlue_EXPORT
6366QuickView::AddImage<UnsignedShortImageType>(UnsignedShortImageType * image, bool FlipVertical, std::string Description);
6467template void ITKVtkGlue_EXPORT
6568QuickView::AddImage<ShortImageType>(ShortImageType * image, bool FlipVertical, std::string Description);
0 commit comments