[mlpack-git] [mlpack/mlpack] Added the discretize function. Design changes as discussed. (#703)

Marcus Edel notifications at github.com
Sun Aug 14 12:19:30 EDT 2016


> +#ifndef MLPACK_METHODS_EDGE_BOXES_FEATURE_PARAMETERS_HPP
> +#define MLPACK_METHODS_EDGE_BOXES_FEATURE_PARAMETERS_HPP
> +
> +namespace mlpack {
> +namespace structured_tree {
> + 
> +//! This class holds all the fields for the FeatureExtraction class.
> +class FeatureParameters
> +{
> + public:
> +
> +  //! getter and setter methods for all the fields in class.
> +  void NumImages(size_t value) { numImages = value; }
> +  size_t NumImages() const { return numImages; }
> +
> +  void RowSize(size_t value) { rowSize = value; }

Can you add a comment for each function? You could use the comments from ``edge_boxes_main.cpp``.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/pull/703/files/72eb1ef22c7db1ea33af3de1cd043cdb277ec562#r74704560
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160814/ddb4d2c4/attachment.html>


More information about the mlpack-git mailing list