Public Member Functions | Public Attributes | List of all members
cnn::RegCNNResult Class Reference

RegCNNResult, basic output of CNN neural net. More...

#include <RegCNNResult.h>

Public Member Functions

 RegCNNResult (const float *output, unsigned int &nOutputs)
 
 RegCNNResult (const std::vector< float > output)
 
 RegCNNResult ()
 

Public Attributes

std::vector< float > fOutput
 Vector of outputs from neural net. More...
 

Detailed Description

RegCNNResult, basic output of CNN neural net.

Definition at line 15 of file RegCNNResult.h.

Constructor & Destructor Documentation

cnn::RegCNNResult::RegCNNResult ( const float *  output,
unsigned int &  nOutputs 
)

Definition at line 18 of file RegCNNResult.cxx.

18  :
19  fOutput(nOutputs)
20  {
21  for(size_t i = 0; i < nOutputs; ++i) fOutput[i] = output[i];
22  }
std::vector< float > fOutput
Vector of outputs from neural net.
Definition: RegCNNResult.h:23
cnn::RegCNNResult::RegCNNResult ( const std::vector< float >  output)

Definition at line 24 of file RegCNNResult.cxx.

24  {
25  fOutput = output;
26  }
std::vector< float > fOutput
Vector of outputs from neural net.
Definition: RegCNNResult.h:23
cnn::RegCNNResult::RegCNNResult ( )

Definition at line 28 of file RegCNNResult.cxx.

28  :
29  fOutput()
30  {}
std::vector< float > fOutput
Vector of outputs from neural net.
Definition: RegCNNResult.h:23

Member Data Documentation

std::vector<float> cnn::RegCNNResult::fOutput

Vector of outputs from neural net.

Definition at line 23 of file RegCNNResult.h.


The documentation for this class was generated from the following files: