C++ 抽象类型声明
C++ abstract type declaration
我正在使用 ITK。 itk::LinearInterpolateImageFunction
是 itk::InterpolateImageFunction
的子类。
为什么下面的说法是无效的?
itk::InterpolateImageFunction<ImageType,double>::Pointer interpolator = itk::LinearInterpolateImageFunction<ImageType, double>::New();
我得到的错误是
error: conversion from
itk::LinearInterpolateImageFunction<itk::Image<unsigned char, 3u>,
double>::Pointer {aka
itk::SmartPointer<itk::LinearInterpolateImageFunction<itk::Image<unsigned
char, 3u>, double> >}
to non-scalar type
itk::InterpolateImageFunction<itk::Image<unsigned char, 3u>,
double>::Pointer {aka
itk::SmartPointer<itk::InterpolateImageFunction<itk::Image<unsigned
char, 3u>, double> >}
requested
InterpolateImageFunction::Pointer
类型定义为 SmartPointer<InterpolateImageFunction>
。与std::shared_ptr
不同,itk::SmartPointer
不支持相关类型的智能指针之间的转换。也就是说,InterpolateImageFunction<X,Y>::Pointer
和 LinearInterpolateImageFunction<X,Y>::Pointer
是不相关的类型。
我正在使用 ITK。 itk::LinearInterpolateImageFunction
是 itk::InterpolateImageFunction
的子类。
为什么下面的说法是无效的?
itk::InterpolateImageFunction<ImageType,double>::Pointer interpolator = itk::LinearInterpolateImageFunction<ImageType, double>::New();
我得到的错误是
error: conversion from
itk::LinearInterpolateImageFunction<itk::Image<unsigned char, 3u>, double>::Pointer {aka itk::SmartPointer<itk::LinearInterpolateImageFunction<itk::Image<unsigned char, 3u>, double> >}
to non-scalar typeitk::InterpolateImageFunction<itk::Image<unsigned char, 3u>, double>::Pointer {aka itk::SmartPointer<itk::InterpolateImageFunction<itk::Image<unsigned char, 3u>, double> >}
requested
InterpolateImageFunction::Pointer
类型定义为 SmartPointer<InterpolateImageFunction>
。与std::shared_ptr
不同,itk::SmartPointer
不支持相关类型的智能指针之间的转换。也就是说,InterpolateImageFunction<X,Y>::Pointer
和 LinearInterpolateImageFunction<X,Y>::Pointer
是不相关的类型。