# =========================
LINK_DIRECTORIES(
- @PROJECT_SOURCE_DIR@/lib
- @PROJECT_BINARY_DIR@/lib
+ @PROJECT_BINARY_DIR@
+ @CMAKE_INSTALL_PREFIX@/bin
@CMAKE_INSTALL_PREFIX@/lib
)
#ifndef __FPA__IMAGE__FUNCTORS__REGIONGROWTHRESHOLDFUNCTION__H__
#define __FPA__IMAGE__FUNCTORS__REGIONGROWTHRESHOLDFUNCTION__H__
-#include <limits>
+#include <itkNumericTraits.h>
#include <fpa/Image/Functors/RegionGrowAllBelongsFunction.h>
namespace fpa
protected:
RegionGrowThresholdFunction( )
: Superclass( ),
- m_LowerThreshold( std::numeric_limits< TPixel >::min( ) ),
- m_UpperThreshold( std::numeric_limits< TPixel >::max( ) )
+ m_LowerThreshold( itk::NumericTraits< TPixel >::min( ) ),
+ m_UpperThreshold( itk::NumericTraits< TPixel >::max( ) )
{ }
virtual ~RegionGrowThresholdFunction( )
{ }