mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
10 lines
209 B
C++
10 lines
209 B
C++
#include <itkImage.h>
|
|
#include <itkVnlForwardFFTImageFilter.h>
|
|
|
|
int main()
|
|
{
|
|
using FilterType = itk::VnlForwardFFTImageFilter<itk::Image<float, 2>>;
|
|
auto fftFilter = FilterType::New();
|
|
return 0;
|
|
}
|