Skip to content

Commit

Permalink
BUG: ApplyCosImageFilter was using sine.
Browse files Browse the repository at this point in the history
Suggested-by: Bill Lorensen <bill.lorensen@gmail.com>
  • Loading branch information
thewtex committed Nov 13, 2012
1 parent 00f62fb commit 15d527e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "itkImage.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkSinImageFilter.h"
#include "itkCosImageFilter.h"

int main( int argc, char* argv[] )
{
Expand All @@ -26,7 +26,7 @@ int main( int argc, char* argv[] )
ReaderType::Pointer reader = ReaderType::New();
reader->SetFileName( inputFileName );

typedef itk::SinImageFilter< ImageType, ImageType > FilterType;
typedef itk::CosImageFilter< ImageType, ImageType > FilterType;
FilterType::Pointer filter = FilterType::New();
filter->SetInput( reader->GetOutput() );

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b631ec0287c1ff79e80626d930666994
192df30b14737e713731b27dc7baab3e
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3dfbaca7602ae0cf96b75d9211d88bdd
b70277bffca8ecb6320d3a411b6bb245

0 comments on commit 15d527e

Please sign in to comment.