forked from orfeotoolbox/OTB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE_NOTES.txt
3118 lines (2658 loc) · 139 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.6.2.0 - Changes since version 6.0.0 (October 26th, 2017)
----------------------------------------------------------
* Request for Changes (http://wiki.orfeo-toolbox.org/index.php/Requests_for_Changes):
* Request for Changes-91: Better error messages (adopted, merged)
* Request for Changes-92: Build remote modules as standalone cmake projects (adopted, merged)
* Request for Changes-93: Update third party versions in Superbuild for 6.2 (adopted, merged)
* Request for Changes-94: CookBook licensed under cc-by-sa (adopted, merged)
* Request for Changes-95: Compile OTB with C++14 by default (adopted, merged)
* Request for Changes-96: Long help in otbcli (adopted, merged)
* Request for Changes-97: KMeansClassification reimplemented (adopted, merged)
* Request for Changes-98: Upgrade Monteverdi dependency from QWT 5 to QWT 6 (adopted, merged)
* Request for Changes-99: Refactor ExtractROI application (adopted, merged)
* Request for Changes-100: Add external soil file to Sail model (adopted, merged)
* Request for changes-102: Extend MachineLearningModel sample and target types (adopted, merged)
* Request for changes-103: Improve OTB Applications documentation (part 1) (adopted, merged)
* Request for changes-105: Simplify logging of composite applications (adopted, merged)
* Request for changes-106: All-in-one LSMS application (adopted, merged)
* Request for changes-107: Refactor Convert application (adopted, merged)
* Request for changes-108: Make OTB package great again (adopted, merged)
* Request for changes-109: Refactor PixelValue application (adopted, merged)
* Request for changes-111: SuperBuild dependencies additions for GDAL (adopted, merged)
* Request for changes-112: New-functor-filters (adopted, merged)
* Request for changes-114: Add Daniel McInerney as a new committer (adopted)
* Request for changes-115: Refactoring of DownloadSRTMTiles (adopted, merged)
* Bugfixes :
* OTB-Qgis
* 0001445: Mean shift segmentation ignoring mask OTB QGIS
* Documentation
* 0001434: Bibliography references are not set in the Software Guide (PDF version)
* 0001400: Training applications reference documentation do not include shark parameters
* 0001471: Issue with Boolean parameter in the Python application API documentation
* Monteverdi
* 0001431: RGE Alti files inverted on Monteverdi
* 0001432: RGE Alti files inverted on Monteverdi
* 0001408: Issue in Monteverdi French translation (typo)
* OTB-Packaging
* 0001449: Issues with OTB 6.1 standalone packages (Linux)
* 0001404: OTB xdk 5.10.1 is not able to compile a simple program on a Ubuntu 16.04 VM
* 0001430: building 6.0.0 fails at otbSFSTextureExtraction.cxx.o
* 0001474: OTB XDK is not working on Linux
* 0001460: Unable to compile OTB 6.2.0 RC1 with superbuild (CURL issue)
* Orfeo Toolbox (OTB)
* 0001453: Applications crash with inxml paramter (GUI mode)
* 0001405: Crash on optical calibration, TOC mode, GUI only (command line works), only on Mac
* 0001422: Optical Calibration application crash on MacOSX
* 0001401: ktrace reports too many file open for any otbapplication
* 0001439: GUI of ComputeOGRLayersFeaturesStatistics and OGRLayerClassifier crash on certain shape files
* 0001399: missing include_directories call when building external projects
* 0001438: Input Value Type of Classification apps
* 0001420: Change layer name in Monteverdi has no effect
* 0001446: Write mode on the SampleExtraction application
* 0001435: Performance issue on OTB 6.0 otbcli_MeanShiftSmoothing
* 0001407: In TrainImagesClassifier, field selection gets reset all the time
* 0001448: VectorClassifier isn't working for me...
* 0001397: OTBIOkml links only with base, dom, and engine but cmake includes all kml libs
* 0001413: set GDAL_DRIVER_PATH to avoid autoload of gdal driver from another installation
* 0001443: Fails to build with cmake 3.9.0
* 0001444: cmake fails if OTB_DATA_LARGEINPUT_ROOT is set and OTB_DATA_ROOT is not set
* 0001398: OTB won't parse *.xml metadata file on newest Pleiades data
* 0001418: Two more InXML incorrect tests
* 0001416: Parameter names different in cli and gui version
* 0001417: In windows packages otbenv.cmd and otbenv.bat, GDAL_DATA is set to a folder that does not exist
* 0001425: Cli Command line produced by otbgui_TrainImagesClassifier is wrong
* 0001424: ComputeConfusionMatrix crashes because proj.dll is missing
* 0001403: InXML1 tests fail but report as passed
* 0001419: Fix detection of OpenCV on i386 architecture.
* 0001426: GUI TrainimagesClassifier resets "field name" parameter when another parameter is set
* 0001421: otbenv.bash has windows endline
* 0001402: 404 link on otb-users
* 0001469: Superbuild with Visual Studio 15 2017
* 0001464: otb_module_impl() called twice in ExternalModuleTemplate
* 0001459: Patch to fix spelling errors
* OTB-applications
* 0001441: Error in param in template otbTrainLibSVM.txx
* 0001411: Training applications needs field name of type integer
* 0001410: BundleToPerfectSensor composite application does not expose parameters of internal applications
* 0001467: Convert application memory allocation issue
* 0001463: BandMathX not accepting global statistics
OTB-v.6.0.0 - Changes since version 5.10.1 (May 2th, 2017)
----------------------------------------------------------
* Request for Changes (http://wiki.orfeo-toolbox.org/index.php/Requests_for_Changes):
* Request for Changes-81: New applications for morphological profiles (adopted, merged)
* Request for Changes-82: Sentinel1 IW SLC deburst filter (adopted, merged)
* Request for Changes-83: New Modulus and Phase application (adopted, merged)
* Request for Changes-84: Change license to Apache v2.0 (adopted, merged)
* Request for Changes-85: Add Unsupervised classification applications (adopted, merged)
* Request for Changes-86: Add extended filename for band selection (adopted, merged)
* Request for Changes-87: Support OpenCV 3 (adopted, merged)
* Request for Changes-88: Contingency Table (adopted, merged)
* Request for Changes-89: Remove deprecated code for 6.0 (adopted, merged)
* Request for Changes-90: Add vector classification application (adopted, merged)
* Bugfixes :
* Monteverdi2
* 0001377: Pixel coordinates input
* 0001378: Incorrect effect combo-box selection when selecting another layer.
* 0001384: Northing/Easting seems inverted on UTM17/18
* Orfeo Toolbox (OTB)
* 0001389: otbcli_ColorMapping doesn't accept higher input values than 2^16 (UInt16 coding)
* 0001386: Don't add test InDoxygenGroup for application build in external remote module
* 0001362: OTB 5.8 Applis TrainRegression TrainVectorClassifier TrainImagesClassifier Segmentation fault
* 0001372: Shortname of option to deactivate glsl with monteverdi is confusing
* 0001366: OTB 5.10 : can't use extract ROI using bindings python
* 0001367: Monteverdi from the OTB standalone package for Mac OS X fails to run
* 0001365: Python wrapper OTB-5.8.0: @rpath problem on MacOSX El Captain 10.11
* 0001364: Crash of Mapla.app v5.10.0 on MacOSX El Captain 10.11.5
* 0001368: OTB 5.11 TrainImagesClassifier (FATAL) Error "Input Sample List is empty"
* 0001374: Alpha parameter seems not works in opengl mode
* OTB-applications
* 0001369: otbgui_Segmentation.bat won't produce correct results
OTB-v.5.10.1 - Changes since version 5.10.0 (March 8th, 2017)
---------------------------------------------------------------
* Packaging :
* Upgrade to GDAL 2.1.3, compatible with new format of Sentinel 2 products
* Upgrade of SertitObject external module with bugfixes
* Bugfixes :
* Orfeo Toolbox (OTB)
* 0001364: Crash of Mapla.app v5.10.0 on MacOSX El Captain 10.11.5
* 0001365: Python wrapper OTB-5.8.0: @rpath problem on MacOSX El Captain 10.11
* 0001367: Monteverdi from the OTB standalone package for Mac OS X fails to run
* 0001366: OTB 5.10 : can't use extract ROI using bindings python
OTB-v.5.10.0 - Changes since version 5.8.0 (February 14th, 2017)
---------------------------------------------------------------
* Request for Changes (http://wiki.orfeo-toolbox.org/index.php/Requests_for_Changes):
* Request for Changes-69: Force Monteverdi no-GLSL option (adopted, merged)
* Request for Changes-70: Composite application framework (adopted, merged)
* Request for Changes-71: Enhance class field selection in training applications (adopted, merged)
* Request for Changes-72: Remove JPEG2000ImageIO (adopted, merged)
* Request for Changes-73: Compatibility with muparserx 4.0.7 (last stable release) (adopted, merged)
* Request for Changes-74: Translate the application GUI to the corresponding command line (adopted, merged)
* Request for Changes-75: Monteverdi/App November code sprint (adopted, merged)
* Request for Changes-76: Single band color-mapping in Monteverdi (adopted, merged)
* Request for Changes-77: New application for wavelet and fft domain transform (adopted, merged)
* Request for Changes-78: Refactor TrainImagesClassifier (adopted, merged)
* Request for Changes-79: BundleToPerfectSensor implemented as composite application (adopted, merged)
* Request for Changes-80: Compute sub-sampled Haralick textures (adopted, merged)
* Bugfixes :
* Monteverdi
* 0001351: Broken 5.10 standalone package on Linux (missing libstdc++)
* 0001334: On Windows standalone package, selection and drag&drop is broken on Monteverdi layer stack
* 0001338: Monteverdi does not correctly free memory
* 0001345: Wrong behavior of minimum image size for overviews in preference dialog
* 0001320: Pixel picking in Monteverdi is half-pixel shifted
* 0001309: Monteverdi 5.8: cannot drag and drop filename to OTB app
* OTB-Packaging
* 0001361: _dl_close error message in Linux standalone package when closing the application
* 0001357: segfault when loading OTB applications in linux standalone package
* 0001356: Linux package requires OTB_USE_SYSTEM_GTK=1 on CentOS 7
* 0001355: Patch to set OTB_APPLICATION_PATH environment variable in monteverdi desktop file
* 0001335: On Windows standalone package, TOC calibration crashes monteverdi
* 0001326: OTB python bindings does not work
* 0001336: setup.sh is missing in Windows standalone packages
* 0001337: On windows standalone package otbcli.bat misses the GDAL_DATA environment variable
* 0001325: libsvm URL in superbuild does not exists anymore
* OTB-applications
* 0001341: Rescale application does not exactly rescale image
* 0001339: ExtractROI application yields wrong size through python bindings
* 0001321: Unable to apply radiometric calibration to S1A SLC product
* 0001316: Application parameter of type ListView are not export in XML
* Orfeo Toolbox (OTB)
* 0001317: cmake c and cxx flags are not written in OTBConfig.cmake or UseOTB.cmake
* 0001323: Install monteverdi icons along with the application.
* 0001342: Download of libsvm is failing when (super)building
* 0001331: TrainVectorClassifier: misleading error message
* 0001330: Superbuild crashes with invalid libSVM source link
* 0001327: Quicklook application introduces a shift
* 0001328: OTB 5.8 : superImpose introduce "NODATA"
* 0001319: OTB 5.8 vector Sampler
* 0001324: Add Keywords to desktop entry file.
* Documentation
* 0001313: Some latex fragments are not rendered in RST cookbook
OTB-v.5.8.0 - Changes since version 5.6.1 (November 8th, 2016)
--------------------------------------------------------------
* Request for Changes (http://wiki.orfeo-toolbox.org/index.php/Requests_for_Changes):
* Request for Changes-35: FineRegistration, performances increased
* Request for Changes-51: Move Monteverdi into OTB
* Request for Changes-52: Faster BandMathX
* Request for changes-53: Connect applications in memory
* Request for Changes-54: Get OTB ready for gdal derived subdatasets
* Request for Changes-55: Monteverdi: Mouse-wheel zoom without CTRL
* Request for Changes-56: Spot7 metadata support
* Request for Changes-57: Migrate Cookbook to RST
* Request for Changes-58: Sampling on multiple images
* Request for Changes-59: Build support for msvc 2015 with OTB xdk
* Request for Changes-60: Shorter Release Process
* Request for Changes-61: Use codespell to fix common misspellings in source code
* Request for Changes-62: Enhance text comparison in dashboard
* Request for Changes-63: Refactor threading mechanism in sampling filters
* Request for Changes-64: Missing RAM for persistent filters in application
* Request for Changes-65: Add Shark Random forests implementation
* Request for Changes-67: ClassificationMapRegularization option for isolated pixels only
* Request for Changes-68: New sampling strategies in classification framework
* Bugfixes :
* Monteverdi
* 0001298: Monteverdi crash with this image
* 0001305: SuperBuild falling at BOOST build step
* 0001283: GDAL overviews dialog pops under OTB-applications dock
* 0001284: GDAL overviews default min-size = 4096 px
* 0001282: Status-bar is not always disable at startup
* 0001278: Add force OpenGL 1.x compatibility option
* 0001267: Monteverdi: unclear "gdal overview" minimum size parameter
* 0001274: SuperBuild GLUT compilation problem
* 0001277: Missing icon(s) in color-dynamics widget
* 0001275: Monteverdi: Histogram view problem with binary image
* 0001300: monteverdi $input_filename crash with relative path
* 0001303: Memory issue in Monteverdi with images with subdatasets (HDF4)
* 0001299: Monteverdi shortcuts list needs some updates
* 0001291: Word "Echiquier" is not displayed properly in layer stack (effect column)
* OTB-Packaging
* 0001290: Unable to run OTB applications from Mapla.app on Mac OS X
* 0001297: No translation files in Windows standalone package (branch release-5.8)
* Orfeo Toolbox (OTB)
* 0001308: Typo in otbenv.profile and otbenv.cmd
* 0001286: Sentinel-1 sensor metadata are not retrieved properly if application is run inside the SAFE directory
* 0001287: Using S1 images in monteverdi is slow
* 0001268: Patch for spelling error in 5.6.1
* 0001306: SuperBuild falling at TIFF build step (GLUT_Xmu_LIBRARY NOTFOUND)
* OTB-applications
* 0001301: Mapla application does not provide translation files
OTB-v.5.6.1 - Changes since version 5.6.0 (August 26th, 2016)
-------------------------------------------------------------
* Bugfixes :
* 0001262: OTB 5.7 vector sampler bug
* 0001259: Patch for various spelling errors in 5.6.0
* 0001258: Patch to only use OTB_GIT_STATUS_MESSAGE in message function if set.
* 0001266: Fix covariance computation with high float values
OTB-v.5.6.0 - Changes since version 5.4.0 (July 28th, 2016)
------------------------------------------------------------
* Request for Changes (http://wiki.orfeo-toolbox.org/index.php/Requests_for_Changes):
* Request for Changes-49: Improve classification on vectors
* Request for Changes-48: Add geometric correction to S1 Sensor Model
* Request for Changes-47: Improve the CompareImages app
* Request for Changes-46: Sample extractor
* Request for Changes-45: CMake uninstall target
* Request for Changes-43: Update SuperBuild cmake script and thirdparty versions
* Request for Changes-42: Generator for completion scripts
* Request for Changes-40: clang modernize
* Request for Changes-41: Provide a summary after cmake configuration
* Request for Changes-38: update gdal to 2.x version in superbuild
* Request for Changes-37: Enhance ManageNodata application
* Request for Changes-36: Samples selection filter
* Request for Changes-26: MPI Image File Writer
* Bugfixes:
* MANTIS-1255: Remaining log when opening Sentinel1 product in Monteverdi
* MANTIS-1254: Checking/Unchecking parameters re-enable execute button on running application
* MANTIS-1252: msvc warning C4838 la conversion de 'double' en 'const float' requiert une conversion restrictive
* MANTIS-1251: OTB Superbuild does not forward compiler versions to external projects anymore
* MANTIS-1249: ioTvMultiChannelROI_*_JPEG2000_2_TIF_res5 are failing when using gdal openjpeg driver
* MANTIS-1247: Patch for various spelling errors
* MANTIS-1246: Inputs do not occupy the same physical space!
* MANTIS-1243: apTvCl*RegressionTest_monovar failing due to error in opencv
* MANTIS-1242: otbMapProjectionAdapter.cxx WARNING: Impossible to create the projection from Wkt: ossimUtmProjection
* MANTIS-1241: dl_close appears on apTvClTrainMethodANNImagesClassifierQB1
* MANTIS-1240: [ComputeImagesStatistics] Filename extension in uppercase are not supported
* MANTIS-1238: Train regression with ANN crashes
* MANTIS-1237: Inconsistent parameter order in OTB application
* MANTIS-1234: more tests are failing in superbuild
* MANTIS-1233: Exception in example Examples/Learning/TrainMachineLearningModelFromSamplesExample.cxx
* MANTIS-1227: set all USE_SYSTEM_* to FALSE by default
* MANTIS-1225: internal openjpeg driver and confusing OTB_USE_OPENJPEG
* MANTIS-1223: Possible error in function "template <typename T> T InverseValue(const T & value)" defined in otbMath.h
* MANTIS-1220: show last git commit message during cmake configure
* MANTIS-1218: Segmentation fails - error message not understandable
* MANTIS-1217: Degree symbol badly displayed in OTB applications
* MANTIS-1215: OTB-FAQ page not found contribute.html (404)
* MANTIS-1214: incorrect install instruction for Mac OSX in OTBCookBook 5.4
* MANTIS-1213: incorrect years calculated in cookbook
* MANTIS-1212: OTB windows package contains two copies of otbapp_* dll
* MANTIS-1211: Patch for various spelling errors
* MANTIS-1210: make fails at downloading 'LIBSVM'
* MANTIS-1209: superbuild: fix qt build on osx
* MANTIS-1208: Need to click in image view to force computation of quantiles (shortcut 'Q')
* MANTIS-1207: OTB_SB_CMAKE_COMMAND uses in External_otb.cmake but not set
OTB-v.5.4.0 - Changes since version 5.2.1 (2016/05/04)
------------------------------------------
* Core
* Ice is now a regular OTB module (RFC 23)
* Masked iterator decorator (RFC 22)
* Filter to analyse polygons for available samples (part of new sampling framework, RFC 29)
* Faster resampling filter for rigid scaling and translation operations (RFC 30)
* Modified behavior of reading/writing of TIFF RPC tags (RFC 31)
* Allow a module to be built outside the OTB source tree (RFC 32)
* Dashboard cleaning, part 1 (RFC 33)
* Enhancement of SARDecompositions : Barnes, Huynen, Pauli decompositions (RFC 34)
* Monteverdi
* Take screenshot of current display (RFC 20)
* Allow subdatasets import (RFC 21)
* Disable GLSL shader if OpenGL version is lower than 2.0 (RFC 25)
* Allow generation of gdal overviews when importing images (RFC 24)
* Documentation:
* Merge software guide into main OTB repository (RFC 17)
* Remove random contributor list generation (RFC 28)
* SuperBuild:
* Add Monteverdi and its dependencies (glfw, GLEW, glut)
* Bug fixed
* Monteverdi2
* 0001179: Using the Upper Bound mode for resolution lookup in preferences result in wrong resolution used
* 0001197: Clicking on minimap to navigate result in monteverdi crashing
* 0001178: Zoom to full resolution does not zoom to 1 image pixel = 1 screen pixel for georeferenced data
* 0001203: Clicking on 1:1 button several time result in strange cycling behaviour
* 0001205: Gamma slider effect inverted between full and quicklook view
* 0001202: Wrong aspect ratio at loading
* 0001148: OTB-applications not loaded
* 0001196: OTB-application Quit button closes widget but not window when using Mapla
* 0001147: With Monteverdi develop branch of today : opening large images with overview file leads to eating all available memory
* 0001138: Numeric value editing hell
* 0001136: Unable to open sensor products (with RPC) in Monteverdi
* 0001159: TrainImageClassifier sample.vtr parameter is sometime ignored
* 0001173: KDE grabs drag event before monteverdi, making image navigation impossible
* 0001144: Unable to keep unconstrained dynamic mode
* 0001156: Linux standalone package doesn't work on Fedora 22
* 0001157: monteverdi crashes when trying to move the view without any images
* 0001153: Superimpose app in PHR mode reports wrong origin/spacing/keywordlist
* 0001154: Exception raised when opening LUM or LUM+HDR
* 0001152: maximum number of class in KMean application limited to 255
* 0001140: Lost pixel position information in layer stack
* OTB-Packaging
* 0001141: muparser 2.2.4 is missing in superbuild archive 5.2.1
* 0001171: Crash in OGR : libproj-0.dll not found
* 0001150: Can't "easily" deactivate LIBKML from OTB Superbuild
* Orfeo Toolbox (OTB)
* 0001206: Cannot maximize monteverdi window in standalone package
* 0001177: SuperBuild fails at MVD configure step (release-5.4 branch)
* 0001194: freeglut required x11 extension on osx
* 0001188: deactivate openldap, openssl, libssh2 when building superbuild curl.
* 0001190: use same compiler for all builds in the superbuild
* 0001184: superbuild libtiff is using libjbig from system without warning
* 0001185: minimal build of GDAL in superbuild
* 0001187: superbuild cannot find Qt4 during OTB configure on osx
* 0001193: deactivate finding osx framework for library
* 0001163: Windows MinGW packages do not contain the libsvm classifier
* 0001164: Monteverdi crashes when opening a tif without projection information
* 0001167: GUI applications visual response after clicking the "Execute" button is slow and confusing
* 0001158: Missing field in RefineSensorModel statistics file
* 0001166: otbgui_MeanShiftSmoothing problem with Mode Search parameter
* 0001169: add libsvm package to mxe and enable OTB_USE_LIBSVM
* 0001143: Patch for various spelling errors
* 0001151: GDAL_SB_EXTRA_OPTIONS can not take multiple options
* 0001142: Fails to build with ITK 4.9.0 (itksys/FundamentalType.h: No such file or directory)
* OTB-lib
* 0001145: Ice doesn't clamp rendered values to the specified minimum of the range
* 0001139: OGRLayerStreamStitchingFilter CommitTransaction fail is some cases
* 0001137: GDALImageIO does not support SENTINEL2 sub-datasets
* OTB-applications
* 0001149: ReadImageInfo application crash with Sentinel1 (SLC SM product)
* 0001162: Unable to perform Sentinel-1 SAR calibration on extract
* 0001183: Unable to edit image path in Qt GUI wrapper with complex image
* 0001182: Crash when editing InputImageParameter Qt widget
* 0001161: Inconsistency of SAR calibration applications denomination
OTB-v.5.2.1 - Changes since version 5.2.0 (2016/01/19)
------------------------------------------
* Bugs fixed:
* Mantis-1124: fix the use of Update_command and reorder the patch commands properly
* Fix some Coverity reports
* Superbuild:
* Update OSSIM to latest stable and improve version checking during CMake configuration
* Monteverdi:
* Mantis-1096: QuicklookView
* Mantis-1125: Use OTB_APPLICATION_PATH in startup files
* Other:
* Apply spelling patch from DebianGIS
* Find only required itk components. Patch proposed by Debian.
* Fix mxe gcc dir and list of system dlls exceptions
OTB-v.5.2.0 - Changes since version 5.0.0 (2015/12/22)
------------------------------------------
* Library (the corresponding requests for changes are mentioned):
* Core
* Read, write and manage no-data flags (RFC-1 & RFC-14)
* Improve otb::DEMHandler interface (RFC-2)
* Build examples based on available modules in OTB installation (RFC-3)
* Helper functions for string operations using boost (RFC-6)
* Gdal 2.0 support (RFC-11)
* Enhancement of python wrapping (RFC-12)
* Machine Learning
* Provide quality index for classification
* Regression mode in OTB and OTBApp (RFC-7)
* SAR
* Add basic support for Sentinel1 Product (RFC-4)
* Update SAR radiometric calibration application in OTB (RFC-9)
* New applications for SAR processing (RFC-10)
* Applications
* Improve ApplicationRegistry for application loading (RFC-15)
* Provide a default output pixel type in applications (RFC-17)
* SuperBuild
* Provide a script to build the all-in-one SuperBuild archive (RFC-5)
* Upgrade dependencies versions in SuperBuild (RFC-19)
* New dependency : Freetype 2.6
* ITK 4.7.1 -> 4.8.1
* JPEG v9a -> turbo 1.4.1
* OpenThreads 3.2 -> 3.4
* Ossim r23092 -> r23537
* GeoTIFF 1.4.0 -> 1.4.1
* muParser 2.2.3 -> 2.2.5
* OpenCV 2.4.10 -> 2.4.11
* OpenSSL 1.0.1e -> 1.0.1p
* Qt 4.8.6 -> 4.8.7
* Swig 3.0.5 -> 3.0.7
* TIFF 4.0.3 -> 4.0.6
* Bug fixed:
* Monteverdi2
* 0001120: Unwanted zoom-to-extent when loading second image
* 0001103: OutputProcessXMLParameter pre-initialization used even if disabled.
* 0001111: Geoid-file <arning message needs restart displayed when not needed.
* 0001118: Crash when restoring UI layout if quicklook view is visible at startup.
* 0001104: Crash as soon as I open an image
* 0001100: Crash when trying to Apply same parameters (dynamic, effects, color map...) on images with different number of bands
* 0001072: I18nCoreApplication::ElevationSetup() exceptions not displayed
* 0001070: otb::DEMHandler not updated properly when resetting DEM-directory and/or Geoid-file.
* OTB-Packaging
* 0001049: Last Monteverdi2 and Mapla release Win package crash when we try to import JP2 file
* Orfeo Toolbox (OTB)
* 0001051: CMake warnings when preparing SuperBuild configuration
* 0001068: crash in otbcli_LSMSSegmentation
* 0001080: there are some characters can not be recognized, which make compile errors
* 0001088: Fedora 22 copr repo for OTB
* 0001092: ITK (4.7.1) provided by SuperBuild do not compile with GCC version > 5
* 0001090: SuperBuild Openthread download link broken
* 0001081: GDAL RPC tags export prevent correct export of wkt in ortho-rectified image
* 0001056: ComputeImagesStatistics applications produces incorrect std
* 0001093: CMake with Ninja generator configure fails when OTB_USE_QT4=ON
* 0001084: Deactivate all 3rd part components in OpenCV configuration
* 0001077: Superbuild: Broken open scene graph archive link
* 0001069: Unable to install gdal python bindings in custom install directory with OTB Superbuild
* 0001065: Build OTB Examples based on available modules in OTB installation
* 0001075: prTeEstimateRPCSensorModelExampleTest always failing in examples
* 0001074: Missing ITCopyright.txt in OTB sources
* 0001066: missing file(Capitole-Shadows) from OTB-Data
* 0001055: SuperBuild builds ogr2ogr without sqlite driver
* OTB-lib
* 0001082: ImageFileReader<> crashes after ApplicationRegistry::RefreshApplicationFactories() is called
* 0001098: Exception raised when typing in input process XML parameter
* 0001097: Cannot manually type in input vector data line-edit.
* 0001085: Add a ::GetInput() accessor to QtWidgetOutputImage/FilenameParameter
* 0001083: Extended filename parameters not updated when calling ImageFileReader<>::SetFileName() several times
* 0001078: Exception thrown (OTB-Ice) when opening image without projection info
* 0001071: Add otb::DEMHandler ::ClearDEMDirectory() and ::ClearGeoidFile() interface.
* OTB-applications
* 0001119: Band Math X cannot manage large neighborhood (>=25x25 pixels)
* 0001112: File not found if filename contains accents when using GUI
* 0001059: Input and output image parameters require absolute path
* 0001076: Application ComputeImagesStatistics gives wrong standard deviation
OTB-v.5.0.0 - Changes since version 4.4.0 (2015/05/28)
------------------------------------------
* Library:
* Modularization
* Code is now better organized in groups/modules/classes
* ITK CMake architecture to handle module and dependencies is used
* Modules can be deactivated at will with dependencies tracking
* Third parties software are handled as module and can be deactivated
* Tests and applications are embedded in modules
* Writing of new module or update of existing modules is simplified by cmake magic
* Remove deprecated code
* MeanShiftVectorImageFilter and MeanShiftImageFilter classes
* CommandLineLauncher(const char * exp) and Load( const std::string & exp ) methods in CommandLineLauncher class
* ThirdParties
* No more internal versions of most third parties (except 6S, siftfast, ossimplugins)
* Removed openjpeg sources from OTB source
* Removed LibSVM sources from OTB source
* Removed Edison sources from OTB source
* Removed ConfigFile sources from OTB source
* Removed LibKML sources from OTB source
* Add support for external openjpeg 2.1
* Third parties copyrights have been cleaned
* Superbuild
* A separate superbuild project has been added in the Superbuild repository
* This download, configure and build all OTB dependencies from source and then build OTB. It replaces the removed internal versions.
* Sources are checked out at configuration time or can be downloaded beforehand
* Allow building a complete OTB with a handful of prerequisites (gcc, cmake, curl)
* Doxygen
* Classes are now organized by modules
* Direct link to official ITK doxygen
* Bug fixed:
* Monteverdi2
* 0001033: Crash when updating no data value in mv2
* Documentation
* 0001028: URL for online application documentation is not available anymoreon the orfeo website
* 0001006: GetPixel is missing on the otb::Image page
* OTB-lib
* 0001039: ITK patches are not always used
* 0001045: StreamingStatisticsMapFromLabelImageFilter can't be templated with otb::Image as support image
* 0001023: malloc error in otb::SVMModel destructor
* 0001041: Optimization of Band Math Image Filter (from 60M cycles to 40M cycles)
* 0001040: Optimization of Concatenate VectorImage Filter (from 28M cycles to 8M cycles)
* 0001043: Optimization of Multi to Mono Channel Extract ROI (from 8M cycles to 3M cycles)
* 0001011: Need safeguards to test for ExtendedFilename parameters
* 0001035: Unexpected maximum number of reader instances with open-jpeg driver
* 0001022: RefineSensorModel Segfault
* 0001042: Optimization of Image to VectorImage Cast Filter (from 47M cycles to 7M cycles)
* 0000005: can not read unsigned char three channels data into otb::Image<unsigned char,2> properly
* OTB-Packaging
* 0001027: [ubuntugis package] OTB Applications in Ubuntu package do not use custom version of ITK UnaryFunctorImageFilter
* 0001010: OTB MXE binary package is buggy
* Orfeo Toolbox (OTB)
* 0001047: Convolution test needs ITK with USE_FFTD
* 0001038: Superbuild configuration fails on Debian Jessie
* 0001024: QtWidgetStringListParameter is buggy
* 0001026: In command line application launcher, image path and filename can not contain "--"
* 0001044: OTB Windows 64bit -error cast from 'const short unsigned int*' to 'long unsigned int
* 0001025: QtWidgetListViewParameter gets reset when changing another parameter in applications
* 0001014: OTB does not compile with ITK 4.8
* 0000597: Optical calibration gives values greater than 100% on PHR products
* 0001047: Convolution test needs ITK with USE_FFTD
* 0001030: When writing images with no SRS / kwl, a default WGS84 projection is assigned in gdalImageIO
* OTB-applications
* 0001032: otbgui_RadiometricIndices output image without spatial reference system EPSG code
* 0001037: file and vector outputs need explicit relative paths
* 0001036: TileFusion application crashes with SPOT-7 tiled images
* 0000728: Inconsistent polygon number in concatenate vector data output
* 0001031: Wrong projection for output vector of segmentation application
OTB-v.4.4.0 - Changes since version 4.2.1 (2015/02/13)
--------------------------------------------------------
* Library:
* Core:
* Add a BandMathXImageFilter, otbParserX, otbParserXPlugins filters based on MuParserX
* Correct a lot of issues related to Coverity scan
* Giving access to probability estimates mode in libSVMMachineLearningModel and RandomForestsMachineLearningModel
* Clean and update the header include into OTB
* Enhance p to xs registration formula
* Reduce Curl dependencies
* Remove 6S dependency for VarSol computation
* Clean and update the Mapnik adapters code into OTB
* Add an option to limit the number of samples by class into otbListSampleGenerator
* Fix BCO interpolation about coefficients normalization
* Fix missing boost namespace
* Fix Production date issue in IkonosImageMetadataInterface
* Mark ancillary methods as deprecated otbWrapperCommandLineLauncher
* Add regression mode to Random Forests
* Add absorptances and fcover to SAIL code
* Remove MeanShiftKernel file, duplicates of SVMKernel file, and not used anywhere
* CMake:
* Improve compatibility with cmake 3.0
* Testing:
* Avoid multiple declaration of same function over different compilation units
* Add test to use SVM machine learning class in regression mode
* Remove obsolete and not compiled anymore tests
* Rewrite add_test declaration to have exe name on the first line. will help modularisation script
* Use a single cmake var for referencing large inputs
* Documentation:
* Enhance Doxygen Documentation
* Applications:
* New:
* New BandMathX application with awesome mathematical functions
* New applications for learning/classification of geometries in a shapefile:
* ComputeOGRLayersFeaturesStatistics
* TrainOGRLayersClassifier
* OGRLayerClassifier
* Updated applications:
* Smoothing: add conductance parameter for anidifusion which was added recently in ITK filter
* Smoothing: keep the time step independent from the image spacing
* HomologousPoint: proper computation of the opposite region
* Rasterization: fix computation of output image extent
* GridBasedImageResampling: fix the wrong channel number otbGridBasedImageResampling.
* ColorMapping: clamp before cast to uchar
* OpticalCalibration: the toc computation is no more marked as experimental
* OpticalCalibration: add an internal test to check if RSR file is correctly set
* BundleToPerfectSensor and SuperImpose: Allowing to force default mode with Pleiades images
* SuperImpose: fix a bug in PHR mode detection logic
* TrainImagesClassifier: add option to limit the min number of samples to the smallest class
* MeanShiftSmoothing: add missing ram parameter
* StereoRectificationGridGenerator: add warning message about image sizes when enabling inverse transformation estimations.
* Bugs fixed:
* OTB-lib:
* 0001003: logical bug in IkonosImageMetadataInterface ::GetPhysicalGain(),resolved,fixed,"In IkonosImageMetadataInterface::GetPhysicalGain()
* 0001005: build error with otbUtilitiesTests
* 0000987: update contents of README
* 0000974: Bad processing of OTB Smoothing Anisotropic Filtering
* OTB-Applications:
* 0000975: OTB Applications which use OpenMP cannot be loaded with gcc version < 4.3.0
* 0000976: Strange output for ColorMapping application with LUT computed on support image
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 improvement of Haralick Texture computation (6 to 10 times
faster)
* Add new texture feature (dissimilarity) in ScalarImageToAdvancedTexturesFilter
* Improvements 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 output 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 output 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
* Initialize properly QtWidgetChoiceParameter
* Increase minimum 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 existing 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 output 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 initialization 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