-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRELEASE_NOTES.txt
1088 lines (833 loc) · 44 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.3.10.0 - Changes since version 3.8.0 (2011/06/30)
-----------------------------------------
* Monteverdi
* New Rasterization module
* New ImageStatistics module
* New BayesianFusion module
* New SAR Polarimetry modules (conversion, analysis)
* New Vector data to image manual registration module
* New connected component segmentation and OBIA based on user-defined criterions module
* Removed the Orthorectification since its functionnalities are covered by the Reprojection module
* Specify output map projection by EPSG code in reprojection module
* Handle multi band complex images
* Viewer module : Add "save screenshots" feature
* Viewer module now handles a NoData field, allowing to correctly rescale ortho-images
* DEM fields throughout the modules are now pre-filled with option in otb config file if correctly set
* Add a rectify mode in homologous points extraction module (register image without changing resolution)
* Applications with command-line interfaces and GUI
* Optical calibration
* Vectorial objects validation based on Dempster Shafer theory framework
* otbDSFuzzyModelEstimation
* otbComputePolylineFeatureFromImage
* otbVectorDataDSValidation
* Multi-images SVM classification framework
* EstimateImagesStatistics
* TrainImagesClassifier
* ValidateImagesClassifier
* ImageSVMClassifier
* Connected Component Segmentation and OBIA based on user-defined criterions
* Object Detection framework (adding the Histogram of Oriented Gradient feature)
* TrainHOGDetector
* HOGObjectDetector
* MeanShiftModesDetection
* TrainDeepSVMDetector
* Various new utilities :
* LineSegmentDetection
* Superimpose
* RigidTransformResample
* ConcatenateVectorData
* VectorDataExtractROIApplication
* VectorDataTransformFilterApplication
* OSMDownloader
* Library
* Add HistogramOfOrientedGradientCovariantImageFunction
* Add Framework for LANDSAT Spectral rule based classifier (contribution from J. Inglada)
* Add Multitemporal time point interpolators : SavitzkyGolayInterpolationFunctor, EnvelopeSavitzkyGolayInterpolationFunctor (contribution from J. Inglada)
* Add SAR Polarimetry conversions and analysis code :
* SinclairImageFilter
* SinclairReciprocalImageFilter
* SinclairToCircularCovarianceMatrixFunctor
* SinclairToCoherencyMatrixFunctor
* SinclairToCovarianceMatrixFunctor
* SinclairToMuellerMatrixFunctor
* SinclairToCircularCovarianceMatrixFunctor
* SinclairToReciprocalCircularCovarianceMatrixFunctor
* SinclairToReciprocalCoherencyMatrixFunctor
* SinclairToReciprocalCovarianceMatrixFunctor
* ReciprocalLinearCovarianceToReciprocalCircularCovarianceFunctor
* ReciprocalHAlphaFunctor
* ReciprocalCovarianceToReciprocalCoherencyFunctor
* ReciprocalCovarianceToCoherencyDegreeFunctor
* CoherencyToMuellerFunctor
* MuellerToReciprocalCovarianceFunctor
* MuellerToPolarisationDegreeAndPowerFunctor
* Add RationalTransform
* Add PipelineMemoryPrintEstimator: computes the total memory used by a pipeline, and proposes streaming parameters depending on available RAM
* Add Dempster Shafer framework
* MassOfBelief
* JointMassOfBeliefFilter
* Add a Dempster-Shaffer based vectorial objects validation framework
* TODO: List classes here
* AssymmetricFusionOfLineDetectorImageFilter: call SetNumberOfDirections on internal filters (contribution from A. Ferro)
* RADARSAT 1: more product types supported
* VectorDataToImageFilter: Binary rasterization available, support images of arbitrary size
* Add VectorDataRendering example: showing how to rasterize OSM roads onto an image for visualisation
* LineSegmentDetector & RightAngleDetection: algorithmic improvements
* GDALImageIO: multi dataset support (for MODIS HDF4)
* GDALImageIO: improve performance by avoiding unnecessary memory copies
* GDALImageIO: TIFF are now saved as TILED
* GDALImageIO: various improvements to support reading and writing of multiband complex data with all types supported by GDAL
* StreamingImageVirtualFileWriter, StreamingImageFileWriter : new streaming strategies, with integrated pipeline memory print estimation
* Curl:
* Add in-memory download support to avoid writing small temporary files
* Better handling of the exceptions than can be thrown when using curl
* Add ConcatenateVectorDataFilter
* Add OSMDataToVectorDataGenerator : Class implementing the download of the OSM file relative to an extent and a parser to generate VectorData from OSM Datas
* Add ImageToOSMVectorDataGenerator : Helper class to compute the extent of an image, use OSMDataToVectorDataGenerator for VectorData generation
* Add VectorDataTransformFilter : Apply an affine transform to a VectorData
* ImageToSURFKeyPointSetFilter : algorithmic improvements
* System
* Compilation on Windows and MacOS with mapnik
* Update internal tinyXML to 2.6
* Add ThirdPartiesUtilities: Refactoring OSSIM and CURL accesses so as to minimize dependencies using the Adapter pattern
* Bug fixes :
* OTB-lib
* 0000312: Systematic crash when opening images with GDAL (tif, png, jpeg, etc)
* 0000330: Suspicious log and output problem in ioImageToKmzAndMapFileProductExport
* 0000329: At least 2 platforms don't respect the nightly version for their dashboard submission
* 0000298: TestDriver : returns EXIT_SUCCESS when test is not registered
* 0000310: PersistentImageToVectorData process the input twice when only one stream is used
* 0000273: otbHarrisImageFilter applies final smoothing only over the 0-th direction; + wrong final scaling applied
* 0000228: Problems related to the --compare-ascii tool in OTB tests protocol
* 0000219: HDF dataset not openable with ImageFileReader
* 0000358: Remove ossim from otbFilterFunctionValuesDigitalGlobeTest
* 0000320: Design issue: VectorDataIOFactory should not be a template class
* 0000334: Some tutorials do not check argc/argv
* 0000311: No platform testing OTB_SHOW_ALL_MSG_DEBUG set to ON for examples compilation
* 0000245: Wrong path for GDAL_CONFIG or GDALCONFIG_EXECUTABLE cmake variable produce incoherent results in the OTB configuration
* 0000229: OTB driver in imageFileReader must support different file extensions related to the HDF format
* 0000222: Issues with the TerraSar-X ossim plugin
* 0000221: Fail to retrieve the pixel spacing from image metadata.
* 0000282: Unable to open tiff image
* 0000237: Boost / Fltk conflict
* 0000327: CMake configuration abort if no curl is available on system, even with OTB_USE_CURL is set to OFF
* 0000276: Trouble with the compare ascii when separations are tabulation
* Monteverdi
* 0000292: Tilemap import module not working
* 0000352: Monteverdi crashes on wrong DEM directory
* 0000270: Open RADARSAT2 products as an SAR image in Monteverdi
* 0000263: Vectorization module : weird behavior
* 0000297: Crash when open change detection output image
* 0000281: Crash opening a RAD image.
* 0000265: SVM learn module : crash when displaying results
* 0000254: Homologous point module
* 0000240: Importing shp file in SVM module in Monterverdi 1.6 always results in crash
* 0000348: Viewer setup : histogram settings disappear
* 0000349: Labeled image can't be viewed
* 0000249: otbTrainObjectDetector-cli: malloc(): memory corruption
* 0000251: Wrong output of the DEM to image generator module when working on a ROI of the image in raw geometry
* 0000226: otbSegmentationApplication: crash when overwriting a .shp file
* 0000223: Wrong positioning of polygons from otbSegmentationApplication and open with SVMclassification module (monteverdi)
* 0000242: Mean Shift: different display of results in the module and in the Viewer
* 0000317: Monteverdi extract ROI module can not perform extraction from geographical coordinates on SPOT5 data
* 0000253: Nodata value in SRTM result in wrong ortho-rectified image
* 0000315: Monteverdi ROI extraction module broken : can not select by drag&drop anymore
* 0000300: One viewer instance block another instance to display another image
* 0000269: Inoperative fields in the reprojection module
* 0000255: Image is not visible if scroll or Full window is minimized while working with SVM classification
* 0000267: Vectorization-Rasterization module
* 0000244: Pansharpening EO-1 image with Monteverdi produces NaN
* 0000227: Monteverdi crashing while displaying a .tif file
* 0000350: KMeans module : weird behavior of "Max nb of iterations"
* 0000248: In feature extraction module, for haralick textures : impossible to set min/max for binning
* 0000341: weird french warning in ms dos command window with monteverdi 1.7 exe
* 0000313: Unable to perform orthofusion of WV2 PAN+XS (4 bands)
* 0000239: Trouble in pixel descrition in Monteverdi viewer
* 0000336: Viewer Histogram settings not applied after channel order changes
* 0000304: Advanced save dataset module with scaling on results in visible strip in image
* 0000262: Wrong metadata interpretation
* 0000302: Can't open two image in the viewer
* 0000294: Monteverdi doesn't delete files in Caching
* 0000280: SVM classification and Feature extraction issues
* 0000247: Style of the new screenshots function in viewer module is ugly
* 0000238: Monteverdi spreads xml temporary files everywhere
* 0000241: A warning appears each time an image is read
* 0000271: Default RGB channels are wrong for WV2 images
* 0000250: Meanshift clustering module: spectral radius limited
* 0000306: Unable to export otb::Image in KMZ in the Monteverdi module "KMZ export"
* 0000279: Visualisation from vectorisation module does not use default channels for wv2 images
* OTB-applications
* 0000231: otbRasterizationApplication -pr options await for OGC WKT strings
* 0000318: otbOSMDownloader-cli does not work anymore
* 0000233: otbRasterizationApplication fail to rasterize SRTM water bodies shapefile with default parameters
* 0000232: Several minor changes in rasterization application
* 0000338: otbSegmentationApplication : Enable to use real values
* OTB-Packaging
* 0000296: gdal 1.8 debian package breaks TIFF support
* 0000301: Can't upgrade debian package between different OTB versions
* 0000347: Problem with current ubuntu Natty nightly package of Monteverdi
* 0000290: Make an Experimental submission on the dashboard with natty
* 0000355: Bad timestamp for nightly built Ubuntu packages
* 0000288: Nightly packages upload when launchpad is overloaded
* 0000345: debian package : enable mapnik
* 0000344: debian package : use system boost
* 0000326: CentOS packages for Monteverdi and OTB-Applications
* OTB-Qgis
* 0000272: problem with installation
OTB-v.3.8.0 - Changes since version 3.6.0 (2010/12/16)
-----------------------------------------
* Monteverdi
* New Polarimetric Synthesis module
* New DEM image extraction / HillShading module: creates an image from a DEM tiles directory, with optional hillshading
* New ColorMapping module: apply a colormap to a mono band image
* Viewer module: add multi input support, with slideshow or transparency mode, add more rendering functions, add splitted/packed layout option
* Vectorization module: new semi-automatic mode based on segmentation results proposals
* Applications
* Object Detection applications (see also http://wiki.orfeo-toolbox.org/index.php/Object_detection)
* EstimateFeatureStatistics to evaluate descriptors statistics on a set of images
* TrainObjectDetector: generates an SVM model from input images and a vector data
* ObjectDetector: detects points in an image from an SVM model
* Add automatically generated GUI wrappers for OTB processing chains
* Add FLTK wrapper
* Add a generic Qt based widget class
* Add a Qt GUI wrapper based on the generic Qt widget
* Add a Qgis plugin wrapper based on the generic Qt widget
* Library
* Improved local descriptors tools based on ImageFunction :
* Rework FlusserImageFunction and HuImageFunction to output all moments in one pass (FlusserMomentsImageFunction, HuMomentsImageFunction)
* Rework RealMomentsImagefilter and ComplexMomentImageFilter to output a matrix of all moments associated to p, q inferior to a given parameter (ComplexMomentsImageFunction, HuMomentsImageFunction)
* Add image function to compute a vector containing the local mean, variance, skewness and kurtosis (RadiometricMomentsImageFunction)
* Add local histogram image function (LocalHistogramImageFunction)
* Add image function to compute the local Fourier Mellin coefficients (FourierMellinDescriptorsImageFunction)
* Add a class to adapt any image function return types to itk::VariableLengthVector (ImageFunctionAdaptor)
* Add a class to build composite image functions (MetaImageFunction)
* New object detection framework (see also http://wiki.orfeo-toolbox.org/index.php/Object_detection)
* Add filter to generate negative samples (LabeledSampleLocalizationGenerator)
* Add filter to evaluate an image function on a set of point and generate ListSample (DescriptorsListSampleGenerator)
* Add filter to balance the sample number of different classes in a ListSample by generating new samples from existing ones plus noise (ListSampleToBalancedListSampleFilter, GaussianAdditiveNoiseSampleListFilter)
* Add filter to apply a shift/scale to a ListSample (ShiftScaleSampleListFilter)
* Add filter to detect object from an SVM model and an image function (ObjectDetectionClassifier)
* SVMClassifier: add hyperplanes distances as output
* GDALImageIO: support writing of non-streamable format (JPEG, PNG)
* Support reading vector images of std::complex
* BandMathFilter: add physical and image coordinates variables
* Add a class to generate a kmz file from an image
* System
* Internal liblas updated to 1.6.0b2 + OTB patches (root CMakeList.txt)
* Internal libsvm updated to 3.0 + OTB patches (additionnal kernels)
* Internal ITK: removed compilation of medical image formats library and associated ImageIO
* Internal ITK: removed dependency on libtiff, libjpeg, libpng and zlib, now handled by gdal
* Support for gcc-4.5
* Remove dxflib from Utilities for licensing issues
* Bug fix:
* Monteverdi
* 0000216: Monteverdi viewer unable to display multi band images
* 0000193: Crash in vectorization module when the after the activation of the semi-automatic mode
* 0000195: unable to perform TSX calibration with the sar calibration module in monteverdi 1.4
* 0000207: Vectorization module shift coordinates
* 0000202: Error message "otbSVMModel.txx:310 eps <= O" in the SVM classification module
* 0000194: error message opening dataset in monteverdi (development version)
* 0000200: Monteverdi -in option does not open viewer anymore
* OTB-applications
* 0000213: Problem in denomination of otb process chain wrapped as qgis plugin
* 0000201: otbFastOrthoRectif switched back to double precision again
* OTB-lib
* 0000192: Crappy support of gdal: GDALImageIO
OTB-v.3.6.0 - Changes since version 3.4.0 (2010/10/07)
-----------------------------------------
* Monteverdi
* New Vectorization module: creates vector data (polygons, lines and points) from image
* New BandMath module: mathematical operation on image bands
* New SpectralViewer module: designed to display hyperspectral images. also computes spectral angle
* New ObjectLabeling module: object based image analysis module, with SVM classification based on object features
* Applications
* otbFastOrthoRectif: fast orthorectification based on grid subsampling
* otbActiveLearning: architecture to enable active learning application (put your own algorithms in the middle)
* otbCompareImages: image comparison
* otbFineRegistration: produces disparity maps between 2 images
* Old GUI applications removed (now in Monteverdi): OrthoRectif, OrthoFusion, Classif, ChangeDetection, RadiometricCorrections
* Library
* Some classes are marked as deprecated and are available for one release. A migration guide to help the transition is available at http://wiki.orfeo-toolbox.org/index.php/Migration_guide
* Add filter to perform arbitrary mathematical operation on image bands (BandMathImageFilter)
* Add class to parse mathematical expression (Parser)
* Add interpolation function (BCOInterpolateImageFunction)
* Add filter to compute the intensity of a complex image (ComplexToIntensityImageFilter)
* Add filter to compare two big images (StreamingCompareImageFilter)
* Add filters to compute extrema of big images (StreamingMinMaxImageFilter and StreamingMinMaxVectorImageFilter)
* Add filter to perform fine registration between images (FineRegistrationImageFilter)
* Add filter for higher order texture computation (ScalarImageToHigherOrderTexturesFilter and MaskedScalarImageToGreyLevelRunLengthMatrixGenerator)
* Removal of the old textures: http://wiki.orfeo-toolbox.org/index.php/Textures
* Add support for Worldview2 data
* Add margin sampler for SVM (SVMMarginSampler)
* Add generic resample filter that reproject in any arbitrary projection: cartographic, sensor model (GenericRSResampleImageFilter)
* Add class to produce a RPC model from a physical model (PhysicalToRPCSensorModelImageFilter)
* Add classes related to SAR calibration (SarParametricMapFunction, SarRadiometricCalibrationFunction, SarRadiometricCalibrationFunctor, SarRadiometricCalibrationToImageFilter)
* Add an action handler for the visualization enabling dragging (DragFullWindowActionHandler)
* System
* Internal ITK updated to 3.20.0 + OTB Patches
* Internal OSSIM and ossim plugins updated to svn revision 18162 + OTB patches (almost none left)
* Enable the use of an external build of libLAS
* Support compilation on MSVC 2010 and Windows Seven
* Better handling of FLTK configuration
* Support compilation of Monteverdi on linux 32 bits systems with official FLTK package
* Lots of coverage improvements
OTB-v.3.4.0 - Changes since version 3.2.0 (2010/06/30)
-----------------------------------------
* Applications
* New utility otbConvertSensorToGeoPoint to convert from sensor coordinates to lon/lat
* otbExtractROI can change its output type
* New utility otbSplitImage to separate a multispectral image into N images
* otbConcatenateImage can change its output type
* otbConvert can now use a log transfer function when rescaling the image
* Library
* Add HillShadingFilter to produce hill shade image from DEM (HillShadingFilter)
* Add point set density function (gaussian, epanechnikov)
* Add filter to extract a subset from a point set (PointSetExtractROI)
* Add filter to apply a transform to a point set (TransformPointSetFilter)
* Add filter to generate a random point set (RandomPointSetSource)
* Add class to compute confusion matrix (ConfusionMatrixCalculator)
* Add class to generate a list of samples from a vector data (ListSampleGenerator)
* Add a class to compute the ground spacing (GroundSpacingImageFunction)
* Add a class to read 6S spectral sensitivity files (SpectralSensitivityReader)
* Fix radiometry correction for SPOT5
* Fix compilation on windows using osgeo4w dependencies
* Lots of bug fixes
* System
* Internal ITK updated to 3.18.0 + OTB Patches
* Internal OSSIM updated to svn revision 16861 + OTB patches
* Internal OSSIM SAR plugins updated to svn revision 17643 + OTB patches
* Internal libkml updated to 1.2.0
* Internal siftfast updated to 1.2
* Internal boost updated to 1.42
OTB-v.3.2.0 - Changes since version 3.0.0 (2010/01/15)
-----------------------------------------
* Applications
* Monteverdi, a new all-in one user-friendly graphical tool
for remote sensing data processing released as a separate package
(see README file). Windows binary package of Monteverdi is available
and was installed on various operating system including
Windows 2000/XP/Vista/Seven.
* Library
The library includes these additions
* Support for TerraSarX, Quickbird and Spot5 calibration metadata
* Simplification of the interface to access image metadata
* Support for Aeronet files
* Various filters for Object Based Image Analysis based on LabelObjectMaps
* Support for RPC sensor model estimation from a set of Ground Control Points
* Support for affine transform least-square estimation from a set of tie points
* Support for SVM cross-validation and parameters optimization
* Box and Whiskey filter to detect outliers on VectorImage
* Add several Euclidian distance classes
* Exhaustive exponential optimizer for learning
* Enhanced SOM algorithm taking into account invalid missing values
* Wavelet transform
* Filters for GIS database interaction (postgis database)
* ImageFileWriter now supports streaming natively
* Use of a configuration file to change some parameters without recompiling
* Lots of bug fixes
* System
* Internal ITK updated to 3.16.0 + OTB Patches
* Internal OSSIM updated to svn revision 15872 + OTB patches
* Home brewed metadata SAR reader were moved to ossimplugins
* Experimental support for internationalization
* Facilitate installation on Mac OSX platform (OTB is now able
to compile on Mac OSX by using external libraries like GDAL downloaded
from Macports)
OTB-v.3.0.0 - Changes since version 2.8.0 (2009/05/11)
-----------------------------------------
* Applications
- Urban area extraction (Pléaides, QB, Ikonos, SPOT5). For more details,
see the README file
- Image to Data Base registration (Pléiades, QB). For more details, see
the README file
- Feature Extraction: add new textures, new radiometric indexes and
add MeanShift capabilities
* Library
The library includes these additions
- Cloud detection for QB/Pléiades images
- Alignment and right angle detection (Burns, Grompone)
- Radiometric indices (vegetation, water, soil)
- Optimized texture computations including Haralick, SFS, Pantex, Edge density
- SIFT density image function and filter
- Object-based segmentation and filtering
- LSD line segment detector and right angle detector
- PCA computation
- Automated loading of radiometric correction parameters (SPOT, Ikonos)
- Attribute support for shapefile (reading only)
- Optimization of vector data
- Visualisation refactoring: for more details,
see http://wiki.orfeo-toolbox.org/index.php/Visualisation_Refactoring
* System
- Updated OSSIM library
- Updated ITK library (3.12.0)
- Miscellaneous bug fixes (support for gdal 1.6)
- Fixed some problems under Visual and Cygwin platforms.
* Distribution
- Distribution of Windows binaries packages installation for
OTB-Application (OTB-Applications-3.0.0-win32.exe)
- Distribution of Windows binaries packages for GDAL library 1.6.0 for
MSVC V71 and MSVC V80 compiler (http://www.orfeo-toolbox.org/packages)
OTB-v.2.8.0 - Changes since version 2.6.0 (2009/01/15)
-----------------------------------------
* System
- ITK version updated to 3.10.1
- liblas library added
- ossim gdal plugin added
- change in OpenGL access for viewer
- Edison code from mean shift
* Library
- Support for Lidat data
- SIFT and SURF implementation
- Mean Shift algorithm
- Conversion of vector data projection (kml, shapefiles)
* Applications
- Object counting
- Fine Registration
- Road Extraction
OTB-v.2.6.0 - Changes since version 2.4.0 (2008/10/31)
-----------------------------------------
* System
- GCC 4.3 compatibility
- ITK version updated to 3.8
- FLTK version updated to 1.1.9
- OpenThreads library added
- Expat library added
* Library
- SAR Polarimetry synthesis classes
- Kullback Leibler supervised change detection
- KML support
- Gabor filters implementation
- Optimized convolution using FFT
- CNES RAD format support
- NCC and MI registration filters for diparity map estimation
- Support for MegaWave image format (contributed by Eric Bughin)
* Applications
- Object segmentation application
- Feature extraction application
- Land Cover Map application
- SAR polarimetric synthesis application
- 3D & stereo anaglyh viewer application
- Command line conversion from/to all image formats supported by OTB
OTB-v.2.4.0 - Changes since version 2.2.0 (2008/07/24)
-----------------------------------------
- Added OTB_DISABLE_CXX_EXAMPLES_TESTING : allows to generate or
not only examples testing
- Added OTB_USE_JPEG2000 : experimental support for jpeg2000 files.
*Common:
Extraction ROI Classes :
- Lifting of the otbExtractionBase classe
- Correction of the SetExtractionRegion method
*BasicFilters:
- Added pixel size matching in otbSpectralAngleDistanceImageFilter
- Modification of otb::ConvolutionImageFilter class to allow the
use of non-normalized convolution filters
*Platforms:
- Fixed compilation problems using external FLTK version < 1.1.9
under fedora unix distribution.
- Mac OS X 10.5 supported
*Applications:
- Added an supervised image classification application (otbSupervisedClassification)
- Added an orthorectifcation application (otbOrthoRectifAppli)
- Added an orthofusion application (otbOrthoFusionAppli)
*Markov:
Added full Markov framework for segmentation, restauration and filtering
Added related classes:
- otb::MarkovRandomFieldFilter
- otb::MRFEnergyEdgeFidelity
- otb::MRFEnergyGaussianClassification
- otb::MRFEnergyGaussian
- otb::MRFEnergy
- otb::MRFEnergyPotts
- otb::MRFOptimizer
- otb::MRFOptimizerICM
- otb::MRFOptimizerMetropolis
- otb::MRFSampler
- otb::MRFSamplerMAP
- otb::MRFSamplerRandom
- otb::MRFSamplerRandomMAP
Added related examples:
- MarkovClassification1Example
- MarkovClassification2Example
- MarkovRegularizationExample
- MarkovRestaurationExample
*Projections
Added Lambert 93 cartographic projection with otb::Lambert93Projection class
* Utilities:
- Corrections on new SAR models integrated to OSSIM during release 2.2.0
OTB-v.2.2.0 - Changes since version 2.0.0 (2008/05/29)
-----------------------------------------
*BasicFilters:
Added classes for data importation:
- otb::ImportImageFilter
- otb::ImportVectorImageFilter
Added classes for image interpolation:
- otb::WindowedSincInterpolateImageBlackmanFunction
- otb::WindowedSincInterpolateImageCosineFunction
- otb::WindowedSincInterpolateImageGaussianFunction
- otb::WindowedSincInterpolateImageHammingFunction
- otb::WindowedSincInterpolateImageLanczosFunction
- otb::WindowedSincInterpolateImageWelchFunction
- otb::ProlateInterpolateImageFunction
Added class for resampling
- otb::RationalQuotientResampleImageFilter
Added classes for labelization
- otb::LabelizeImageFilterBase
- otb::LabelizeConfidenceConnectedImageFilter
- otb::LabelizeConnectedThresholdImageFilter
- otb::LabelizeNeighborhoodConnectedImageFilter
*Radiometry:
- Bug fixed on otb::DEMCaracteristicExtractor
*Visu
- Added histogram windows in otb::ImageViewer main class.
- Added polygon drawing support in otb::ImageViewer main class
*IO:
- Fixed bug in GDALImageIO to handle complex images
Added classes for vector data use:
- otb::VectorDataFileReader
- otb::VectorDataFileWriter
- otb::VectorDataIOFactory
- otb::VectorDataSource
*Common:
Added classes to handle vector data:
- otb::Polygon
- otb::VectorData
- otb::DataNode
Added classes to watch filter progression (ASCII mode):
- otb::StandardFilterWatcher
- otb::FilterWatcherBase
*Learning:
- Creation otb::SVMKernels containing a list a useful kernel for SVM
- Correction in Kohonen map classes
- Added convenience methods in SVMModel class
Added classification filters (streamed and threaded):
- otb::SVMImageClassificationFilter
- otb::SOMImageClassificationFilter
- otb::KMeansImageClassificationFilter
*FeatureExtraction:
Added implementation of Scalar Invariant Feature Transform
- otb::ImageToSIFTKeyPointSetFilter
*MultiScale:
Added mono and multi-scale convex/concave image classification
based on geodesic morphology characteristics.
- otb::ConvexOrConcaveClassificationFilter
- otb::GeodesicMorphologyDecompositionImageFilter
- otb::GeodesicMorphologyIterativeDecompositionImageFilter
- otb::GeodesicMorphologyLevelingFilter
- otb::ImageToProfileFilter
- otb::MorphologicalClosingProfileFilter
- otb::MorphologicalOpeningProfileFilter
- otb::MultiScaleConvexOrConcaveClassificationFilter
- otb::ProfileDerivativeToMultiScaleCharacteristicsFilter
- otb::ProfileToProfileDerivativeFilter
*Utilities:
- Updated the internal version of ITK to 3.6.0
- Corrections on OSSIM integration
- SVM library: creation of otb::ComposedKernelFunctor
allowing composed kernels
- Added SAR models in OSSIM library:
. Radarsat 1 (SGX and SGF)
. Envisat ASAR - SLC (IMS, APS) and PRI (IMP, APP)
. ERS - SLC and PRI
. Terrasar X - SLC and PRI
. Cosmo-Skymed - SLC and PRI
. Radarsat 2 - SLC and PRI
- Bug fixed in CMake configuration
- Added SIFT implementation in InsigthJournal
*Applications:
- Various Bug fix
- otbConvertGeoToCartoPoint and otbConvertCartoToGeoPoint map precision enhancement
- Added of histogram manipulation functionalities in otbImageViewer
- Added of shape file functionalities and large image support in
ICD application
- Added otbConcatenateImages application to concatenate multiple
image in the spectral domain
- Added an unsupervised image classification application based
on the KMeans algorithm (otbKMeansClassification)
- Added an unsupervised image classification application based
on the SOM algorithm (otbSOMClassification)
- Added an unsupervised image classification application based
on the SVM algorithm (otbSVMClassification)
- Added an application to create a contiguous unsigned short
labeled image from a colored labeled image (otbUnsignedShortRelabeling)
- Added an application to create a colored labeled image from an
unsigned short labeled image (otbRgbRelabeling)
*Examples:
- Added SIFT example (otb)
- Added SIFT example (ij)
- Added LabelizeNeighborhoodConnected example
- Added RationQuotientResample example
*Platforms:
- Fixed some problems under Visual, Cygwin and MinGW platforms.
OTB-v.2.0.0 - Changes since version 1.6.0 (2007/12/14)
-----------------------------------------
*Projections
- Bug correction in otb::OrthoRectificationFilter
*Fusion
- Added simple Pansharpening algorithm
- Fixed streaming bug on BayesianFusion filter
*Radiometry:
Added classes for atmospheric correction using the 6S Radiative Transfer Code:
- Luminance estimation otb::ImageToLuminanceImageFilter
- Reflectance estimation TOA: otb::LuminanceToReflectanceImageFilter
- Added Composite transform filter: otb::ImageToReflectanceImageFilter,
equivalent to the pipeline process ImageToLuminanceImageFilter
and LuminanceToReflectanceImageFilter filters
- Reflectance estimation TOC: otb::ReflectanceToSurfaceReflectanceImageFilter
- 6S effect correction: otb::SurfaceAdjacencyEffect6SCorrectionSchemeFilter
- DEM slope and shading estimations: otb::DEMCaracteriticsExtractor
*Common:
- Added otb::UnaryFunctorNeighborhoodVectorImageFilter
- Fixed bug on otb::ExtractROIBase class
*IO:
- Bug fixed on otb::VectorImage class
*BasicFilters:
- Bug correction in otb::StreamingStatisticsVectorImageFilter,
otb::StreamingStatisticsImageFilter,StreamingMatrixTransposeMatrixImageFilter
- Added PrintableImageFilter
- Fixed bugs on otb::FrostImageFilter and otb::LeeImageFilter
*Utilities:
- Fixed memory allocation bug on svm.cxx file
- 4 files from ITK 3.4.0 have been replaced by the cvs version to allow
correct use of the itkDivideImageFilter.h with VectorImage. These files
are:
Common/itkNumericTraitsVariableLengthVectorPixel.h
Common/itkNumericTraitsVariableLengthVectorPixel.cxx
Common/itkConceptChecking.h
BasicFilters/itkDivideImageFilter.h
*Examples
- Tutorials: Added OrthoFusion example
- Radiometry: Added AtmosphericCorrectionSequencement example
*Applications:
- Rename Pireo application to otbPireo
- Added transform coordinate point applications: otbConvertCartoToGeo
otbConvertGeoToCarto
- Pireo corrections in CMakeLists.txt (GUI dir source code) and
source code (suppress of call VnlModifiedOptimizer class)
*Platforms:
- Fixed some problems under Visual and MinGW platforms.
OTB-v.1.6.0 - Changes since version 1.4.0 (2007/10/25)
-----------------------------------------
*BasicFilters:
- Added StreamingVectorStatisticsImageFilter to compute
the second order stastics on a large vector image.
- Added the MatrixTransposeMatrixImageFilter to compute
the product of the matrix of vector pixels from image 1
in rowwith the the matrix of vector pixels from image 2
columns for large vector image.
- Added the otb::VectorImageTo3DScalarImageFilter which transforms
a vector image into a 3D scalar image where each band is represented
in a layer of the 3rd dimension.
- Added the otb::ImageListToVectorImageFilter and
otb::VectorImageToImageListFilter to convert a vector image
from/to an image list.
- Added the otb::ImageListToImageListApplyFilter which applies a given
scalar image filter to a list of images
- Added the otb::PerBandImageFilter, which applies a given scalar filter
to each band of a VectorImage. This is not the optimal way for most
processings but it allows the use of almost every scalar filter on
vector images.
- Added the otb::StreamingResampleImageFilter, which is a streaming capable
version of the itk::ResampleImageFilter.
*ChangeDetection:
- Added the otb::KullbackLeiblerDistanceImageFilter to compute the
Kullback-Leibler distance between two images.
- Added the otb::KullbackLeiblerProfileImageFilter to perform a
multi-scale change detection using the Kullback-Leibler distance.
*Common:
- Added an otb::Polygon, which represents a closed polyline on which
intersection or point interiority can be tested.
*IO:
- Added an otb::DEMHandler to fetch the elevation value in SRTMor DTED
directories.
- Added an otb::DEMToImageGenerator to generate an elevation map.
- Added a new tiling streaming mode.
- Added the otb::ImageGeometryHandler, which allows to handle seamlessly
the image geometry information.
- Fixed a bug in the otb::MSTARImageIO.
*Learning:
- Added methods to access the alpha values, the number of support vectors,
the support vectors themselves, the distance to the hyperplanes.
- Added the otb::SEMClassifier, implementing the Stochastic Expectation
Maximization algorithm to perform an estimation of a mixture model.
*MultiScale:
- Various name changes and bugfixes in the morphological pyramid
segmentation classes.
*Radiometry:
- The 6S Transfer Radiative Code compiles within OTB.
- Added the Radiometry directory, containing everything that has to do
with image radiometry.
- Added the NDVI and ARVI (3 input bands) vegetation index filters.
*Projections:
- Added the Projections directory, containing everything that has to do
with image projections.
- Added an otb::DEMHandler to fetch the elevation value in SRTM/DTED
directories.
- Added an otb::DEMToImageGenerator to generate an elevation map.
- Added an otb::OrthoRectificationFilter to perform orthorectification of
geo-referenced images.
- Added the forward and inverse sensor model projection.
- Added several map projection transforms (Eckert4, LambertConformalConic,
TransMercator, Mollweid, Sinusoidal, UTM)
*Fusion:
- Added the Fusion directory, containing everything that has to do
with image fusion.
- Added the otb::BayesianFusionImageFilter, a pan-sharpening filter which
algoritm has been kindly contributed by Julien Radoux.
*Documentation:
- Added various documented examples in the SoftwareGuide for the new classes.
- Added a Tutorial section in the SoftwareGuide.
*Utilities:
- Added the 6S library which will soon play a role in the radiometry module.
- Updated the internal version of ITK to 3.4.0.
*Platforms:
- Fixed the random segfault of otbInteractiveChangeDetectionAppli under Visual 8.0.
*Applications:
- Added the otbImageViewerManager application which allows to open multiple images,
configure viewers and link displays.
- Added the otbRoadExtraction which demonstrates the road extraction algorithm
implemented in the FeatureExtraction module.
- Added the otbOrthoRectifAppli application which allows to ortho rectify images in
command line using the brand new Projections module of the Orfeo ToolBox. Old rigid
orthoo rectification application has been moved to otbPseudoOrthoRectif.
- Added an option in CMakeLists.txt to use VTK or not (enable or disable the
following application).
- Added the Pireo registration application (VTK needed).
OTB-v.1.4.1 - Changes since version 1.4.0
-----------------------------------------
*Platforms:
- Minor corrections of main ./CMakeLists.txt to support users applications using OTB
install directory when using internal ITK.
OTB-v.1.4.0 - Changes since version 1.2.1
-----------------------------------------
*IO:
- Added the LineSpatialObject class.
- Added the ArcSpatialObject class.
- Added a DXF file reader to read spatial objects from DXF files.
*Common:
- Added a PolylineParametricPathWithValue class, to store a scalar value along with
a polyline.
- DrawPathFilter and DrawPathListFilter can now use the internal
scalar values of the path(if present) as a value to draw the path.
- Improved performances of the DrawPathFilter and DrawPathListFilter.
- Added the base class otbBinaryFunctorNeighborhoodVectorImageFilter (see ChangeDetection)
*BasicFilters:
- Added the ImportGeoInformationImageFilter providing a workaround
for metadata handling in pipeline execution.
- Added a VectorRescaleIntensityImageFilter, which rescales a vector
image on a per-band basis, clamping a user-defined percent of the
pixels lowest and highest values.
- Added a filter to compute spectral angle distance image with
respect to a reference pixel.
*FeatureExtraction:
- Added a set of image and path filters to perform road extraction.
- Added a composite filter to perform road extraction.
*ChangeDetection:
- Added the Kullback-Leibler distance change detector with optimized algorithm.
- Added a Kullback-Leibler multi-scale change profile image filter
with optimized algorithm.
*DisparityMap:
- Added the DisparityMapEstimationMethod, performing local disparity
estimation with respect to a given transform using the ITK registration framework.
- Added several methods for deformation field estimation from
the estimated disparity map (represented as a pointset with associated point data).
*Documentation:
- Corrected several warning and French comments in doxygen.
*Utilities:
- Split of the OSSIM lib to support compilation on the mingw platform.
- DXFlib integration.
- InsightJournal code integration : ScatteredDataPointSetImageFilter.
*Platforms:
- Corrected runtime errors of the interactive change detection
application under cygwin.
- Workaround for ImageViewer on very specific mandrake version.
OTB-v.1.2.1 - Changes since version 1.2.0
-----------------------------------------
*IO:
- Improved support of geographic meta data handling in pipeline execution.
*BasicFilters:
- Added a cast filter otb::ImageToVectorImageCastFilter to convert
otb::Image (templated with scalar pixel types) to
mono-channel otb::VectorImage.
*FeatureExtraction:
- Added a contour extraction filter otb::ImageToEdgePathFilter.
*Visualization:
- Viewer accepts now otb::Image (templated with scalar pixel types)
as well as otb::VectorImage.
- Added FlRun() method to the Viewer, which execute Show() method from
the Viewer followed by the Fl::run() method from FLTK.
*Platforms:
- Minor correction of otb::ObjectList and otb::List in order to support
visual 7.0 compiler.
*Experimental:
- Support for python binding compilation including itk binding
templated with OTB images, OTB IO and OTB Image viewer.
- OSSIM has been integrated in the OTB Utilities directory to
prepare its future use in new geometric features.
OTB-v.1.2.0 - Changes since version 1.0.2
-----------------------------------------
*Platforms:
- OTB can now been compiled on several new platforms :
- SunOS 5.8 (32bits and 64bits).
- Improved robustness of
- the Microsoft Visual Studio .NET 2003 (7.1), .NET 2005 (8.0)
- the Cygwin and MinGW installation.
*Common:
- Various bug fixes and warning corrections.
- Added support for ObjectList (ie SmartPointers) and thus
support for ImageList.
- Added base classes for image to image list filters, image
list to image filters, image list to image list filters.