Commit c6ac2ae2b25149495f079bcf9b47d70b42468462

Authored by Jordan Cheney
1 parent 194180ec

Proper documentation

openbr/plugins/classification/caffe.cpp
... ... @@ -14,8 +14,13 @@ namespace br
14 14  
15 15 /*!
16 16 * \brief A transform that wraps the Caffe Deep learning library
17   - * \author Jordan Cheney \cite JordanCheney
18   - * \
  17 + * \author Jordan Cheney \cite jcheney
  18 + * \br_property QString modelFile path to prototxt model file
  19 + * \br_property QString solverFile path to prototxt solver file
  20 + * \br_property QString weightsFile path to caffemodel file
  21 + * \br_property int gpuDevice ID of GPU to use. gpuDevice < 0 runs on the CPU only.
  22 + * \br_link Caffe Integration Tutorial ../tutorials.md#caffe
  23 + * \br_link Caffe website http://caffe.berkeleyvision.org
19 24 */
20 25 class CaffeTransform : public Transform
21 26 {
... ...