3#include "../_cexports/c_polimago.h"
5#include "../global.hpp"
6#include "../string.hpp"
7#include "predictor_base.hpp"
8#include "classification_result.hpp"
51 if (trainingParameters_.Usage == CExports::TClassifierUsage::CU_Regression)
57 for (
int i = 0; i < numClasses; ++i)
59 Char lbl[classNameMaxLength_];
60 CVB_CALL_CAPI_CHECKED(PMGetClfClassLabelTyped(
Handle(), i, lbl));
61 classes_.push_back (lbl);
66 static CExports::TCLF LoadInternal (
const String & fileName)
68 CExports::TCLF predictor =
nullptr;
70 CVB_CALL_CAPI_CHECKED (PMOpenClfTyped(fileName.c_str(), predictor));
74 void SaveFunction (
const String &fileName)
const override
76 CVB_CALL_CAPI_CHECKED (PMSaveClfTyped(fileName.c_str(),
Handle()));
81 return thisObjectName_;
116 if (!guard.Handle ())
152 if (trainingParameters_.Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusAll)
156 else if (trainingParameters_.Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusOne)
173 return CVB_CALL_CAPI(PMGetOutputDimension(
Handle()));
183 return static_cast<int>(CVB_CALL_CAPI(PMGetNumClasses(
Handle())));
196 VerifyCompatibility(img, pos);
198 Char lbl[classNameMaxLength_];
199 double confidence = 0.0;
201 CVB_CALL_CAPI_CHECKED(PMClassifyTyped(
Handle(), img.Handle(), pos.
X(), pos.
Y(), lbl, classNameMaxLength_, confidence, &confidences[0]));
216 return Classify (img, pos, confidences);
221 static const int classNameMaxLength_ = 256;
222 const std::string thisObjectName_ =
"Polimago Classification Predictor";
The Common Vision Blox image.
Definition: decl_image.hpp:45
T X() const noexcept
Gets the x-component of the point.
Definition: point_2d.hpp:86
T Y() const noexcept
Gets the y-component of the point.
Definition: point_2d.hpp:106
Predictor to classify patterns with.
Definition: classification_predictor.hpp:45
int NumClasses() const
Number of classes a classification predictor has been trained for.
Definition: classification_predictor.hpp:181
static std::unique_ptr< ClassificationPredictor > FromHandle(ReleaseObjectGuard &&guard)
Creates predictor from a classic API handle.
Definition: classification_predictor.hpp:114
static std::unique_ptr< ClassificationPredictor > Load(const String &fileName)
Load a saved predictor from a file.
Definition: classification_predictor.hpp:129
ClassificationResult Classify(const Image &img, Point2D< int > pos)
Classify a location inside an image.
Definition: classification_predictor.hpp:213
ClassificationPredictor(const String &fileName)
Load a saved Polimago classification predictor from a file.
Definition: classification_predictor.hpp:91
int OutputDimension() const
Dimension of results generated by this predictor.
Definition: classification_predictor.hpp:171
std::vector< String > Classes() const
Class labels available in this predictor.
Definition: classification_predictor.hpp:140
ClassificationType Classification() const
The classification type for which this classifier has been generated.
Definition: classification_predictor.hpp:150
ClassificationResult Classify(const Image &img, Point2D< int > pos, std::vector< double > &confidences)
Classify a location inside an image.
Definition: classification_predictor.hpp:194
ClassificationPredictor(ClassificationPredictor &&) noexcept=default
Move constructor.
Polimago classification result container.
Definition: classification_result.hpp:20
void * Handle() const noexcept
Classic API Polimago handle.
Definition: predictor_base.hpp:66
Base class for Polimago predictors.
Definition: predictor_base.hpp:284
ClassificationType
Determine the classification type to be carried out.
Definition: classification_predictor.hpp:32
@ OneVersusAll
Quick classification, that tests versus all classes simultaneously (but potentially at the cost of re...
@ OneVersusOne
Thorough classification, that tests all possible pairs of classes (which yields potentially better re...
Root namespace for the Image Manager interface.
Definition: c_barcode.h:24
char Char
Character type for wide characters or unicode characters.
Definition: string.hpp:59