-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitkImgFilter.h
32 lines (25 loc) · 875 Bytes
/
itkImgFilter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* \file: itkImgFilter.h
* \author: Sankhesh Jhaveri
* \brief: declares itkImgFilter class. This class reads an ITK image, performs edge detection
* and returns a VTK Image Actor
**/
#ifndef _ITKIMGFILTER_H_
#define _ITKIMGFILTER_H_
#include "baseFilter.h"
#include <itkCannyEdgeDetectionImageFilter.h>
class itkImgFilter : public baseFilter
{
typedef itk::CannyEdgeDetectionImageFilter< UTILS::ScalarImageType, UTILS::ScalarImageType > cannyFilterType;
typedef itk::ImageFileReader< UTILS::ScalarImageType > readerType;
cannyFilterType::Pointer cannyFilter;
readerType::Pointer reader;
protected:
virtual void setFilterInput( const vcl_string &filename );
virtual vtkSmartPointer<vtkImageActor> getFilterOutput( void );
public:
itkImgFilter();
void SetVariance( const float x );
void SetThreshold( const float x );
};
#endif //_ITKIMGFILTER_H_