RegCNNResult.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 /// \file RegCNNResult.h
3 /// \brief RegCNNResult for RegCNN modified from Result.h
4 /// \author Ilsoo Seong - iseong@uci.edu
5 ////////////////////////////////////////////////////////////////////////
6 
7 #ifndef REGCNN_RESULT_H
8 #define REGCNN_RESULT_H
9 
10 #include <vector>
11 
12 namespace cnn
13 {
14  /// RegCNNResult, basic output of CNN neural net
16  {
17  public:
18  RegCNNResult(const float* output, unsigned int& nOutputs);
19  // Vector version of the constructor
20  RegCNNResult(const std::vector<float> output);
21  RegCNNResult();
22 
23  std::vector<float> fOutput; ///< Vector of outputs from neural net
24 
25  };
26 }
27 
28 #endif // REGCNN_RESULT_H
29 
std::vector< float > fOutput
Vector of outputs from neural net.
Definition: RegCNNResult.h:23
RegCNNResult, basic output of CNN neural net.
Definition: RegCNNResult.h:15
Defines an enumeration for cellhit classification.