Skip to content
Snippets Groups Projects
Commit 749845c7 authored by Grégoire Mercier's avatar Grégoire Mercier
Browse files

COMP: Compilation issue resolved (link to the MultiScale lib)

parent 684affeb
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ public:
protected:
AngularProjectionBinaryImageFilter();
virtual ~AngularProjectionBinaryImageFilter();
virtual ~AngularProjectionBinaryImageFilter() { }
virtual void GenerateOutputInformation();
virtual void ThreadedGenerateData( const OutputImageRegionType & outputRegionForThread, int threadID );
......
......@@ -35,9 +35,11 @@ SparseUnmixingImageFilter< TInputImage, TOutputImage, TPrecision, TMotherWavelet
m_WvltFilter1 = WvltFilterType::New();
m_WvltFilter1->SetNumberOfDecompositions(2);
m_WvltFilter1->SetSubsampleImageFactor( 1 );
m_WvltFilter2 = WvltFilterType::New();
m_WvltFilter2->SetNumberOfDecompositions( m_WvltFilter1->GetNumberOfDecompositions() );
m_WvltFilter2->SetSubsampleImageFactor( m_WvltFilter1->GetSubsampleImageFactor() );
m_ListFilter = ListFilterType::New();
m_ListFilter->GetFunctor().SetLowerThreshold(10.);
......
......@@ -35,7 +35,7 @@ SET( otbHyperTests1_SRC
)
ADD_EXECUTABLE(otbHyperTests1 ${otbHyperTests1_SRC} otbHyperTests1.cxx)
TARGET_LINK_LIBRARIES(otbHyperTests1 OTBCommon OTBIO OTBBasicFilters OTBTesting)
TARGET_LINK_LIBRARIES(otbHyperTests1 OTBCommon OTBIO OTBBasicFilters OTBMultiScale OTBTesting)
ADD_TEST(vahineVCA1
${TESTEXE_DIR}/otbHyperTests1
......
......@@ -29,7 +29,7 @@
int otbSparseUnmixingImageFilterNewTest ( int argc, char * argv[] )
{
const unsigned int Dimension = 2;
typedef float PixelType;
typedef double PixelType;
typedef otb::Image< PixelType, Dimension > ImageType;
typedef double PrecisionType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment