DarkHelp  v1.8.6-4
C++ API for the neural network framework Darknet
Looking for a C++ dev who knows OpenCV?
I'm looking for work. Hire me!
DarkHelpPredictionResult.hpp File Reference

Classes used to return DarkHelp::NN prediction results to callers. More...

#include "DarkHelp.hpp"
#include <fstream>
Include dependency graph for DarkHelpPredictionResult.hpp:
This graph shows which files directly or indirectly include this file:

Classes

struct  DarkHelp::PredictionResult
 Structure used to store interesting information on predictions. More...
 

Namespaces

 DarkHelp
 The DarkHelp namespace contains (almost) everything in the DarkHelp library.
 

Typedefs

using DarkHelp::MClassProbabilities = std::map< int, float >
 Map of a class ID to a probability that this object belongs to that class. More...
 
using DarkHelp::PredictionResults = std::vector< PredictionResult >
 A vector of predictions for the image analyzed by DarkHelp::NN::predict(). More...
 

Functions

std::ostream & DarkHelp::operator<< (std::ostream &os, const PredictionResult &pred)
 Convenience function to stream a single result as a "readable" line of text. More...
 
std::ostream & DarkHelp::operator<< (std::ostream &os, const PredictionResults &results)
 Convenience function to stream an entire vector of results as readable text. More...
 

Detailed Description

Classes used to return DarkHelp::NN prediction results to callers.