File: TePDIFusion_test.cpp

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.2-10
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 61,560 kB
  • ctags: 37,110
  • sloc: cpp: 225,052; ansic: 31,562; makefile: 807; sh: 80; xml: 37
file content (697 lines) | stat: -rw-r--r-- 24,817 bytes parent folder | download | duplicates (8)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
#define TEAGN_ENABLE_STDOUT_LOG

#include <TePDIExamplesBase.hpp>

#include <TePDIParameters.hpp>
#include <TeAgnostic.h>
#include <TePDIUtils.hpp>
#include <TePDIPrincipalComponentsFusion.hpp>
#include <TePDIIHSFusion.hpp>
#include <TePDIVenturaFusion.hpp>
#include <TePDIGarguetFusion.hpp>
#include <TePDIGeneralizedIHSFusion.hpp>
#include <TePDIIHSWaveletFusion.hpp>
#include <TePDIPCAWaveletFusion.hpp>
#include <TePDIWaveletAtrousFusion.hpp>
#include <TePDIWiSpeRFusion.hpp>

#include <TeInitRasterDecoders.h>
#include <TeProgress.h>
#include <TeStdIOProgress.h>
#include <TeRasterParams.h> 

#include <vector>

void GarguetFusion_test()
{
  TePDIParameters params1;

  /* Building rasters */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers_b2_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  TePDITypes::TePDIRasterPtrType lowres_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers_b2_crop_contraste_halfsampled.tif" ), 
    'r' ) );
  TEAGN_TRUE_OR_THROW( lowres_raster->init(), 
    "Unable to init input_raster2" );    
    
  TePDITypes::TePDIRasterPtrType output_raster;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), "output_raster Alloc error" );
    
  params1.SetParameter( "reference_raster" , reference_raster );
  params1.SetParameter( "lowres_raster" , lowres_raster );
  params1.SetParameter( "output_raster" , output_raster );
  params1.SetParameter( "reference_raster_band" , 0 );
  params1.SetParameter( "lowres_raster_band" , 0 );
  
  TePDIGarguetFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Reset(params1), "Reset failed" );
  
  TEAGN_TRUE_OR_THROW( fusion.Apply(), "Apply error" );
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster,
    TEPDIEXAMPLESBINPATH "Fusion_Garguet_test.tif" ), "GeoTIF generation error" );
}


void VenturaFusion_test()
{
  TePDIParameters params1;

  /* Building rasters */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers_b2_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  TePDITypes::TePDIRasterPtrType lowres_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers_b2_crop_contraste_halfsampled.tif" ), 
    'r' ) );
  TEAGN_TRUE_OR_THROW( lowres_raster->init(), 
    "Unable to init input_raster2" );    
    
  TePDITypes::TePDIRasterPtrType output_raster;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), "output_raster Alloc error" );
    
  params1.SetParameter( "reference_raster" , reference_raster );
  params1.SetParameter( "lowres_raster" , lowres_raster );
  params1.SetParameter( "output_raster" , output_raster );
  params1.SetParameter( "reference_raster_band" , 0 );
  params1.SetParameter( "lowres_raster_band" , 0 );
  
  TePDIVenturaFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Reset(params1), "Reset failed" );
  
  TEAGN_TRUE_OR_THROW( fusion.Apply(), "Apply error" );
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster,
    TEPDIEXAMPLESBINPATH "Fusion_Ventura_test.tif" ), "GeoTIF generation error" );
}


void IHSFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the rgb raster */
  
  TePDITypes::TePDIRasterPtrType rgb_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( rgb_raster->init(), 
    "Unable to init input_raster1" );

  TePDITypes::TePDIRasterVectorType lowres_rasters;
  lowres_rasters.push_back( rgb_raster );
  lowres_rasters.push_back( rgb_raster );
  lowres_rasters.push_back( rgb_raster );

  std::vector< int > lowres_channels;
  lowres_channels.push_back( 0 );
  lowres_channels.push_back( 1 );
  lowres_channels.push_back( 2 );
  
  /* Building output raster */
    
  TePDITypes::TePDIRasterPtrType output_raster;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster,
    1, 1, 1, false, rgb_raster->params().dataType_[ 0 ], 0 ), "output_raster Alloc error" );
    
  /* Building algorithm parameters */
    
  TePDIParameters params1;
    
  params1.SetParameter( "reference_raster" , reference_raster );
  params1.SetParameter( "lowres_rasters" , lowres_rasters );
  params1.SetParameter( "lowres_channels" , lowres_channels );
  params1.SetParameter( "output_raster" , output_raster );
  params1.SetParameter( "reference_raster_band" , 0 );
  params1.SetParameter( "interpol_method" , TePDIInterpolator::NNMethod );
  
  TePDIIHSFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Reset(params1), "Reset failed" );
  
  TEAGN_TRUE_OR_THROW( fusion.Apply(), "Apply error" );
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster,
    TEPDIEXAMPLESBINPATH "Fusion_IHS_test.tif" ), "GeoTIF generation error" );
}


