我正在使用ITK。 itk::LinearInterpolateImageFunction
是itk::InterpolateImageFunction
的子类。
为什么以下声明无效?
itk::InterpolateImageFunction<ImageType,double>::Pointer interpolator = itk::LinearInterpolateImageFunction<ImageType, double>::New();
我得到的错误是
错误:转换自
itk::LinearInterpolateImageFunction<itk::Image<unsigned char, 3u>, double>::Pointer {aka itk::SmartPointer<itk::LinearInterpolateImageFunction<itk::Image<unsigned char, 3u>, double> >}
为非标量类型itk::InterpolateImageFunction<itk::Image<unsigned char, 3u>, double>::Pointer {aka itk::SmartPointer<itk::InterpolateImageFunction<itk::Image<unsigned char, 3u>, double> >}
已请求
答案 0 :(得分:4)
InterpolateImageFunction::Pointer
typedef是SmartPointer<InterpolateImageFunction>
。与std::shared_ptr
不同,itk::SmartPointer
不支持相关类型的智能指针之间的转换。也就是说,InterpolateImageFunction<X,Y>::Pointer
和LinearInterpolateImageFunction<X,Y>::Pointer
是不相关的类型。