1

谁能解释为什么这不起作用:

#include "itkCovariantVector.h"
#include "itkImage.h"

template <typename TComponent, int NumberOfComponents>
void FillImage(itk::Image<itk::CovariantVector<TComponent,
NumberOfComponents>, 2>* const image,
               itk::Image<itk::CovariantVector<TComponent,
NumberOfComponents>, 2>* const output)
{
  std::cout << "Works." << std::endl;
}

int main(int, char* [] )
{
  typedef itk::Image<itk::CovariantVector<float, 3u>, 2u> ImageType;

  ImageType::Pointer imageSmartPointer = ImageType::New();
  ImageType* image = imageSmartPointer.GetPointer();
  FillImage(image, image);
  return 0;
}
/*
no matching function for call to ‘FillImage(ImageType*&, ImageType*&)’
note: candidate is:
template<class TComponent, int NumberOfComponents> void
FillImage(itk::Image<itk::CovariantVector<TComponent,
NumberOfComponents>, 2u>*, itk::Image<itk::CovariantVector<TComponent,
NumberOfComponents>, 2u>*)
*/

这些类模板的定义是:http://www.itk.org/Doxygen/html/classitk_1_1CovariantVector.html http://www.itk.org/Doxygen/html/classitk_1_1Image.html

我用非 ITK 类创建了相同的情况,并且它工作正常:

#include <iostream>

template <typename TPixel, int Dimensions>
struct Image
{
};

template <typename TComponent, int NumberOfComponents>
struct Vector
{
};

template <typename TComponent, int NumberOfComponents>
void FillImage(Image<Vector<TComponent, NumberOfComponents>, 2 >* const image,
               Image<Vector<TComponent, NumberOfComponents>, 2 >* const output)
{
  std::cout << "Works." << std::endl;
}

int main(int, char* [] )
{
  typedef Image<Vector<float, 3>, 2 > ImageType;

  ImageType* image = new ImageType;
  FillImage(image, image);
  delete image;
  return 0;
}

谁能解释可能有什么区别?

4

1 回答 1

0

问题是我必须将签名从更改为<int NumberOfComponents><unsigned int NumberOfComponents>匹配 ITK 类的定义。

#include <iostream>

template <typename TPixel, int Dimensions>
struct Image
{
};

// The deduction works with this
// template <typename TComponent, int NumberOfComponents>
// struct Vector
// {
// };

// The deduction does NOT work with this (unsigned int vs int above)
template <typename TComponent, unsigned int NumberOfComponents>
struct Vector
{
};

template <typename TComponent, int NumberOfComponents>
void FillImage(Image<Vector<TComponent, NumberOfComponents>, 2 >* const image,
               Image<Vector<TComponent, NumberOfComponents>, 2 >* const output)
{
  std::cout << "Works." << std::endl;
}

int main(int, char* [] )
{
  typedef Image<Vector<float, 3>, 2 > ImageType;

  ImageType* image = new ImageType;
  FillImage(image, image);
  return 0;
}
于 2012-07-31T20:44:03.960 回答