void TePDIPrincipalComponentsFusion_test()
{
	TePDIParameters params;

	TePDITypes::TePDIRasterVectorType input_rasters;
	TePDITypes::TePDIRasterVectorType output_rasters;
	std::vector<int> bands_direct;

	for (unsigned int b = 0; b < 3; b++)
	{
		TePDITypes::TePDIRasterPtrType inRaster(new TeRaster(
		  TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif", 'r'));
		TEAGN_TRUE_OR_THROW(inRaster->init(), "Unable to init inRaster " + 
		  Te2String(b));
		input_rasters.push_back(inRaster);

		TePDITypes::TePDIRasterPtrType outRaster;
		TEAGN_TRUE_OR_THROW(TePDIUtils::TeAllocRAMRaster(outRaster, 1, 1, 1, 
      false, TeUNSIGNEDCHAR, 0), "RAM Raster " + Te2String(b+1) + " Alloc error");
		output_rasters.push_back(outRaster);
		
		bands_direct.push_back( (int)b );
	}

	TePDITypes::TePDIRasterPtrType reference_raster(new TeRaster(
	  std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r'));
	TEAGN_TRUE_OR_THROW(reference_raster->init(), "Unable to init reference_raster");

	params.SetParameter("input_rasters", input_rasters);
	params.SetParameter("bands", bands_direct);
	params.SetParameter("output_rasters", output_rasters);
	params.SetParameter("reference_raster", reference_raster);
	params.SetParameter("reference_raster_band", 0);
	params.SetParameter("resampling_type", 
	  TePDIInterpolator::NNMethod);
	params.SetParameter("fit_histogram", false);
	
	TePDIPrincipalComponentsFusion pcf;
	TEAGN_TRUE_OR_THROW(pcf.Reset(params), "Invalid Parameters");
	TEAGN_TRUE_OR_THROW(pcf.Apply(), "Apply error");
	
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_rasters[ 0 ],
    TEPDIEXAMPLESBINPATH "Fusion_PC_test_output_b0.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_rasters[ 1 ],
    TEPDIEXAMPLESBINPATH "Fusion_PC_test_output_b1.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_rasters[ 2 ],
    TEPDIEXAMPLESBINPATH "Fusion_PC_test_output_b2.tif" ), 
    "GeoTIF generation error" );        
}

void TePDIGeneralizedIHSFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the input rasters */
  
  TePDITypes::TePDIRasterPtrType input_raster1( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_red_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( input_raster1->init(), 
    "Unable to init input_raster1" );
    
  TePDITypes::TePDIRasterPtrType input_raster2( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_green_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( input_raster2->init(), 
    "Unable to init input_raster1" );   
     
  TePDITypes::TePDIRasterPtrType input_raster3( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_blue_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( input_raster3->init(), 
    "Unable to init input_raster1" );       
  
  /* Building output rasters */
    
  TePDITypes::TePDIRasterPtrType ihs_output_raster1;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( ihs_output_raster1,
    1, 1, 1, false, TeFLOAT, 0 ), 
    "output_raster Alloc error" );
    
  TePDITypes::TePDIRasterPtrType ihs_output_raster2;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( ihs_output_raster2,
    1, 1, 1, false, TeFLOAT, 0 ), 
    "output_raster Alloc error" );
        
  TePDITypes::TePDIRasterPtrType ihs_output_raster3;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( ihs_output_raster3,
    1, 1, 1, false, TeFLOAT, 0 ), 
    "output_raster Alloc error" );     
       
  TePDITypes::TePDIRasterPtrType rgb_output_raster;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( rgb_output_raster,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );           
    
  /* Building algorithm parameters */
  
  TePDIParameters params;
  
  params.SetParameter("pp_type", 
    TePDIGeneralizedIHSFusion::MeanPreProcessing);
    
  params.SetParameter("mean", (double)128 );
      
  params.SetParameter("variance", (double)128 );
      
  vector<double> bands_center;
  bands_center.push_back( 0 );
  bands_center.push_back( 0 );
  bands_center.push_back( 0 );
  params.SetParameter("bands_center", bands_center );
  
  TePDITypes::TePDIRasterVectorType input_rasters;
  input_rasters.push_back( input_raster1 );
  input_rasters.push_back( input_raster2 );
  input_rasters.push_back( input_raster3 );
  params.SetParameter("input_rasters", input_rasters);
  
  params.SetParameter("pansharpening", (bool)false);
    
  params.SetParameter("reference_raster", reference_raster);
  
  params.SetParameter("reference_raster_band", (int)0 );
  
  TePDITypes::TePDIRasterVectorType ihs_output_rasters;
  ihs_output_rasters.push_back( ihs_output_raster1 );
  ihs_output_rasters.push_back( ihs_output_raster2 );
  ihs_output_rasters.push_back( ihs_output_raster3 );
  params.SetParameter("ihs_output_rasters", ihs_output_rasters);
  
  params.SetParameter("rgb_output_raster", rgb_output_raster);

  // Running algorithm
  
  TePDIGeneralizedIHSFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Apply( params ), "Apply error" );
  
  // Saving data to output files
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( rgb_output_raster,
    TEPDIEXAMPLESBINPATH "TePDIGeneralizedIHSFusion_test_rgb_output_raster.tif" ), 
    "GeoTIF generation error" );
}

void TePDIIHSWaveletFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the rgb raster */
  
  TePDITypes::TePDIRasterPtrType rgb_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( rgb_raster->init(), 
    "Unable to init input_raster1" );
  
  /* Building output rasters */
    
  TePDITypes::TePDIRasterPtrType output_raster1;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster1,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
    
  TePDITypes::TePDIRasterPtrType output_raster2;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster2,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
        
  TePDITypes::TePDIRasterPtrType output_raster3;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster3,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );        
    
  /* Building algorithm parameters */
  
  TePDIParameters params;
  
  TePDITypes::TePDIRasterVectorType input_rasters;
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  params.SetParameter("input_rasters", input_rasters);
  
  std::vector< int > bands;
  bands.push_back( 0 );
  bands.push_back( 1 );
  bands.push_back( 2 );
  params.SetParameter("bands", bands);
  
  TePDITypes::TePDIRasterVectorType output_rasters;
  output_rasters.push_back( output_raster1 );
  output_rasters.push_back( output_raster2 );
  output_rasters.push_back( output_raster3 );
  params.SetParameter("output_rasters", output_rasters);
  
  params.SetParameter("reference_raster", reference_raster);
  
  params.SetParameter("reference_raster_band", (int)0 );
  
  params.SetParameter("i_levels", (int)3 );
  
  params.SetParameter("filter_file", 
    std::string( TEPDIEXAMPLESRESPATH "b3spline.flr" ) );
    
  params.SetParameter("reference_levels", (int)3 );
  
  params.SetParameter("resampling_type", TePDIIHSWaveletFusion::NNMethod );
  
  params.SetParameter("fit_histogram", (bool)false );
  
  // Running algorithm
  
  TePDIIHSWaveletFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Apply( params ), "Apply error" );
  
  // Saving data to output files
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster1,
    TEPDIEXAMPLESBINPATH "TePDIIHSWaveletFusion_test_output_raster1.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster2,
    TEPDIEXAMPLESBINPATH "TePDIIHSWaveletFusion_test_output_raster2.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster3,
    TEPDIEXAMPLESBINPATH "TePDIIHSWaveletFusion_test_output_raster3.tif" ), 
    "GeoTIF generation error" ); 
}

void TePDIPCAWaveletFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the rgb raster */
  
  TePDITypes::TePDIRasterPtrType rgb_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( rgb_raster->init(), 
    "Unable to init input_raster1" );
  
  /* Building output rasters */
    
  TePDITypes::TePDIRasterPtrType output_raster1;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster1,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
    
  TePDITypes::TePDIRasterPtrType output_raster2;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster2,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
        
  TePDITypes::TePDIRasterPtrType output_raster3;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster3,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );        
    
  /* Building algorithm parameters */
  
  TePDIParameters params;
  
  TePDITypes::TePDIRasterVectorType input_rasters;
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  params.SetParameter("input_rasters", input_rasters);
  
  std::vector< int > bands;
  bands.push_back( 0 );
  bands.push_back( 1 );
  bands.push_back( 2 );
  params.SetParameter("bands", bands);
  
  TePDITypes::TePDIRasterVectorType output_rasters;
  output_rasters.push_back( output_raster1 );
  output_rasters.push_back( output_raster2 );
  output_rasters.push_back( output_raster3 );
  params.SetParameter("output_rasters", output_rasters);
  
  params.SetParameter("reference_raster", reference_raster);
  
  params.SetParameter("reference_raster_band", (int)0 );
  
  params.SetParameter("pca1_levels", (int)3 );
  
  params.SetParameter("filter_file", 
    std::string( TEPDIEXAMPLESRESPATH "b3spline.flr" ) );
    
  params.SetParameter("reference_levels", (int)3 );
  
  params.SetParameter("resampling_type", TePDIPCAWaveletFusion::NNMethod );
  
  params.SetParameter("fit_histogram", (bool)false );
  
  // Running algorithm
  
  TePDIPCAWaveletFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Apply( params ), "Apply error" );
  
  // Saving data to output files
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster1,
    TEPDIEXAMPLESBINPATH "TePDIPCAWaveletFusion_test_output_raster1.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster2,
    TEPDIEXAMPLESBINPATH "TePDIPCAWaveletFusion_test_output_raster2.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster3,
    TEPDIEXAMPLESBINPATH "TePDIPCAWaveletFusion_test_output_raster3.tif" ), 
    "GeoTIF generation error" ); 
}

void TePDIWaveletAtrousFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the rgb raster */
  
  TePDITypes::TePDIRasterPtrType rgb_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( rgb_raster->init(), 
    "Unable to init input_raster1" );
  
  /* Building output rasters */
    
  TePDITypes::TePDIRasterPtrType output_raster1;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster1,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
    
  TePDITypes::TePDIRasterPtrType output_raster2;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster2,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );
        
  TePDITypes::TePDIRasterPtrType output_raster3;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster3,
    1, 1, 1, false, TeUNSIGNEDCHAR, 0 ), 
    "output_raster Alloc error" );        
    
  /* Building algorithm parameters */
  
  TePDIParameters params;
  
  TePDITypes::TePDIRasterVectorType input_rasters;
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  params.SetParameter("input_rasters", input_rasters);
  
  std::vector< int > bands;
  bands.push_back( 0 );
  bands.push_back( 1 );
  bands.push_back( 2 );
  params.SetParameter("bands", bands);
  
  TePDITypes::TePDIRasterVectorType output_rasters;
  output_rasters.push_back( output_raster1 );
  output_rasters.push_back( output_raster2 );
  output_rasters.push_back( output_raster3 );
  params.SetParameter("output_rasters", output_rasters);
  
  params.SetParameter("reference_raster", reference_raster);
  
  params.SetParameter("reference_raster_band", (int)0 );
  
  params.SetParameter("rasters_levels", (int)3 );
  
  params.SetParameter("filter_type", TePDIWaveletAtrous::B3SplineFilter );    
    
  params.SetParameter("reference_levels", (int)3 );
  
  params.SetParameter("resampling_type", TePDIWaveletAtrousFusion::NNMethod );
  
  params.SetParameter("fit_histogram", (bool)false );
  
  // Running algorithm
  
  TePDIWaveletAtrousFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Apply( params ), "Apply error" );
  
  // Saving data to output files
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster1,
    TEPDIEXAMPLESBINPATH "TePDIWaveletAtrousFusion_test_output_raster1.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster2,
    TEPDIEXAMPLESBINPATH "TePDIWaveletAtrousFusion_test_output_raster2.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster3,
    TEPDIEXAMPLESBINPATH "TePDIWaveletAtrousFusion_test_output_raster3.tif" ), 
    "GeoTIF generation error" ); 
}

