Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
dunereco
dunereco
RegCNN
func
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
15
class
RegCNNResult
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
make_norm_csv.output
list output
Definition:
make_norm_csv.py:48
cnn::RegCNNResult::fOutput
std::vector< float > fOutput
Vector of outputs from neural net.
Definition:
RegCNNResult.h:23
cnn::RegCNNResult
RegCNNResult, basic output of CNN neural net.
Definition:
RegCNNResult.h:15
cnn::RegCNNResult::RegCNNResult
RegCNNResult()
Definition:
RegCNNResult.cxx:28
cnn
Defines an enumeration for cellhit classification.
Definition:
RegCNNEvaluator_module.cc:54
Generated by
1.8.11