| 
|   | ParameterOptimizationTool (boost::filesystem::path img_directory, boost::filesystem::path gt_directory, boost::filesystem::path base_directory, std::string command_line, std::string command_line_parameters) | 
|   | Constructor.  More...
  | 
|   | 
| void  | addPostProcessingCommandLine (std::string command_line) | 
|   | Add post-processing script (e.g. boundaries to segmentation conversion) which is applied on the CSV segmentation output of the algorithms.  More...
  | 
|   | 
| void  | addSuperpixelTolerance (int superpixels, int tolerance) | 
|   | Some algorithms do not allow to control superpixels, therefore, optimization may aim for a specific range of superpixel numbers.  More...
  | 
|   | 
| void  | addFloatParameter (std::string name, std::string parameter, std::vector< float > values) | 
|   | Add float parameter to optimize.  More...
  | 
|   | 
| void  | addIntegerParameter (std::string name, std::string parameter, std::vector< int > values) | 
|   | Add integer parameter to optimize.  More...
  | 
|   | 
| void  | useDepth (boost::filesystem::path depth_directory) | 
|   | Use depth as additional cue.  More...
  | 
|   | 
| void  | useIntrinsics (boost::filesystem::path intrinsics_directory) | 
|   | Use intrinsic parameters from given directory for depth.  More...
  | 
|   | 
| void  | setVerbose (std::ostream &stream=std::cout) | 
|   | Set parameter optimization verbose. Per default output is written to std::cout.  More...
  | 
|   | 
| int  | numCombinations () | 
|   | Count parameter combinations.  More...
  | 
|   | 
| void  | optimize (float weigh=0.5, float weight_ue=0.33, float weight_co=0.33) | 
|   | Jointly optimize for Boundary Recall and Undersegmentation Error.  More...
  | 
|   | 
 | 
| std::string  | command_line | 
|   | The command used to runt he algorithm.  More...
  | 
|   | 
| std::string  | command_line_parameters | 
|   | Command line parameters always to append.  More...
  | 
|   | 
| std::string  | post_processing_command_line | 
|   | Command to use for post-processing.  More...
  | 
|   | 
| boost::filesystem::path  | img_directory | 
|   | Directory containing the images.  More...
  | 
|   | 
| boost::filesystem::path  | gt_directory | 
|   | Directory containing the ground truth segmentations.  More...
  | 
|   | 
| boost::filesystem::path  | depth_directory | 
|   | Directory containing the depth images.  More...
  | 
|   | 
| boost::filesystem::path  | intrinsics_directory | 
|   | Directory containing the intrinsic parameters for each image.  More...
  | 
|   | 
| boost::filesystem::path  | base_directory | 
|   | Base directory to optimize parameters in and put temporary files.  More...
  | 
|   | 
| EvaluationSummary::EvaluationMetrics  | evaluation_metrics | 
|   | Evaluation metrics to use.  More...
  | 
|   | 
| EvaluationSummary::EvaluationStatistics  | evaluation_statistics | 
|   | Evaluation statistics to use.  More...
  | 
|   | 
| std::vector< std::tuple< std::string, std::string, int, int > >  | parameters | 
|   | The parameters, with name, command line parameter, type and index in the respective vector.  More...
  | 
|   | 
| std::vector< std::tuple< std::vector< int >, int, int, int > >  | integer_parameters | 
|   | Vector containing all integer parameters.  More...
  | 
|   | 
| std::vector< std::tuple< std::vector< float >, int, float, float > >  | float_parameters | 
|   | Vector containing all float parameters.  More...
  | 
|   | 
| int  | superpixels_min | 
|   | Minimum number of superpixels.  More...
  | 
|   | 
| int  | superpixels_max | 
|   | 
Tool to guide parameter optimization using grid search. 
Copyright (c) 2016, David Stutz Contact: david.nosp@m..stu.nosp@m.tz@rw.nosp@m.th-a.nosp@m.achen.nosp@m..de, davidstutz.de All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
 
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
 
- Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- Author
 - David Stutz