void TePDIWiSpeRFusion_test()
{
  /* Initializing the reference raster */

  TePDITypes::TePDIRasterPtrType reference_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_hrc_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( reference_raster->init(), 
    "Unable to init input_raster1" );
    
  /* Initializing the rgb raster */
  
  TePDITypes::TePDIRasterPtrType rgb_raster( new TeRaster(
    std::string( TEPDIEXAMPLESRESPATH "cbers2b_rgb342_crop.tif" ), 'r' ) );
  TEAGN_TRUE_OR_THROW( rgb_raster->init(), 
    "Unable to init input_raster1" );
  
  /* Building output rasters */
    
  TePDITypes::TePDIRasterPtrType output_raster1;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster1,
    1, 1, 1, false, rgb_raster->params().dataType_[ 0 ], 0 ), 
    "output_raster Alloc error" );
    
  TePDITypes::TePDIRasterPtrType output_raster2;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster2,
    1, 1, 1, false, rgb_raster->params().dataType_[ 0 ], 0 ), 
    "output_raster Alloc error" );
        
  TePDITypes::TePDIRasterPtrType output_raster3;
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeAllocRAMRaster( output_raster3,
    1, 1, 1, false, rgb_raster->params().dataType_[ 0 ], 0 ), 
    "output_raster Alloc error" );        
    
  /* Building algorithm parameters */
  
  TePDIParameters params;
  
  TePDITypes::TePDIRasterVectorType input_rasters;
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  input_rasters.push_back( rgb_raster );
  params.SetParameter("input_rasters", input_rasters);
  
  std::vector< int > bands;
  bands.push_back( 0 );
  bands.push_back( 1 );
  bands.push_back( 2 );
  params.SetParameter("bands", bands);
  
  TePDITypes::TePDIRasterVectorType output_rasters;
  output_rasters.push_back( output_raster1 );
  output_rasters.push_back( output_raster2 );
  output_rasters.push_back( output_raster3 );
  params.SetParameter("output_rasters", output_rasters);
  
  params.SetParameter("reference_raster", reference_raster);
  
  params.SetParameter("reference_raster_band", (int)0 );
  
  params.SetParameter("rasters_levels", (int)3 );
  
  params.SetParameter("filter_file", 
    std::string( TEPDIEXAMPLESRESPATH "b3spline.flr" ) );
    
  params.SetParameter("reference_levels", (int)3 );
  
  params.SetParameter("resampling_type", TePDIWiSpeRFusion::NNMethod );
  
  params.SetParameter("fit_histogram", (bool)false );
  
  params.SetParameter("satelliteName", std::string( 
    TEPDIEXAMPLESRESPATH "spot5.srf" ) );
  
  std::vector<int> bands_order;
  bands_order.push_back( 0 );
  bands_order.push_back( 1 );
  bands_order.push_back( 2 );
  params.SetParameter("bands_order", bands_order );
  
  // Running algorithm
  
  TePDIWiSpeRFusion fusion;
  
  TEAGN_TRUE_OR_THROW( fusion.Apply( params ), "Apply error" );
  
  // Saving data to output files
  
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster1,
    TEPDIEXAMPLESBINPATH "TePDIWiSpeRFusion_test_output_raster1.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster2,
    TEPDIEXAMPLESBINPATH "TePDIWiSpeRFusion_test_output_raster2.tif" ), 
    "GeoTIF generation error" );
  TEAGN_TRUE_OR_THROW( TePDIUtils::TeRaster2Geotiff( output_raster3,
    TEPDIEXAMPLESBINPATH "TePDIWiSpeRFusion_test_output_raster3.tif" ), 
    "GeoTIF generation error" );        
}

int main()
{
  TEAGN_LOGMSG( "Test started." );

  try{
    TeInitRasterDecoders();
    
    TeStdIOProgress pi;
    TeProgress::setProgressInterf( dynamic_cast< TeProgressBase* >( &pi ) );     

//    TePDIGeneralizedIHSFusion_test(); ALGORITHM NOT WORKING !!
    TePDIIHSWaveletFusion_test();
    TePDIPCAWaveletFusion_test();
    TePDIWaveletAtrousFusion_test();
//    TePDIWiSpeRFusion_test(); ALGORITHM NOT WORKING !!
    IHSFusion_test();
    GarguetFusion_test();
    VenturaFusion_test();
    TePDIPrincipalComponentsFusion_test();
  }
  catch( const TeException& excpt ){
    TEAGN_LOGERR( excpt.message() )
    return EXIT_FAILURE;
  }

  TEAGN_LOGMSG( "Test OK." );
  return EXIT_SUCCESS;
}