forked from echristophe/OTB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE_NOTES.txt
2460 lines (2090 loc) · 103 KB
/
RELEASE_NOTES.txt
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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
OTB-v.4.2.1 - Changes since version 4.2.0 (2014/09/19)
--------------------------------------------------------
* Bug fixed:
* OTB-lib:
* 0000973: Include directories in the wrong order
* 0000764: otbcli_ComputeImagesStatistics doesn't error check output file location
* other minor fix
OTB-v.4.2.0 - Changes since version 4.0 (2014/09/04)
--------------------------------------------------------
* Library:
* Core:
* Major compliance upgrade with index coordinates convention between OTB,
GDAL and OSSIM. OTB uses pixel centered convention, whereas GDAL and
OSSIM use corner pixel convention. More details on JIRA #647 and Mantis
#942
* Major performance improvment of Haralick Texture computation (6 to 10 times
faster)
* Add new texture feature (dissimilarity) in ScalarImageToAdvancedTexturesFilter
* Improvments of Simulation code in order to be able to use the solar
irradiance information when working with spectral responses for simulations.
* Support Jpeg2000 images through GDAL drivers (can use OpenJpeg, Kakadu, ECW)
* Reading/Writing RPC coefficients in GeoTIFF tags
* Cleaning of ITK pending patches
* Update internal ITK to 4.6.0
* Support SPOT6 metadata
* Integrate improvements from Monteverdi2
* Support clang 3.5.1
* Support MinGW compiler
* API change on the TOC calibration filters, previous classes were not
fully functional. Now supports any correction parameters set by user.
See Examples/Radiometry/AtmosphericCorrectionSequencement.cxx for
details on the migration.
* Better support of atmospheric corrections for Pleiades images. Proper
computation of satellite zenital angle using incidence angles and
satellite orientation angle convention
* Applications:
* Updated applications :
* Superimpose and BundleToPerfectSensor : Add a specific reprojection mode for PHR bundle
* OpticalCalibration : parameters more flexible, allow users to overwrite metadata values
* Bugs fixed:
* Monteverdi2
* 0000915: In mvd2 applications wrappers InputImageList parameters, only the first item of the list is dropable
* 0000960: Drop from file explorer doest not work.
* 0000928: Output results of applications are not selected in the dataset manager
* 0000908: Vector-image model settings serialization persistence (gamma)
* 0000919: Inconsistent no-data checks in StreamingVectorImageFilter<> and StreamingHistogramVectorImageFilter<>.
* 0000918: Image-view shift on click
* 0000907: Serialization/persistence of viewport settings
* 0000906: Quantiles editing on mono-bands images.
* 0000909: Color-setup on PANCHRO images.
* 0000905: Calculation of zoom-extent in Quicklook-view.
* 0000964: Wrong update of Gamme cursor position
* 0000929: Drag and Drop in otb application a dataset leads to the disappearance of the dataset into the widget
* 0000921: Application freezes at the end of image import.
* 0000947: Droping dataset to the last subgroup of the data tree crash the application
* 0000933: Drag a dataset from temporary in the dataset manager outside the tree leads to a crash
* 0000903: Removing mvd2 directory content leads to a core dumped as startup
* 0000920: Wide unzoom aborts application
* 0000917: Applying same quantiles to all channels crash the application
* 0000962: Monteverdi2 cannot be run on OSX (image file not found).
* 0000924: Monteverdi2 does not start after the check of OpenGL was added
* 0000923: Monteverdi2 does not start after the check of OpenGL was added
* Documentation
* 0000948: Softwareguide OTB 4-0 : section 14.2.2 SIFT Detector (from chapter 14 Feature Extraction) is empty.
* OTB-lib
* 0000955: Wrong computation of SFS Textures
* 0000940: Some output states are not correctly manage into Qt Application
* 0000939: crash with a GIF/BMP image with ColorInterp=Palette when we request overviews via GDAL
* 0000966: VectorDataExtractROIApplication does a strange reprojection
* 0000932: Error in LSMS
* 0000936: Sub-pixel disparity filter is not compatible with disparity maps over subsampled grids
* 0000914: MeanShiftSmoothing application foutpos parameters is always mandatory
* 0000943: TrainImagesClassifier and ListSampleGenerator problem
* 0000954: GeometriesChangeSpatialReference does not work
* 0000949: BundleToPerfectSensor application: in PHR mode, the ourpur geom file is the XS one, not the PAN one
* 0000926: OTB does not compile with clang 5.1
* 0000968: CommandLineLauncher needs 2 passes to load parameters
* 0000951: BundleToPerfectSensor application does not work in default mode with external ITK (internal ITK is fine)
* 0000944: OTB does not compile with ITK4.6 git version
* Monteverdi
* 0000957: Unable to display input and output of ExtractRoadExample in transparency mode in Monteverdi
OTB-v.4.0.0 - Changes since version 3.20 (2014/03/13)
--------------------------------------------------------
* Library:
* Core:
* [Breaking change !] Change OTB implementation and API to support ITK version 4.5
* More information at http://wiki.orfeo-toolbox.org/index.php/Migration_guide_OTBv4
* Refactor otbAttributesMapOpeningLabelMapFilter to be compatible with ITK 4.5
* Remove FLTK based Visualization part from OTB: all these projects are now in Monteverdi
* Rename EuclideanDistance as EuclideanDistanceMetric
* Remove otbMaskedScalarImageToGreyLevelCoocurenceMatrixGenerator
* Use local masks in otbHaralickTexturesImageFunction
* Remove methods of otbSystem.h which can be replaced by similar ones in itksys/SystemTools.hxx
* Move classes about Amplitude and Phase functors from visualization to basic filter
* otbImageToLabelMapWithAttributesFilter inherits from itkImageToImageFilter instead of itkLabelMapFilter
* Overload GenerateInputRequestedRegion in otbImageToLabelMapWithAttributesFilter
* Override VerifyInputInformation in otbImportGeoInformationImageFilter
* Adding a gamma parameter in VectorRescaleIntensityImageFilter to allow for gamma correction
* Clean up JoinHistogramMI code
* Fix race condition in BinaryFunctorNeighborhoodJoinHistogramImageFilter
* Remove unused OTB_USE_SYSTEM_VXL and OTB_VXL_DIR from OTBConfig and UseOTB
* Improve detection of Large Files Support by not unconditionnally defining LFS related macros
* Support for Visual Studio 2012
* Support for Visual Studio 2013
* Support compilation in MacOSX 10.9 with latest XCode
* Support for clang 3.5
* Testing:
* Correct multibaseline support
* Move test related to amplitude and phase functor from visualization to basic filters
* CMake:
* Use modern CMake style: no block-end arguments and all CMake command to lower case format
* ThirdParties:
* OTB support now ITK with version greater to 4.5.0 (internal and external)
* Remove FLTK dependency
* Remove GETTEXT dependency
* Remove LIBLAS dependency
* Remove PQXX dependency
* Improve support of muparser 2.0
* Deactivate the possibility offered by CURL to download multiple files in parallel
* Support mapnik 2.2
* Applications:
* Updated applications:
* ColorMapping : Remove dependency of ColorMapping to Visualization class
* Convert : Adding gamma correction method the convert application
* HomologousPointsExtraction : add mode.geobins.binsizey and mode.geobins.binstepy to allow for anisotropic geobins mode
* HomologousPointsExtraction : new mode.geobins.margin parameter to only search inside image center.
* Core framework:
* Improve the support of XML parameters input/output file
* Improve the input VectorData/Image/Filename parameter to give access to m_Input attribute
* Monteverdi:
* Support OTB-ITKv4 API
* Integrate FLTK visualization framework into Monteverdi from OTB and offers the possiblitity to use it into external project.
* Support of MacOSX 10.9 compilation
* Improve support of Windows platform for otbViewer
* Remove intertionalisation test from Monteverdi
* Bugs fixed:
* OTB-applications:
* 0000884: InputImage parameter in java wrappers didn't overload the input parameters provided by input XML file
* 0000883: InputImageList parameter in pyhton wrappers didn't overload the input parameters provided by input XML file
* 0000873: BandMath application in gui mode "Save to xml" option doesn't save "exp" parameter
* 0000836: Error in Exact Large-Scale Mean-Shift segmentation, step 2
* 0000824: otbgui_Orthorectification : changing the input image does not update UTM parameters
* 0000881: GenerateRPCSensorModel application generate stats file with wrong elevation value
* OTB-lib:
* 0000878: apTvDmStereoFramework fails with muParser 2.2
* 0000850: apTvDmBlockMatchingTest Parser error Unexpected token if
* 0000862: Cannot build OTB with mapnik 2.2
* 0000858: cannot build otb tests with ITK trunk
* 0000851: Build error on test 0000169-fftcomplextocomplex
* 0000861: CMake detects mapnik 2.2.0 as mapnik 0.7
* 0000859: Unable to compile OTB trunk with external ITK trunk
* Orfeo Toolbox (OTB):
* 0000849: otbgui applications scrambled file names
* 0000863: ConvertSensorToGeoPoint application in GUI mode execute button is not activate even if all parameters seem to be filled
* 0000872: Internal ITK 4.4.2 and ITK 4.5.0 source codes are mixed together in the OTB internal ITK source directory
* 0000864: MultiResolutionPyramid MTV2 is in an endless loop of generation if the parameter "Number of levels" is set with a negative value
* 0000830: otb::PolyLineImageConstIterator returns reference to temporary variable
* 0000823: problem with python wrapper for otbApplication 'rasterization'
* Documentation:
* 0000838: ITK classes disappeared from doxygen during migration to ITK 4.x
OTB-v.3.20 - Changes since version 3.18.1 (2013/11/13)
--------------------------------------------------------
* Library
* Core
* Fix trapezoidal function in otb::FuzzyVariable
* PleiadesImageMetadataInterface
* update calibration absolute gains for Pleiades (values provided by CNES and not read from metadata anymore)
* add calibration data for Pleiades 1B
* StreamingStatisticsMapFromLabelImageFilter : change accumulator type to double instead of unsigned int
* DEMHandler : support GeoTIFF as elevation
* GenericRSResampleImageFilter & StreamingResampleImageFilter
* add accessors for number of thread of deformation filter
* set number of threads to 1 by default for the deformation field generator
* SpotImageMetadataInterface : add relative spectral response for HRG1
* MeanShiftSmoothingImageFilter : add range bandwidth parameter to adapt spectral radius to actual pixel value
* StreamingStatisticsVectorImageFilter : protect against corner cases when image has 0 or 1 pixels
* ThirdParties
* Synced ossim plugins with the ossim repository
* Applications
* New applications :
* Large scale MeanShift set of applications : LSMSSegmentation, LSMSSmallRegionMerging, LSMSVectorization
* See recipe in the CookBook
* Updated applications :
* ClassificationMapRegularization : handle images with label up to 65535
* DimensionnalityReduction : added new parameter for saving transformation matrix
* DownloadSRTMTiles : support projected input images
* MeanShiftSmoothing : expose range bandwidth parameter
* StereoFramework : deformation field are computed in float precision instead of double
* TrainImageClassifier : fix ordering confusion matrix in case of arbitrary labels, like in ComputeConfusionMatrix
* DimensionnalityReduction : add bounds for number of components depending on input image
* Core framework :
* Fix otbgui_XXX scripts to check for existence of otbgui.sh
* Support saving and loading application parameters from/to XML files
* Support extended filename for complex input images
* QtWidgetModel emits a signal with associated exception in case an error occurs during application execution
* Bugs fixed :
* OTB library
* 0000805: All links in html FAQ return Error 404
* 0000776: computeImagesStatistics imagelist input confusing error
* 0000804: str and int concatenate error in Python Wrapper Application.GetParameterValue
* 0000775: DoUpdateGUI() doing nothing for some parameters in QtWidget Wrapper
* 0000799: when using OTB Applications in graphic mode "Execute" button become clickable even if output data is not set
* 0000801: Some mandatory parameter with RoleOutput should not be set by user
* 0000770: Output parameter does not appear anymore in the command line helper
* 0000798: All the OTB app parameters are not all saved into the xml output file
* 0000779: [OTB]otbTrainImagesClassifier generates an output *.CSV confusion matrix with a wrong header
* 0000809: LSMS Vectorization application didn't support ouput file with "-" special character
* 0000807: otbKmzExport application generate weird kmz if the tilesize parameter is equal to zero
* 0000808: otbDownloadSRTMTiles application seems to be broken
* 0000803: otbApplicationLauncherCommandLine -inxml parameter does not retrieve pixel type for output image parameter
* 0000794: Tiling mechanism didn't work into Large Scale MeanShift application
* 0000760: ClassificationMapRegularization output pixel values are always on 8 bits
* 0000809: LSMS Vectorization application didn't support ouput file with "-" special character
* 0000803: otbApplicationLauncherCommandLine -inxml parameter does not retrieve pixel type for output image parameter
* 0000736: Error setting the index in RadiometricIndices application via python
* 0000800: Watershed mode of segmentation application produce an image without CRS even if the input image has one
* 0000806: Orthorectifcation application return black or weird output if we request an output in WGS projection
* 0000755: otb-bin-qt 3.18.1 package on Ubuntu installation triggered a warning at installation
* 0000801: Some mandatory parameter with RoleOutput should not be set by user
* 0000770: Output parameter does not appear anymore in the command line helper
* 0000793: Using dimensionality Reduction application with MAF algorithm and "Inverse output image" checked leads to crash
* 0000773: [OTB]otbStreamingStatisticsMapFromLabelImageFilter wrongly counts and accumulates vectorpixel values
* 0000398: OTB does not handle ortho-ready products properly
* Monteverdi2
* 0000789: Crash when selecting badly imported dataset.
* 0000787: Can't drag up in Quick look view with ortho product
* 0000750: Importation of a dataset which didn't exist because otb-app didn't run
* 0000791: Accuracy error when converting float (-4.31608963) to string.
* 0000792: Checking "Load otb application from xml file" crashes monteverdi2 on any application
* 0000785: ITK exception raised when/after importing lena512color.jp2
* 0000754: VertexComponentAnalysis app output importing leads to mvd2 crash
* 0000756: BandMath application does not get ready when adding multiple inputs
* 0000777: Wrong cartographic coordinates in pixel description widget for geotif product
* 0000749: Output of the applications are detected as inconsistent
* 0000752: When we run a otb app the selection of the dataset into the database manager didn't move to the output file
* 0000748: Drag and drop a dataset into a inputImageList widget of an otb-app didn't work with Win platform
* 0000747: Drag and drop an image into MVD2 didn't work with Win platform
* 0000746: Locked/unlocked button didn't work
* 0000768: Monteverdi 0.5.0 package depend now on QWT
* 0000790: Monteverdi 2 crashes when running segmentation
OTB-v.3.18.1 - Changes since version 3.18.0 (2013/07/22)
--------------------------------------------------------
* Library
* Core and Third Parties
* Update the JPEG2000ImageIO to decrease cache consumption and avoid memory leak between OTB and internal OpenJPEG library
* Improve the control over the generation of GDAL overviews with a new method to set the resolution factor
* CMake
* remove OTBParseArguments from OTB source because it is not used
* Examples
* Update HelloWorld example CMakeLists
* Applications
* Updated applications
* Update Stereo application documentation example with new parameters
* Add a log message about color mapping method used by application
* Core Framework
* Intialize properly QtWidgetChoiceParameter
* Increase minimun cmake version to 2.8.3 wwhen build applications
OTB-v.3.18 - Changes since version 3.16 (2013/07/05)
--------------------------------------------------------
Among the classical improvements and bug fixes to exisiting functionnalities, this release provides
the following main functionnalities :
* Huge improvements in Stereo framework, to compute DEM from stereo pairs :
check the StereoFramework application !
* Whole new classification framework, with seamless integration of all OpenCV classifiers in addition to the
existing libSVM classifier, kept for backward compatibility : check the TrainImageClassifier application !
* A classifiers fusion framework based on Dempster Shafer theory : check the FusionOfClassifications application !
The full list of improvements comes here :
* Library
* Core and Third Parties
* Expose Curl timeout as parameter
* OGRLayerStreamStitchingFilter : fix issue #610 'Attempt to delete shape with feature id (405674), but it is marked deleted already.'
* Preparation for ITKv4 : got rid of most patches in internal ITK version
* Removal of old deprecated methods in all OTB classes
* Fix mangling of internal OpenJPEG
* Simpler and more automatic configuration and build on Windows based on OSGeo4W
* Basic filters
* Add NoData value and flag for StreamingMinMaxVectorImageFilter
* StreamingStatisticsImageFilter & StreamingStatisticsVectorImageFilter : support for skipping Nan and for a background value
* Stereo
* New classes :
* DisparityMapTo3DFilter : convert disparity map in epipolar geometry to 3D image in epipolar geometry
* MultiDisparityMapTo3DFilter : convert several disparity maps in sensor geometry to a 3D image in sensor geometry
* LineOfSightOptimizer : algorithm to fuse several elevation values by line of sight optimisation
* BijectionCoherencyFilter : from 2 disparity maps, compute coherency left-right and right-left, and ouput a mask of coherent disparities
* Multi3DToDEMFilter : fuse several 3D images to produce an elevation map
* DisparityTranslateFilter : filter to translate epipolar disparities into sensor disparities
* PixelWiseBlockMatchingImageFilter : fix initialisation of metric and disparities
* PixelWiseBlockMatchingImageFilter : supports a shift on the subsampled grid
* SubPixelDisparityImageFilter : supports a subsampled grid (with shift)
* PixelWiseBlockMatchingImageFilter & SubPixelDisparityImageFilter : subsampled disparities are now consistent with the dispmap index spaces
* IO
* GDALImageIO : support reading overviews. "image.tif?&resol=3" is now supported as file name
* Extended file names now supports the "box" key for writing only a subset of the image
* Learning
* Generic framework of classification filters, integrating OpenCV classifiers and libSVM
* New classes
* MachineLearningModel
* MachineLearningModelFactory
* LibSVMMachineLearningModel, based on pre exsiting libsvm functionnalities
* OpenCV based classifiers :
BoostMachineLearningModel DecisionTreeMachineLearningModel GradientBoostedTreeMachineLearningModel
KNearestNeighborsMachineLearningModel NeuralNetworkMachineLearningModel
NormalBayesMachineLearningModel RandomForestsMachineLearningModel SVMMachineLearningModel
* ConfusionMatrixCalculator : add correspondence between class label and indices
* ConfusionMatrixMeasurements : add new class for computation of precision, recall and F-score
* Fuzzy
* New Dempster Shafer based fusion of classifiers framework
* Theory explained in http://wiki.orfeo-toolbox.org/index.php/Information_fusion_framework
* New classes : DSFusionOfClassifiersImageFilter, ConfusionMatrixToMassOfBelief
* Segmentation
* Fix some numerical instabilities in mean shift segmentation filter
* Radiometry
* Fix spectral sensitivity reading of Pleiades images
* Add PHR 1B averaged solar irradiance provided by CNES
* Applications
* New applications
* Added new SRTM tiles downloader (DownloadSRTMTiles)
* Added new PLY file generator (GeneratePlyFile)
* TrainImageClassifier and ImageClassifier : made TrainSVMImageClassifier & ImageSVMClassifier
more generic and expose OpenCV classifiers.
Check the migration guide at : http://wiki.orfeo-toolbox.org/index.php/Classification_OTB_applications
* Updated applications
* StereoFramework :
* Handles several images in input by stereo couples
* More robust block matching with coherency checking in both directions
* Choice of metric for block matching
* Optional median filtering for disparities
* Add variance threshold on input images for masking pixels where variance is too low
* Add support for final projection of DEM in other SRS than WGS84
* ExtractROI : add a mode to fit another reference image
* StereoRectificationGridGenerator : disable agvdem by default
* StereoSensorModelToElevationMap application removed to avoid duplicating functionnalities provided by StereoFramework
* MaxiumuAutocorrelationFactor application removed to avoid duplicating functionnalities provided by DimensionnalityReduction
* BlockMatching : expose step parameter
* BlockMatching : supports a shift on the subsampled grid
* ColorMapping : remove flooding of logs
* TrainImageClassifier & ComputeConfusionMatrix : enhance reporting of confusion matrix by displaying real labels
* ReadImageInfo : add index of largest possible region
* ComputeImageStatistics : support for background values, add progress reporting
* CompareImages : use whole image when no ROI is provided
* RigidTransformResample : all transformations are now synced to be from input space to output space
* Core Framework
* Manage UTF8 paths in GUI
* Fix a crash in string list parameter widget in GUI
* Monteverdi
* Bug Fixes
* OTB-lib
* 0000707: Memory leaks in ApplicationWrappers
* 0000712: weird result of DempsterShaffer fusion of classification
* 0000685: UTF-8 paths not managed by Qt GUI in OTB Applications
* 0000686: Input file paths are deleted in some input fields of Qt GUIs
* 0000684: Impromptu cursor jumps in some input fields of Qt GUIs
* Documentation
* 0000643: Installation documentation is outdated
* 0000720: [OTB Wiki] Unable to save an edited page with a hypertext link within it
* OTB-applications
* 0000704: results of otbcli_Segmentation reflexed
* 0000711: Segmentation Fault and crash of applications after modifying any input "ParameterType_StringList" field
* 0000709: otbcli_ComputeImagesStatistics includes NaNs and background values
* 0000710: otbcli_ComputeImagesStatistics "progress" switch doesn't work
* 0000697: ComputeConfusionMatrix
* 0000670: Confusion matrix report unclear
* 0000723: CompareImage application without ROI parameter results in FATAL error
* Monteverdi2
* 0000632: Monteverdi2 crashes after zooming twice
* 0000714: Import existing image in the database leads to a crash
* 0000675: Filename too long
* 0000708: MVD2 - Cache-dir removed from disk.
* 0000664: Very long loading time the second time with TIFF product
* 0000655: ProgressDialog does not close if error is displayed.
* 0000646: Viewport is black or diminish when maximising or resizing the window before opening image
* 0000645: Viewport goes black or diminish when maximising or resizing the window after opening image
* 0000639: Using keyboard arrows with Monteverdi2 maximized grabs all keyboards events
* 0000653: "monteverdi2 imagepath" creates a dataset model directory even if the image does not exist
* 0000699: Datasets loaded through mvd2-viewer command-line are disabled
* 0000679: Inconsistency between mouse cursor position and image displacement when dragging
* 0000669: The application don't detect the fact that I didn't modify the settings
* 0000668: Precision loss when loading/saving/reloading
* 0000666: upper quantile is not set to 0.0 on integer image type, when using min/max button
* 0000656: Import Windows does not close
* 0000659: At first startup, 'mvd2' dir is not created but Monteverdi2 shoudl create it
* 0000660: Wrong display settings saved
* 0000657: Radiometry values hide WGS84 coordinates in status bar
* 0000654: When minimzing the window, all widgets are closed
* 0000665: Monteverdi2-0.1 label in Startup menu does not have an icon
* 0000644: Make Monteverdi2 window autofit to the screen's size
* 0000638: Displacement in the image let a black line of pixels at the top of the full res window
* 0000636: Displacement related to keyboard arrows is to small
* 0000637: Displacements associated with vertical keyboard arrows are inverted with respect to Monteverdi 1.x
* 0000633: Can not edit spinner fields in Video Color Dynamics widget
* 0000634: Steps of Quantiles spin-box are to coarse
* 0000718: Confirm dialog only displays MD5 name when deleting dataset.
* 0000648: Deploy icons for Monteverdi2 in packages and also for local build if possible
OTB-v.3.16 - Changes since version 3.14.1 (2013/02/04)
--------------------------------------------------------
* Library
* Core and Third Parties
* Various enhancement of PleiadesImageMetadataInterface
* Added GetEnhancedBandNames method in ImageMetadataInterface
* Added read and write geom file support in OssimSensorModelAdapter
* Refactoring of DEMHandler:
* Turned the class into singleton
* Made the DEMHandler the single configuration point for all elevation setup
* Deprecated all methods from other classes allowing to configure elevation source
* Added Exhaustive testing of all configuration cases (DEM, geoid, default)
* Improved documentation
* Refactoring of SensorModelAdapter:
* Decreased size of the code
* Made methods stick to what OSSIM does
* Refactored RpcProjectionAdapter into RpcSolverAdapter
* Updated ossim to r21971
* IO
* Added support for GDAL driver creation options in GDALImageIO
* Added support for external geom files in ImageFileReader
* Extended filenames
* Added framework for extended filenames (see http://wiki.orfeo-toolbox.org/index.php/ExtendedFileName)
* Added support for extended filenames in ImageFileReader
* Added support for extended filenames in ImageFileWriter
* Refactored StreamingImageFileWriter and ImageFileWriter
* ImageFileWriter is now the only class to use
* StreamingImageFileWriter is a deprecated subclass provided for backward compatibility
* Fixed a bug when the largest possible region could be asked in some cases
* Projections
* Refactored the GCPsToSensorModel filter
* BasicFilters
* Simplified computation of coefficients in Frost and Lee filters
* Fusion
* Added the LMVM fusion algorithm (kindly contributed by A. Tzotsos)
* Radiometry
* Updated solar irradiance for WV2 (kindly contributed by D. Duros)
* Enhanced the TOA radiance computation for WV2 by integrating the effective bandwidth
* Learning
* Improved ListSample generation
* Added support for interior rings
* Fixed support for class mininum size
* Added a filter for classification map regularization by majority voting
* Segmentation
* Added segmentation algorithm based on multiscale morphological structures classification
* OBIA
* Added a filter to compute mean radiometric values for each segment of a labeled image
* Visualization
* Added a method to change RegionGlComponent color in ImageView
* Moved layer description in a single place
* Applications
* Framework
* Modified the elevation parameters handling to be consistent with refactoring
* New Applications
* Added new radiometric indices application (RadiometricIndices)
* Added new haralick and structural feature set texture extraction application (HaralickTextureExtraction, SFSTextureExtraction)
* Added new morphological operation applications (BinaryMorphologicalOperation,GrayScaleMorphologicalOperation)
* Added new local statistics extraction applications (LocalStatisticsExtraction)
* Added new edge extraction application (EdgeExtraction)
* Added new homologous points extraction application, including large scale extraction of tie points (HomologousPointsExtraction)
* Added new application to refine a sensor model from a geom file and a set of tie points (RefineSensorModel)
* Added new pan-sharpening application with 3 different algorithms (PanSharpening)
* Added new classification maps fusion application (FusionOfClassifications)
* Added new classification map regularization application (ClassificationMapRegularization)
* Added new confusion matrix computation application (ComputeConfusionMatrix)
* Added new tile fusion application (TileFusion)
* Added new end-to-end stereo pair to Digital Surface Model application (StereoFramework)
* Miscellanous
* Added an optional clamp in OpticalCalibration application output
* Added segmentation algorithm based on multiscale morphological structures classification in Segmentation application
* Added an optional output to the ReadImageInfo application to write the keyword list to a geom file
* Added support for large image in image mode of ColorMapping application
* Added support for histogram clamping settings and mask input in Convert application
* Added support for UTM zone and hemisphere estimation by default in OrthoRectification application
* Monteverdi
* Refactored to fit the new elevation configuration method
* Added Support for extended filenames
* Bug fixes
* OTB-Packaging
* 0000591: Remove "homemade" gdal from OTB PPAs
* Orfeo Toolbox (OTB)
* 0000608: Annoying GDAL warning about GCP in OTB writer
* 0000619: Superimpose application can't deal with 2 ortho images
* 0000622: Extended filename does not seem to be compatible with OTB applicatiosn (command line)
* 0000599: Optical calibration of DIMAPv1 PHR products
* 0000601: PHR optical calibration : Band_Solar_Irradiance at 999 on some files
* 0000618: MultiResolutionPyramid application can not handle relative output path
* 0000617: Crash with StreamingStatisticsVectorImageFilter
* 0000602: Geom file of extract of ortho PHR data are not loaded in the otbKeywordList
* 0000600: Wrong band ordering in 3 Pleiades metadata (gain, bias, solar irradiance)
* 0000629: Exception raised in otbcli_MaximumAutocorrelationFactor
* OTB-applications
* 0000616: otbcli_OpticalCalibration fails to read Worldview-2 metadata
OTB-v.3.14.1 - Changes since version 3.14.0 (2012/10/02)
--------------------------------------------------------
* Library
* Support external FLTK 1.3 on windows
* Simplify GDAL import during configuration
* Remove ossim dependencies from aeronet file reader
* Add adjacency effect in OpticalCalibration application
* Improve Pleiades support :
* TOA optical calibration available
* Improve support of mega tiles products
* Monteverdi
* Support of MacOSX 10.8
* Bug fixes :
* OTB-lib
* 0000577: Remove the need for both GDAL_CONFIG and GDALCONFIG_EXECUTABLE
* 0000573: tiff error in ossim when we read big uncompress JPEG2000 with Pleiades Primary level
* 0000552: Application GridBasedImageResampling doesn't behave properly outside the input grid
* 0000576: ImageToPointSetFilter work only with PointSets of type DefaultStaticMeshTraits
* 0000575: Not able to access SDS layers in HDF4 datasets using BandMath
* 0000572: using Segmentation application with .kml vector output using input which is not in WGS84 causes error
* 0000586: OTB does not compile with gcc 4.7 on some distros
* 0000579: Can not use files with "--" in their names in applications
* 0000556: Help parameters display output wrong MISSING parameters with application launched via command line
* 0000507: Java wrapper installation
* Monteverdi
* 0000570: SVM classification module works only with three bands images
* 0000583: Weird spacing value for the Resampling module output
* 0000581: Mean Shift Clustering Crash
* 0000474: In TileMap Import module, search place by name does not work anymore
* 0000529: Monteverdi fails to build using fltk 1.3 opensuse 12.1
* 0000582: Save/Quit button in the Resampling module does not close the module
* 0000571: Monteverdi crash in SVM Classification when trying to import SVM model twice
* Documentation
* 0000366: SG-html has 2 "bibliography"
* 0000371: Generate_FAQ script needs updates
* 0000367: Software Guide HTML : missing index.html
* 0000372: clean up Cookbook generation logs
OTB-v.3.14.0 - Changes since version 3.12.0 (2012/07/09)
--------------------------------------------------------
* Library
* New MeanShift implementation
* Add MeanShiftSmoothingImageFilter class with threading support
* Add MeanShiftKernels class
* Add MeanShiftConnectedComponentSegmentationFilter class to
concatenate MeanShift filter and connected component
* Add MeanShiftSegmentationFilter which performs segmentation of an
image by chaining a mean shift filter and region merging filter.
* Move MeanShiftVectorImageFilterExample to
MeanShiftSegmentationFilterExample
* MeanShiftImageFilter and MeanShiftVectorImageFilter are now
deprecated
* OGR encapsulation for use in large-scale segmentation framework
* Add a method converting a DataTree node to a list of OGRLayer*
* Add OGRDataSourceWrapper, OGRDriversInit, OGRLayerWrapper,
OGRFieldWrapper, OGRFeatureWrapper, OGRGeometryWrapper and OGR
classes to encapsulate OGR in the otb namespace
* Add GeometriesProjectionFilter, GeometriesSet, GeometriesSource and
GeometriesToGeometriesFilter classes to encapsulate OGR Geometries
projection
* Add OGRHelpers class for easier conversion to OGR string
* Add GeometriesProjectionFilter filter to
* Add ImageReference, OGRGeometriesVisitor classes
* Large-scale Segmentation Framework (OBIA)
* Create a new repository Segmentation
* Add GdalDataTypeBridge
* Add LabelImageToVectorDataFilter class
* Add StreamingImageToOGRLayerSegmentationFilter class which allow
stream segmentation and vectorization of the output label image
(based on OGRWrappers)
* Add LabelImageToOGRDataSourceFilter class to use GDALPolygonize
method to transform a Label image into a OGRDataSource
* Add PersistentImageToOGRDataFilter class. This class is a generic
PersistentImageFilter, which encapsulate any filter which produces
OGR data from an input Image
* Add option 4Connected/8Connected for Polygonization in
LabelImageToVectorDataFilter and LabelImageToOGRDataSourceFilter
* Add OGRLayerStreamStitchingFilter class to make fusion of geometries
in a layer (ogr) along streaming lines (based on OGRWrappers).
* Add LabelImageRegionMergingFilter class
* Add Example about OGRWrappers and HooverMetrics
* Pleiades Support
* enhance support of PHR data with DIMAPv2 official root_tag
* manage all cases from geotransform return by GDALJP2metadata
* enhance support of PHR data with GML box and Sensor Model
* Add TileImageFilter to support mosaic tiled images
* Support of TIFF pleiades image and associated DIMAP metadata
* upport for DIMAPv1 metadata format
* Stereo-rectification framework
* Add StereorectificationDeformationFieldSource class
* Add BlockMatchingImageFilter class for fast 2D block-matching
* Add NCCBlockMatching functor
* Add LPBlockMatching functor
* Adding an optionnal geoid file, and the possibility to use height
above ellispoid in DEMToImageGenerator
* Add SubPixelDisparityImageFilter class to interpolate disparities
* Add DisparityMapMedianFilter class
* Add AdhesionCorrectionFilter class
* Add DisparityMapToDEMFilter
* Add example in DisparityMap/StereoReconstructionExample
* Miscellaneous
* Modify otbImageLayer to enable the contrast stretch on full or
zoom view in Monteverdi Viewer module
* Add RasterizeVectorDataFilter class
* Add VectorDataToLabelImageFilter for VectorData rasterization
using an attribute to get the color for burning
* Add GDALDriverManagerWrapper class
* Add VectorDataEditVertexActionHandler class to allow user editing
of vertex in vector data.
* Add VectorDataTranslateGeometryActionHandler class to handles the
user action for geometries translation
* Add VectorDataEditionModel class for vertex edition and geometries
translation
* Add a method to remove a specific geometry in the VectorData
* AddVectorData method always do notification, add a flag (set to
true by default) to allow disabling it
* Enhance the support for Spot 1,2,3 metadata related to radiometry
* Add UnaryFunctorWithIndexWithOutputSizeImageFilter which implements
neighborhood-wise generic operation on image
* Add WatershedSegmentationFilter composite filter to allow use of
itk watershed inside large segmentation framework
* Add LabelImageRegionPruningFilter filter to merges regions in the
input label image according to the input image of spectral values
and the RangeBandwidth parameter.
* Rename VectorDataToImageFilter to VectorDataToMapFilter
* Move Hoover framework to Code/Segmentation
* Make RationalTransform inheriting from otb::Transform instead
of itk::Transform
* Add Spacing and Origin to RationalTransform
* Fix bug in computation of NDBBBI for Spectral rule based classifier
* Remove deprecated classes :
* QuickLookImageGenerator (replaced by StreamingShrinkImageFilter)
* GeometricMomentImageFunction (unused)
* Improve removal of geometries in VectorDataEditionModel
* HistogramActionHandler : avoid changing positions outside viewed
range
* PixelDescriptionModel : make the request for placename optional
(lags when internet access is slow)
* PackedWidgetManager : add Shown method, add Resizable setter
* Patch internal muparser to avoid bugs with static storage varialbe
deallocation in plugin context
* Modify MetaDataKey to avoid bugs with static storage varialbe
deallocation in plugin context
* Enable KML writing using OGR (was previously done internally
by libkml)
* GenericRSTransform can now be optimized using a set of tie-points,
calling ossim internal sensor model refining implementation
* PackedWidgetManager & SplittedWidgetManager : add method to set the
label of each group
* HistogramActionHandler : limit moves of asymptots with min/max of
histogram
* Curve2DWidget : add label support for each histogram
* ImageToEnvelopeVectorDataFilter : support a sampling rate in pixels
to be able to generate more than the four corners
* GeoInformationConversion : add IsESRIValidWKT to test WKT for shp
file support
* OGRIOHelper : ensure OGR driver manager is initialized when we need it
* New Applications
* Add PixelValue application
* Add HooverCompareSegmentation application
* Add GridBasedImageResampling application to perform grid-based
image resampling
* Add StereoRectificationGridGenerator application
* Add RadiometricWaterIndices application
* Add FineRegistration application for pixel-wise horizontal block
matching
* Add BlockMatching application
* Add DimensionalityReduction application
* Add LargeScaleSegmentation application
* Add DisparityMapToElevationMap application
* Add ComputeImageFeatures application
* Add VectorDataReprojection application
* Misc. Applications
* Add image origin to ReadImageInfoApplication
* Use now InputFilenameParameter and OutputFilenameParameter instead
of FilenameParameter
* Use InputFilename and OuputFilename instead of Filename
* New option in SVMClassifier application: sample.edg (non mandatory)
to manage special cases with small samples
* In KMeansClassification, Changing the random intialisation method
since it can generate centroids that are too far from the image
distribution and will never move
* Add AddRANDParameter option in order to set mersenne twister seed
for test reproducibility purpose
* Display which key is wrong in a set of application parameters
* Improve the help return by application
* MeanShiftSegmentation application, which duplicates Segmentation
application has been renamed to MeanShiftSmoothing application
* Rasterization application rewritten to use the new
OGRDataSourceToLabelImageFilter filter
The application can rasterize in binary mode or burn the value of
a specified field (similar to gdal_rasterize)
* ColorMapping : fix settings of predefined colormap
* ColorMapping : fix mode "method.image" in case image contains
continuous labels
* ImageEnveloppe : expose new sampling rate parameter
* otbViewer improvements : add handling of HDF and JPEG2000 files
* Remove custom Transmercator projection settings from application
* System
* Added FLTK License
* GDAL copyright notice removed because GDAL source code is not provided
with OTB
* OpenJPEG copyright file updated
* Update internal Ossim to revision 20606
* Support for Mapnik2
* Make siftfast compilation optional (OTB_USE_SIFTFAST cmake option)
* Support external tinyXML
* Support external muparser
* Support external libkml
* Add a FindOSSIM.cmake to detect OSSIM easier
* Update internal boost to 1.49.0
* Suppress galib from OTB source tree (wasn't used)
* Suppress KNN from OTB source tree (wasn't used)
* Enhance/Add find_package support for OpenThread, Ossim, Expat, PQxx,
Curl, GetText, ICUUC and LTDL
* Install OTB-custom FindXXX.cmake files along with OTB, to be used
from external projects
* Make installation with OTB_WRAP_JAVA honor CMAKE_INSTALL_PREFIX
* New compilers supported :
* clang 3.2 (current development version)
* gcc 4.6, 4.7, 4.8-dev
* Intel icc
* Bug fixes :
* OTB-lib
* 0000532: OTB_SHOW_ALL_MSG_DEBUG option changes
apTvClTrainSVMImagesClassifierQB456 test results
* 0000568: Unable to compile OTB with a local version of the
FFTW library
* 0000531: Cannot compile OTB 3.12.0 with external FLTK 1.3
on Windows
* 0000564: ColorMapping application crash when using support
image with input label image which contains holes in label
* 0000563: Can not install OTB elsewhere than /usr/lib anymore
* 0000557: Weird default value for RAM parameter in OTB application
* 0000544: SWIG 2.0.5 not supported on mac
* 0000554: OTB compilation : error while loading libfltk.so.9
* 0000559: Even if OTB_USE_MAPNIK is ON, otbapp_Rasterization
does not get compiled
* 0000558: GetParameterFloat method of WrapperApplication
class does not returns exactly input value
* 0000550: BlockMatching application throws an exception
when the "sub-pixel" mode is activated
* 0000549: Error message related to boost_any_cast in
StereoRectificationGridGenerator application
* 0000547: MeanShiftFilter validation test is fialinf for
Iteration and Spatial output
* 0000542: Problem with win arch and testing
* 0000521: Applications do not work anymore (Wrapper problem)
* 0000522: otbApplicationLauncherQT is not reflecting
the Disable/Enable state correctly
* 0000511: Tags are repeated twice in Application, when using Qt framework
* Monteverdi
* 0000555: monteverdi -in does not work with JP2 images
* 0000560: Monteverdi compilation error
* 0000527: While saving dataset with rescaling option,
the channels n° > 3 are incorrect
* OTB-applications
* 0000518: Missing GDAL dependencies
* 0000515: Space managing in command line
* 0000510: OTB-Applications cannot compile when the sources
are located in a directory with spaces in its name
* OTB-Packaging
* 0000545: Issues with Monteverdi 1.10 binary
applications on Mac OSX 10.6 (SL)
* 0000525: Python not found during ubuntu package build
* 0000526: Fix input of bfTvPolygonizationRasterization_WGS84
* Server administration
* 0000519: Search button of current OTB doxygen documentation
is broken
* 0000523: Update doxygen version to get
the same layout as the ITKv4 doxygen website
OTB-v.3.12.0 - Changes since version 3.10.0 (2011/01/31)
--------------------------------------------------------
* Library
* MaximumAutocorrelationFactorImageFilter
* MultivariateAlterationDetector
* Add Hyperspectral processing filters
* Dimensionnality estimation :
* EigenValueLikelihoodMaximization
* VirtualDimensionnality
* Dimensionnality reduction :
* PCAImageFilter - perform forward and inverse Principal Component
Analysis decomposition
* FastICAImageFilter - perform forward and inverse Independent
Component Analysis decomposition, based on FastICA algorithm
* MNFImageFilter - perform forward and inverse Maximum Noise
Fraction decomposition
* NAPCAImageFilter - perform forward and inverse Noise Adjusted
Principal Component Analysis decomposition
* Endmember extraction :
* VcaImageFilter - performs Vertex Component Analysis
* MDMDNMFImageFilter - performs Minimum Spectral Dispersion Maximum
Spatial Dispersion nonnegative Matrix Factorization
* Unmixing under Linear Mixture Model hypothesis :
* UnConstrainedLeastSquareImageFilter - standard least square
solving
* NCLSUnmixingImageFilter - least square with non-negativity
constraint
* FCLSUnmixingImageFilter - least square with non-negativity and
additivity constraint
* ISRAUnmixingImageFilter - image space reconstruction algorithm
* Anomaly detection :
* LocalRxDetectorFilter
* SparseUnMixingImageFilter : finds correlation in time series using
sparse representation
* Addition of several mathematical operations to support hyperspectral
filters implementation
* AngularProjectionImageFilter
* AngularProjectionSetImageFilter
* BinarySpectralAngleFunctor
* ConcatenateScalarValueImageFilter
* DotProductImageFilter
* SparseWvltToAngleMapperListFilter
* ProjectiveProjectionImageFilter
* VectorImageToMatrixImageFilter
Different sort of gradient filter for noise estimation in MNF :
* LocalActivityImageFilter
* LocalGradientImageFilter
* HorizontalSobelVectorImageFilter
* VerticalSobelVectorImageFilter
* SobelVectorImageFilter
* Add Simulation module, based on Prospect and Sail
* AtmosphericEffects
* DataSpec5B
* ImageSimulationMethod
* LabelMapToSimulatedImageFilter
* LabelToProsailParameters
* LeafParameters
* ReduceSpectralResponse
* ReduceSpectralResponseClassifierRAndNIR
* SailModel
* SatelliteRSR
* SpatialisationFilter
* SurfaceReflectanceToReflectanceFilter
* SpectralResponse
* Improve WaveletGenerator speed, and fix reconstruction issue is
multithreaded environment
* ClampImageFilter, ClampVectorImageFilter
* ThresholdVectorImageFilter
* Support for writing PDS files (Planetary Data System) in
ImageFileWriter, through GDALImageIO
* ImageRegionAdaptiveSplitter, RAMDrivenAdaptiveStreamingManager,
New streaming strategy in writer, taking advantage of both tile size
and pipeline memory print estimation
* Finer progress reporting in StreamingImageFileWriter
* Move ViewerManager application from OTB-Applications to OTB source
tree, and rename as otbViewer
* Factor MsgReporter class in OTB source tree, and reuse it in
Monteverdi
* HooverInstances, HooverConfusionMatrix : tools to evaluate a
segmentation against a ground truth
* Removed deprecated class MapProjection
* Removed streaming and threading support from
MeanShiftVectorImageFilter, since it was generating wrong labeled images
* Pleiades data support
* Update to openjpeg rev 1111
* Complete rework of JPEG2000ImageIO
* Tile caching support
* Multithreaded decoding
* GMLBox decoding
* Multi-resolution decoding support
* Experimental Pleiades metadata support in ossimplugins :
* RPC Sensor model
* Calibration coefficient
* Various information about the product
* New application module framework (BUILD_APPLICATIONS:BOOL=ON)
* New library OTBApplicationEngine to generate application module
as shared plugin objects
* This replaces small command line utilities in OTB-Applications
* Command line launcher for application module
* Generic Qt based widget to show/configure/run an application
* Qt based GUI application launcher
* SWIG module on top of OTBApplicationEngine to execute applications
from Python and Java
* Quickstart scripts provided for launching the commandline tools
(otbcli_XXX)
and for starting the Qt GUI (otbgui_XXX)
* The following applications are available in this release :
* CartographicDBValidation
* ComputePolylineFeatureFromImage
* DSFuzzyModelEstimation
* VectorDataDSValidation
* ChangeDetection
* MultivariateAlterationDetector
* Classification
* ComputeImagesStatistics
* ImageSVMClassifier
* KMeansClassification
* SOMClassification (Kohonen Self Organizing Map)
* TrainSVMImagesClassifier
* ValidateSVMImagesClassifier
* DimensionnalityReduction
* MaximumAutocorrelationFactor
* Disparitymap
* FineRegistration
* StereoSensorModelToElevationMap
* FeatureExtraction
* LineSegmentDetection
* Hyperspectral
* VertexComponentAnalysis
* HyperspectralUnmixing
* Projections
* BundleToPerfectSensor
* ConvertCartoToGeoPoint
* ConvertSensorToGeoPoint
* ImageEnvelope
* ObtainUTMZoneFromGeoPoint
* OrthoRectification
* RigidTransformResample
* Superimpose
* RadiometricIndices