gpt4 book ai didi

C++ 抽象类型声明

转载 作者:行者123 更新时间:2023-11-27 22:48:10 25 4
gpt4 key购买 nike

我正在使用 ITK。 itk::LinearInterpolateImageFunctionitk::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 typedef 是 SmartPointer<InterpolateImageFunction> .不像std::shared_ptr , itk::SmartPointer不支持相关类型的智能指针之间的转换。即 InterpolateImageFunction<X,Y>::PointerLinearInterpolateImageFunction<X,Y>::Pointer是不相关的类型。

关于C++ 抽象类型声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40848166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com