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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
|
/*
* Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otbWrapperApplication_h
#define otbWrapperApplication_h
#include <string>
#include <set>
#include "otbWrapperTypes.h"
#include "otbWrapperTags.h"
#include "otbWrapperParameterGroup.h"
#include "otbWrapperFieldParameter.h"
#include "otbLogger.h"
#include "otbStopwatch.h"
#include "otbWrapperMacros.h"
#include "otbWrapperInputImageParameter.h"
#include "otbWrapperInputImageListParameter.h"
#include "otbWrapperOutputImageParameter.h"
#include "otbWrapperDocExampleStructure.h"
#include "itkMersenneTwisterRandomVariateGenerator.h"
#include "OTBApplicationEngineExport.h"
namespace otb
{
/** \class ApplicationException
* \brief Exception for runtime errors in OTB Applications
*
* Usually thrown with the otbAppLogFATAL macro
*
* \ingroup OTBApplicationEngine
*/
class OTBApplicationEngine_EXPORT ApplicationException : public itk::ExceptionObject
{
public:
/** Run-time information. */
itkTypeMacro(ApplicationException, ExceptionObject);
/** Constructor. */
ApplicationException(const char* file, unsigned int line, const char* message = "Application error.", const char* loc = "Unknown");
/** Constructor. */
ApplicationException(const std::string& file, unsigned int line, const char* message = "Application error.", const char* loc = "Unknown");
ApplicationException(const std::string& file, unsigned int line, const std::string& message = "Application error.", const std::string& loc = "Unknown");
};
namespace Wrapper
{
/** \class Application
* \brief This class represent an application
* TODO
*
*
* \ingroup OTBApplicationEngine
*/
class OTBApplicationEngine_EXPORT Application : public itk::Object
{
public:
/** Standard class typedefs. */
typedef Application Self;
typedef itk::Object Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** RTTI support */
itkTypeMacro(Application, itk::Object);
virtual void SetName(const std::string&);
virtual const char* GetName() const;
void SetDescription(const std::string&);
virtual const char* GetDescription() const;
/** Initialize the application, instantiating the parameter list */
void Init();
/** Check if the application has been initialized */
bool IsInitialized() const;
void LoadParametersFromXML(const std::string& filename);
void SaveParametersToXML(const std::string& filename);
/** Update the value of parameters for which no user value has been provided */
void UpdateParameters();
/** Run the application.
*
* For pipeline ready application, this only wires
* and configures the pipeline, and provides
* the output image or vector data parameters as pointers.
*
* In other cases, the application must handle
* the I/O (intermediary results for example)
*
* Returns 0 on success, or a non-null integer on error
*/
int Execute();
/** write all of the output to disk
* if they have an associated filename.
* This is a helper function for wrappers without pipeline support.
*/
void WriteOutput();
/** Run the application, then write all of the output to disk
* if they have an associated filename.
* This is a helper function for wrappers without pipeline support.
*
* Returns 0 on success, or a non-null integer on error
*/
int ExecuteAndWriteOutput();
/** Connect input image to an output image in app */
bool ConnectImage(std::string in, Application* app, std::string out);
/** Propagate the connection mode : */
void PropagateConnectMode(bool isMem);
/** Request the application to stop its processing */
void Stop();
/* Get the internal application parameters
*
* WARNING: this method may disappear from the API */
ParameterGroup* GetParameterList();
/* Get the internal application parameter specified
* if the follow flag is on, the function returns the target of proxy parameters
* WARNING: this method may disappear from the API */
Parameter* GetParameterByKey(std::string const& parameter, bool follow = true);
/* Get the internal application parameter specified
*
* WARNING: this method may disappear from the API */
const Parameter* GetParameterByKey(std::string const& parameter, bool follow = true) const;
/* Returns the description of a parameter */
std::string GetParameterName(std::string const& paramKey);
/* Returns the description of a parameter */
std::string GetParameterDescription(std::string const& paramKey);
/* Set the description of a parameter */
void SetParameterDescription(std::string const& paramKey, std::string dec);
/* Enable the use of an optional parameter. Returns the previous state */
void EnableParameter(std::string const& paramKey);
/* Disable the use of an optional parameter. Returns the previous state */
void DisableParameter(std::string const& paramKey);
/* Return the enable state of an optional parameter */
bool IsParameterEnabled(std::string const& paramKey, bool recurseParents = false) const;
/* Return true if the specified parameter is mandatory */
bool IsMandatory(std::string const& paramKey) const;
/* Return true if the specified parameter was set automatically in
* the application
*/
bool HasAutomaticValue(std::string const& paramKey) const;
/* Returns true if the parameter has an associated value provided externally
* (not automatically computed by the application) */
bool HasUserValue(std::string const& paramKey) const;
/* If a user value was provided, clear it and update the other parameters */
void ClearValue(std::string const& paramKey);
/* Returns true if the parameter has an associated value.
* This value can be an automatically computed value or default value,
* or a value set externally by user */
bool HasValue(std::string const& paramKey) const;
/** Set HasUserValue flag of parameter with key paramKey
* Note that when this function is called from DoInit, DoUpdateParameters
* or DoExecute, it will always set this flag to false, because this is
* the core behavior of the application.
*/
void SetParameterUserValue(std::string const& paramKey, bool value);
/* Return the user level of access to a parameter */
UserLevel GetParameterUserLevel(std::string const& paramKey) const;
/** Get the role of the parameter */
Role GetParameterRole(std::string const& paramKey) const;
/* Get the parameter type from its name */
ParameterType GetParameterType(std::string const& paramKey) const;
/* Returns the description of a parameter */
std::vector<std::string> GetChoiceKeys(std::string const& paramKey);
/* Returns the description of a parameter */
std::vector<std::string> GetChoiceNames(std::string const& paramKey);
/* Set an integer value
*
* Can be called for types :
* \li ParameterType_Int
* \li ParameterType_Bool
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Radius
* \li ParameterType_Choice
*/
void SetParameterInt(std::string const& parameter, int value, bool hasUserValueFlag = true);
/* Set a floating value
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetParameterFloat(std::string const& parameter, float value, bool hasUserValueFlag = true);
/* Set a double precision floating value
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetParameterDouble(std::string const& parameter, double value, bool hasUserValueFlag = true);
/* Set a string value
*
* Can be called for types :
* \li ParameterType_InputImageListParameter
* \li ParameterType_InputVectorDataListParameter
* \li ParameterType_InputFilenameListParameter
* \li ParameterType_StringList
* \li ParameterType_ListView
* \li ParameterType_Band
* \li ParameterType_Field
*/
void SetParameterString(std::string const& parameter, std::string value, bool hasUserValueFlag = true);
/* Set a string value
*
* Can be called for types :
* \li ParameterType_String
* \li ParameterType_StringList
* \li ParameterType_ListView
* \li ParameterType_Band
* \li ParameterType_Field
* \li ParameterType_InputFilename
* \li ParameterType_OutputFilename
* \li ParameterType_Directory
* \li ParameterType_Choice
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Int
* \li ParameterType_Radius
* \li ParameterType_InputImageParameter
* \li ParameterType_InputVectorDataParameter
* \li ParameterType_OutputImageParameter
* \li ParameterType_OutputVectorDataParameter
*/
void SetParameterStringList(std::string const& parameter, std::vector<std::string> values, bool hasUserValueFlag = true);
/** Checks if the application is ready to be executed. It checks that there
* is no missing parameter
*/
bool IsApplicationReady();
/** Checks if a parameter 'key' is missing.
*
* A parameter is missing when all the following conditions are true :
* - the parameter is mandatory
* - the parameter has Role_Input
* - the parameter is not a group
* - the parameter has no value
* - the parameter ancestors are mandatory or enabled.
*/
bool IsParameterMissing(const std::string& key) const;
/* Set a default integer value, must be used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Int
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Radius
* \li ParameterType_Choice
*/
void SetDefaultParameterInt(std::string const& parameter, int value);
/* Get the default integer value of a parameter
*
* Can be called for types :
* \li ParameterType_Int
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Radius
* \li ParameterType_Choice
*/
int GetDefaultParameterInt(std::string const& parameter);
/* Set a default floating value, must be used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetDefaultParameterFloat(std::string const& parameter, float value);
/* Get the default floating value of a parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
float GetDefaultParameterFloat(std::string const& parameter);
/* Set a default double precision floating value, must be used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetDefaultParameterDouble(std::string const& parameter, double value);
/* Get the default double precision floating value of a parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
double GetDefaultParameterDouble(std::string const& parameter);
/** Set a default pixel type for an output image parameter
*
* \param[in] parameter Name of the output image parameter
* \param[in] type Default pixel type
*/
void SetDefaultOutputPixelType(std::string const& parameter, ImagePixelType type);
/** Set a default complex pixel type for an output complex image parameter
*
* \param[in] parameter Name of the output complex image parameter
* \param[in] type Default complex pixel type
*/
void SetDefaultOutputComplexPixelType(std::string const& parameter, ComplexImagePixelType type);
/* Set a minimum int value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Int
*/
void SetMinimumParameterIntValue(std::string const& parameter, int value);
/* Set a maximum int value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Int
*/
void SetMaximumParameterIntValue(std::string const& parameter, int value);
/* Set a minimum float value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
*/
void SetMinimumParameterFloatValue(std::string const& parameter, float value);
/* Set a maximum float value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
*/
void SetMaximumParameterFloatValue(std::string const& parameter, float value);
/* Set a minimum double precision float value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetMinimumParameterDoubleValue(std::string const& parameter, double value);
/* Set a maximum double precision value, must used in the
* DoInit when setting a value by default
* for the parameter
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
void SetMaximumParameterDoubleValue(std::string const& parameter, double value);
/**
* Enable single selection mode for list view if status is true
* (default is false).
*
* Can be called for types:
* \li ParameterType_ListView
* \li ParameterType_Band
* \li ParameterType_Field
*/
void SetListViewSingleSelectionMode(std::string const& parameter, bool status);
/**
* True if the parameter is a list view and is in single selection mode
*
* Can be called for types:
* \li ParameterType_ListView
* \li ParameterType_Band
* \li ParameterType_Field
*/
bool GetListViewSingleSelectionMode(const std::string& parameter);
/* Set an output image value
*
* Can be called for types :
* \li ParameterType_OutputImage
*/
void SetParameterOutputImage(std::string const& parameter, FloatVectorImageType* value);
/* Set the pixel type in which the image will be saved
*
* Can be called for types :
* \li ParameterType_OutputImage
*/
void SetParameterOutputImagePixelType(std::string const& parameter, ImagePixelType pixelType);
/* Set an output vector data value
*
* Can be called for types :
* \li ParameterType_OutputVectorData
*/
void SetParameterOutputVectorData(std::string const& parameter, VectorDataType* value);
/* Get an integer parameter value
*
* Can be called for types :
* \li ParameterType_Int
* \li ParameterType_Bool
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Radius
* \li ParameterType_Choice
*/
int GetParameterInt(std::string const& parameter) const;
/* Get a floating parameter value
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
float GetParameterFloat(std::string const& parameter) const;
/* Get a double precision floating parameter value
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
*/
double GetParameterDouble(std::string const& parameter) const;
/* Get a string parameter value
*
* Can be called for types :
* \li ParameterType_String
* \li ParameterType_InputFilename
* \li ParameterType_OutputFilename
* \li ParameterType_Directory
* \li ParameterType_InputImage
* \li ParameterType_InputVectorData
* \li ParameterType_OutputImage
* \li ParameterType_OutputVectorData
*/
std::string GetParameterString(std::string const& parameter) const;
/* Get a string list parameter value
*
* Can be called for types :
* \li ParameterType_StringList
* \li ParameterType_InputImageList
* \li ParameterType_InputFilenameList
*/
// TODO: Should be rewritten:
//
// std::size_t
// GetParameterStringList( const std::vector< String > & v,
// const std::string & parameter ) const;
//
// to avoid useless memory allocations.
std::vector<std::string> GetParameterStringList(const std::string& parameter);
/**
* Set the input image parameter as an ImageBase * instead
* of filename. Useful to connect pipelines between different
* application instances.
* \in parameter The parameter key
* \in inputImage ImageBase pointer to use as input
* \throw itk::Exception if parameter is not found or not an
* InputImageParameter
*/
void SetParameterInputImage(std::string const& parameter, ImageBaseType* inputImage);
/**
* Get the output image parameter as an ImageBase * instead
* of writing to disk. Useful to connect pipelines between different
* application instances.
* \in parameter The parameter key
* \return The ImageBase * to the output image
* \throw itk::Exception if parameter is not found or not an
* OutputImageParameter
*/
ImageBaseType* GetParameterOutputImage(std::string const& parameter);
/**
* Add an image to an InputImageList parameter as an ImageBase
* pointer instead of reading from file. Useful to connect pipelines
* between different application instances.
* \in parameter The parameter key
* \in img The ImageBase * of the image to add
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter
*/
void AddImageToParameterInputImageList(std::string const& parameter, ImageBaseType* img);
/**
* Set the nth image of an InputImageList parameter as an ImageBase pointer
* instead of reading from file. Useful to connect pipelines
* between different application instances.
* \in parameter The parameter key
* \in id Position at which to set the ImageBase pointer
* \in img The ImageBase * of the image to add
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter or if id is out of bounds
*/
void SetNthParameterInputImageList(std::string const& parameter, const unsigned int& id, ImageBaseType* img);
/**
* Set vector data name from which we choose the fields for a FieldParameter
* \param[in] key The parameter key (must be a FieldParameter)
* \param[in] vectorData vector data name
*/
void SetVectorData(std::string const& key, std::string const& vectorData );
/**
* Set list of allowed field types for a FieldParameter
* \param[in] key The parameter key (must be a FieldParameter)
* \param[in] typeFilter List of allowed types
*/
void SetTypeFilter(std::string const& key, FieldParameter::TypeFilterType const& typeFilter );
/**
* Get list of allowed field types for a FieldParameter
* \param[in] key The parameter key (must be a FieldParameter)
* \return List of allowed types
*/
const FieldParameter::TypeFilterType& GetTypeFilter(std::string const& key ) const;
/**
* Set raster data name from which we choose the bands for a BandParameter
* \param[in] key The parameter key (must be a BandParameter)
* \param[in] rasterData raster data name
*/
void SetRasterData(std::string const& key, std::string const& rasterData );
/**
* Add a value to a parameter list as a string
*
* Can be called for parameter types:
* \li ParameterType_InputImageList
*
* \in parameter The parameter key
* \in str The string
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter
*/
void AddParameterStringList(std::string const& parameter, const std::string& str);
/**
* Set the nth value of a parameter list as a string.
*
* Can be called for parameter types:
* \li ParameterType_InputImageList
*
* \in parameter The parameter key
* \in id Position at which to set the ImageBase pointer
* \in str The string
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter or if id is out of bounds
*/
void SetNthParameterStringList(std::string const& parameter, const unsigned int& id, const std::string& str);
/**
* Clear all images from an InputImageList parameter.
*
* \in parameter The parameter key
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter
*/
void ClearParameterInputImageList(std::string const& parameter);
/**
* Get the number of images in an InputImageList parameter.
* \in parameter The parameter key
* \return The number of images
* \throw itk::Exception if parameter is not found or not an
* InputImageList parameter
*/
unsigned int GetNumberOfElementsInParameterInputImageList(std::string const& parameter);
/* Get an image value
*
* Can be called for types :
* \li ParameterType_InputImage
*/
FloatVectorImageType* GetParameterImage(std::string const& parameter);
UInt8ImageType* GetParameterUInt8Image(std::string const&);
UInt16ImageType* GetParameterUInt16Image(std::string const&);
Int16ImageType* GetParameterInt16Image(std::string const&);
UInt32ImageType* GetParameterUInt32Image(std::string const&);
Int32ImageType* GetParameterInt32Image(std::string const&);
FloatImageType* GetParameterFloatImage(std::string const&);
DoubleImageType* GetParameterDoubleImage(std::string const&);
UInt8VectorImageType* GetParameterUInt8VectorImage(std::string const&);
UInt16VectorImageType* GetParameterUInt16VectorImage(std::string const&);
Int16VectorImageType* GetParameterInt16VectorImage(std::string const&);
UInt32VectorImageType* GetParameterUInt32VectorImage(std::string const&);
Int32VectorImageType* GetParameterInt32VectorImage(std::string const&);
FloatVectorImageType* GetParameterFloatVectorImage(std::string const&);
DoubleVectorImageType* GetParameterDoubleVectorImage(std::string const&);
UInt8RGBImageType* GetParameterUInt8RGBImage(std::string const&);
UInt8RGBAImageType* GetParameterUInt8RGBAImage(std::string const&);
// Complex image
ComplexInt16ImageType* GetParameterComplexInt16Image(std::string const&);
ComplexInt32ImageType* GetParameterComplexInt32Image(std::string const&);
ComplexFloatImageType* GetParameterComplexFloatImage(std::string const&);
ComplexDoubleImageType* GetParameterComplexDoubleImage(std::string const&);
ComplexInt16VectorImageType* GetParameterComplexInt16VectorImage(std::string const&);
ComplexInt32VectorImageType* GetParameterComplexInt32VectorImage(std::string const&);
ComplexFloatVectorImageType* GetParameterComplexFloatVectorImage(std::string const&);
ComplexDoubleVectorImageType* GetParameterComplexDoubleVectorImage(std::string const&);
/* Get an image list value
*
* Can be called for types :
* \li ParameterType_InputImageList
*/
FloatVectorImageListType* GetParameterImageList(std::string const& parameter);
/* GetParameterVectorData
*
* Can be called for types :
* \li ParameterType_InputVectorData
*/
VectorDataType* GetParameterVectorData(std::string const& parameter);
/* GetParameteVetorDataList
*
* Can be called for types :
* \li ParameterType_InputVectorDatalist
*/
VectorDataListType* GetParameterVectorDataList(std::string const& parameter);
/* Get the parameter as a std::string
*
* Can be called for types :
* \li ParameterType_Float
* \li ParameterType_Double
* \li ParameterType_Int
* \li ParameterType_Choice
* \li ParameterType_Radius
* \li ParameterType_String
* \li ParameterType_InputFilename
* \li ParameterType_OutputFilename
* \li ParameterType_Directory
* \li ParameterType_InputImage
* \li ParameterType_InputVectorData
* \li ParameterType_OutputImage
* \li ParameterType_OutputVectorData
*/
std::string GetParameterAsString(std::string const& paramKey);
/* Get the list of all parameters
*/
std::vector<std::string> GetParametersKeys(bool recursive = true);
/* Get the pixel type in which the image will be saved
*
* Can be called for types :
* \li ParameterType_OutputImage
*/
ImagePixelType GetParameterOutputImagePixelType(std::string const& parameter);
void SetParameterList(ParameterGroup::Pointer paramGroup)
{
m_ParameterList = paramGroup;
}
otb::Logger* GetLogger() const;
/** Sets the logger instance of the application (use with caution) */
void SetLogger(otb::Logger* logger);
itk::ProcessObject* GetProgressSource() const;
std::string GetProgressDescription() const;
virtual void SetDocLongDescription(const std::string&);
virtual const char* GetDocLongDescription() const;
virtual void SetDocAuthors(const std::string&);
virtual const char* GetDocAuthors() const;
virtual void SetDocLimitations(const std::string&);
virtual const char* GetDocLimitations() const;
virtual void SetDocSeeAlso(const std::string&);
virtual const char* GetDocSeeAlso() const;
virtual void SetDocTags(std::vector<std::string>);
virtual std::vector<std::string> GetDocTags() const;
void AddDocTag(const std::string&);
/** return whether the application has the "deprecated tag or not */
bool IsDeprecated();
DocExampleStructure::Pointer GetDocExample();
unsigned int GetNumberOfExamples();
std::string GetExampleComment(unsigned int id);
unsigned int GetExampleNumberOfParameters(unsigned int id);
std::string GetExampleParameterKey(unsigned int exId, unsigned int paramId);
std::string GetExampleParameterValue(unsigned int exId, unsigned int paramId);
void SetDocExampleParameterValue(const std::string key, const std::string value, unsigned int exId = 0);
void SetExampleComment(const std::string& comm, unsigned int i);
unsigned int AddExample(const std::string& comm = "");
std::string GetCLExample();
std::string GetHtmlExample();
/** Return all parameters which role is Role_Output in a vector of pairs that contains the
* parameter key and its value.
*/
std::vector<std::pair<std::string, std::string>> GetOutputParametersSumUp();
double GetLastExecutionTiming() const;
virtual void SetDocLink(const std::string& link);
virtual const std::string& GetDocLink() const;
void SetOfficialDocLink();
/** Get the origin of the image parameter 'key'. The optional 'idx' allows
* to select the image in an InputImageList. */
ImageBaseType::PointType GetImageOrigin(const std::string& key, unsigned int idx = 0);
/** Get the spacing of the image parameter 'key'. The optional 'idx' allows
* selecting the image in an InputImageList. We use the signed spacing convention. */
ImageBaseType::SpacingType GetImageSpacing(const std::string& key, unsigned int idx = 0);
/** Get the size of the image parameter 'key'. The optional 'idx' allows
* selecting the image in an InputImageList. It corresponds to the size of LargestPossibleRegion*/
ImageBaseType::SizeType GetImageSize(const std::string& key, unsigned int idx = 0);
/** Get the number of bands in the image parameter 'key'. The optional 'idx'
* allows selecting the image in an InputImageList.*/
unsigned int GetImageNbBands(const std::string& key, unsigned int idx = 0);
/** Get the projection of the image parameter 'key'. The optional 'idx' allows
* to select the image in an InputImageList.*/
std::string GetImageProjection(const std::string& key, unsigned int idx = 0);
/** Set the requested region on the image parameter 'key' and propagate it.
* The returned value is an estimate of the RAM usage (in Bytes) to process
* this region. It should be assumed that the index of the largest possible
* region starts at (0,0). The optional 'idx' allows selecting the image in
* an InputImageList*/
unsigned long PropagateRequestedRegion(const std::string& key, ImageBaseType::RegionType region, unsigned int idx = 0);
/** Get the requested region of the image parameter 'key'. The optional 'idx'
* allows selecting the image in an InputImageList. It should be assumed that
* the index of the largest possible region starts at (0,0).*/
ImageBaseType::RegionType GetImageRequestedRegion(const std::string& key, unsigned int idx = 0);
/** Get/Set the ImageMetadata of the image parameter 'key'. The optional 'idx'
* allows selecting the image in an InputImageList.*/
ImageMetadata &GetImageMetadata(const std::string& key, unsigned int idx = 0);
void SetImageMetadata(const ImageMetadata & imd, const std::string& key, unsigned int idx = 0);
/** Returns a copy of the metadata dictionary of the image */
itk::MetaDataDictionary GetMetadataDictionary(const std::string& key, unsigned int idx = 0);
/** Find out what is the pixel type from an image parameter
* This function assumes that the underlying object is either an otb::Image
* or an otb::VectorImage. The optional 'idx' allows accessing InputImageList.
*/
ImagePixelType GetImageBasePixelType(const std::string& key, unsigned int idx = 0);
/** Return the image from parameter 'key' as a base type. The optional 'idx'
* allows accessing InputImageList.
*
* Works on parameters:
* \li ParameterType_InputImage
* \li ParameterType_InputImageList
* \li ParameterType_OutputImage
*/
ImageBaseType* GetParameterImageBase(const std::string& key, unsigned int idx = 0);
/** Set the image in parameter 'key' as a base type. The optional 'idx'
* allows accessing InputImageList.
*
* Works on parameters:
* \li ParameterType_InputImage
* \li ParameterType_InputImageList
*/
void SetParameterImageBase(const std::string& key, ImageBaseType* img, unsigned int idx = 0);
/**
Register all ProcessObject that are linked to parameters :
\li ParameterType_OutputImage
\li ParameterType_OutputVectorData
Those ProcessObjects are stored in the m_Filters set and are deleted at the
end of ExecuteAndWriteOutput (if there are only held by the set)
This method can be called just before the end of a DoExecute in a derived
class of Application.
*/
void RegisterPipeline();
/**
Register all DataObject that are reachable from :
\li ParameterType_OutputImage
\li ParameterType_OutputVectorData
Once registered, the method ReleaseData is called on each one of them.
*/
void FreeRessources();
bool IsExecuteDone();
/** Is multiWriting enabled for this application ? */
bool IsMultiWritingEnabled();
protected:
/** Constructor */
Application();
/** Destructor */
~Application() override;
/* Register a ProcessObject as a new progress source */
void AddProcess(itk::ProcessObject* object, std::string description);
/** Add a new choice value to an existing choice parameter */
void AddChoice(std::string const& paramKey, std::string const& paramName);
/** Add a new parameter to the parameter group
* the parent key of paramKey can be the path to a parameter group
* or the path to a choice value */
void AddParameter(ParameterType type, std::string const& paramKey, std::string const& paramName);
/** Add a parameterRAM method with no parameter*/
void AddRAMParameter(std::string const& paramKey = "ram");
/** Add a parameterRAM method with parameter*/
void AddRAMParameter(std::string const& paramKey, std::string const& paramName, unsigned int defaultValue);
/** Add a parameterRAND method with no parameter */
void AddRANDParameter(std::string const& paramKey = "rand");
/** Add a parameterRAND method with parameter */
void AddRANDParameter(std::string const& paramKey, std::string const& paramName, unsigned int defaultValue);
/** Remove the items added to the ListWidget */
void ClearChoices(std::string const& key);
/** Get Items selected in the ListView Parameter*/
std::vector<int> GetSelectedItems(std::string const& paramKey);
/** Declare a parameter as mandatory */
void MandatoryOn(std::string const& paramKey);
/** Declare a parameter as NOT mandatory (default state) */
void MandatoryOff(std::string const& paramKey);
/* Set the user level of access to a parameter */
void SetParameterUserLevel(std::string const& paramKey, UserLevel level);
/* Set the parameter role (input/output) */
void SetParameterRole(std::string const& paramKey, Role role);
/* Get an image value
*
* Can be called for types :
* \li ParameterType_InputImage
*/
template <class TImageType>
TImageType* GetParameterImage(std::string const& parameter);
/** Declare a parameter as having an automatic value */
void AutomaticValueOn(std::string const& paramKey);
/** Declare a parameter as NOT having an automatic value */
void AutomaticValueOff(std::string const& paramKey);
/* Set an output image value
*
* Can be called for types :
* \li ParameterType_OutputImage
*/
template <class TImageType>
void SetParameterOutputImage(std::string const& parameter, TImageType* value);
/** Enable/Disable multiWriting */
itkSetMacro(MultiWriting, bool);
/* Enable in-application prevention of modifications to m_UserValue (default behaviour) */
void EnableInPrivateDo();
/* Disable in-application prevention of modifications to m_UserValue */
void DisableInPrivateDo();
private:
/* Implement this method to add parameters */
virtual void DoInit() = 0;
/* Implement this method to update non valued parameters */
virtual void DoUpdateParameters() = 0;
/* Implement this method to build the output */
virtual void DoExecute() = 0;
/* This method will be called after the
* ExecuteAndWriteOutput() call to allow for cleanup. Default
* implementation does nothing */
virtual void AfterExecuteAndWriteOutputs();
virtual void DoFreeRessources(){};
Application(const Application&) = delete;
void operator=(const Application&) = delete;
std::string m_Name;
std::string m_Description;
ParameterGroup::Pointer m_ParameterList;
otb::Logger::Pointer m_Logger;
itk::ProcessObject::Pointer m_ProgressSource;
std::string m_ProgressSourceDescription;
std::set<itk::ProcessObject::Pointer> m_Filters;
/** Long and precise application description . */
std::string m_DocLongDescription;
/** Doc example structure. Use GetDocExample() to access it */
DocExampleStructure::Pointer m_DocExample;
/** Author List. Format : "John Doe, Winnie the Pooh".*/
std::string m_DocAuthors;
/** Known limitations (threading, invalid pixel type ...) or bugs */
std::string m_DocLimitations;
/** Related applications */
std::string m_DocSeeAlso;
/** Tags that define the application (ex : segmentation, OBIA).*/
std::vector<std::string> m_DocTags;
/** Doc link application */
std::string m_Doclink;
/** Chrono to measure execution time */
otb::Stopwatch m_Chrono;
/** Flag is true when executing DoInit, DoUpdateParameters or DoExecute */
bool m_IsInPrivateDo;
/** Flag to check if Execute has already been called */
bool m_ExecuteDone;
/** Flag that determine if a multiWriter should be used to write output images */
bool m_MultiWriting;
/**
* Declare the class
* - Wrapper::MapProjectionParametersHandler
* - Wrapper::ElevationParametersHandler
* as friend to be able to access to the protected method of
* Wrapper::Application class.
**/
friend class MapProjectionParametersHandler;
friend class ElevationParametersHandler;
}; // end class
} // end namespace Wrapper
} // end namespace otb
#ifndef OTB_MANUAL_INSTANTIATION
#include "otbWrapperApplication.hxx"
#endif
namespace otb
{
namespace Wrapper
{
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt8VectorImageType* Application::GetParameterImage<UInt8VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE Int16VectorImageType* Application::GetParameterImage<Int16VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt16VectorImageType* Application::GetParameterImage<UInt16VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE Int32VectorImageType* Application::GetParameterImage<Int32VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt32VectorImageType* Application::GetParameterImage<UInt32VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE FloatVectorImageType* Application::GetParameterImage<FloatVectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE DoubleVectorImageType* Application::GetParameterImage<DoubleVectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexInt16VectorImageType*
Application::GetParameterImage<ComplexInt16VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexInt32VectorImageType*
Application::GetParameterImage<ComplexInt32VectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexFloatVectorImageType*
Application::GetParameterImage<ComplexFloatVectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexDoubleVectorImageType*
Application::GetParameterImage<ComplexDoubleVectorImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt8RGBImageType* Application::GetParameterImage<UInt8RGBImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt8RGBAImageType* Application::GetParameterImage<UInt8RGBAImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt8ImageType* Application::GetParameterImage<UInt8ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE Int16ImageType* Application::GetParameterImage<Int16ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt16ImageType* Application::GetParameterImage<UInt16ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE Int32ImageType* Application::GetParameterImage<Int32ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE UInt32ImageType* Application::GetParameterImage<UInt32ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE FloatImageType* Application::GetParameterImage<FloatImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE DoubleImageType* Application::GetParameterImage<DoubleImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexInt16ImageType* Application::GetParameterImage<ComplexInt16ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexInt32ImageType* Application::GetParameterImage<ComplexInt32ImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexFloatImageType* Application::GetParameterImage<ComplexFloatImageType>(std::string const&);
extern template OTBApplicationEngine_EXPORT_TEMPLATE ComplexDoubleImageType* Application::GetParameterImage<ComplexDoubleImageType>(std::string const&);
//
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt8VectorImageType>(std::string const&, UInt8VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<Int16VectorImageType>(std::string const&, Int16VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt16VectorImageType>(std::string const&,
UInt16VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<Int32VectorImageType>(std::string const&, Int32VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt32VectorImageType>(std::string const&,
UInt32VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<FloatVectorImageType>(std::string const&, FloatVectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<DoubleVectorImageType>(std::string const&,
DoubleVectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexInt16VectorImageType>(std::string const&,
ComplexInt16VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexInt32VectorImageType>(std::string const&,
ComplexInt32VectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexFloatVectorImageType>(std::string const&,
ComplexFloatVectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexDoubleVectorImageType>(std::string const&,
ComplexDoubleVectorImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt8RGBImageType>(std::string const&, UInt8RGBImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt8RGBAImageType>(std::string const&, UInt8RGBAImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt8ImageType>(std::string const&, UInt8ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<Int16ImageType>(std::string const&, Int16ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt16ImageType>(std::string const&, UInt16ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<Int32ImageType>(std::string const&, Int32ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<UInt32ImageType>(std::string const&, UInt32ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<FloatImageType>(std::string const&, FloatImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<DoubleImageType>(std::string const&, DoubleImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexInt16ImageType>(std::string const&,
ComplexInt16ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexInt32ImageType>(std::string const&,
ComplexInt32ImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexFloatImageType>(std::string const&,
ComplexFloatImageType*);
extern template OTBApplicationEngine_EXPORT_TEMPLATE void Application::SetParameterOutputImage<ComplexDoubleImageType>(std::string const&,
ComplexDoubleImageType*);
} // namespace Wrapper
} // namespace otb
#endif // otbWrapperApplication_h_
|