3#include "../_cexports/c_polimago.h"
5#include "../global.hpp"
6#include "../string.hpp"
7#include "predictor_base.hpp"
8#include "classification_result.hpp"
56 class ClassificationPredictor :
public PredictorBaseEx
60 explicit ClassificationPredictor(ReleaseObjectGuard &&guard)
63 if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_Regression)
69 for (
int i = 0; i < numClasses; ++i)
72 CVB_CALL_CAPI_CHECKED(PMGetClfClassLabelTyped(
Handle(), i, lbl.data()));
73 classes_.push_back(lbl.data());
78 static CExports::TCLF LoadInternal(
const String &fileName)
80 CExports::TCLF predictor =
nullptr;
82 CVB_CALL_CAPI_CHECKED(PMOpenClfTyped(fileName.c_str(), predictor));
86 void SaveFunction(
const String &fileName)
const override
88 CVB_CALL_CAPI_CHECKED(PMSaveClfTyped(fileName.c_str(),
Handle()));
93 return thisObjectName_;
103 : ClassificationPredictor(ReleaseObjectGuard(LoadInternal(fileName)))
105 fileName_ = fileName;
133 return std::make_unique<ClassificationPredictor>(fileName);
153 if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusAll)
157 else if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusOne)
174 return CVB_CALL_CAPI(PMGetOutputDimension(
Handle()));
184 return static_cast<int>(CVB_CALL_CAPI(PMGetNumClasses(
Handle())));
197 VerifyCompatibility(img, pos);
200 double confidence = 0.0;
202 CVB_CALL_CAPI_CHECKED(PMClassifyTyped(
Handle(), img.
Handle(), pos.
X(), pos.
Y(), lbl.data(), classNameMaxLength_,
203 confidence, confidences.data()));
218 return Classify(img, pos, confidences);
223 static const int classNameMaxLength_ = 256;
224 const std::string thisObjectName_ =
"Polimago Classification Predictor";
The Common Vision Blox image.
Definition decl_image.hpp:50
void * Handle() const noexcept
Classic API image handle.
Definition decl_image.hpp:237
Multi-purpose 2D vector class.
Definition point_2d.hpp:20
T X() const noexcept
Gets the x-component of the point.
Definition point_2d.hpp:84
T Y() const noexcept
Gets the y-component of the point.
Definition point_2d.hpp:104
int NumClasses() const
Number of classes a classification predictor has been trained for.
Definition classification_predictor.hpp:182
static std::unique_ptr< ClassificationPredictor > FromHandle(ReleaseObjectGuard &&guard)
Creates predictor from a classic API handle.
Definition classification_predictor.hpp:116
static std::unique_ptr< ClassificationPredictor > Load(const String &fileName)
Load a saved predictor from a file.
Definition classification_predictor.hpp:131
ClassificationResult Classify(const Image &img, Point2D< int > pos)
Classify a location inside an image.
Definition classification_predictor.hpp:215
ClassificationPredictor(const String &fileName)
Load a saved Polimago classification predictor from a file.
Definition classification_predictor.hpp:102
int OutputDimension() const
Dimension of results generated by this predictor.
Definition classification_predictor.hpp:172
std::vector< String > Classes() const
Class labels available in this predictor.
Definition classification_predictor.hpp:141
ClassificationType Classification() const
The classification type for which this classifier has been generated.
Definition classification_predictor.hpp:151
ClassificationResult Classify(const Image &img, Point2D< int > pos, std::vector< double > &confidences)
Classify a location inside an image.
Definition classification_predictor.hpp:195
Polimago classification result container.
Definition classification_result.hpp:20
void * Handle() const noexcept
Classic API Polimago handle.
Definition predictor_base.hpp:68
Namespace for the Polimago package.
Definition classification_predictor.hpp:38
std::shared_ptr< ClassificationPredictor > ClassificationPredictorPtr
Convenience shared pointer for ClassificationPredictor.
Definition classification_predictor.hpp:228
ClassificationType
Determine the classification type to be carried out.
Definition classification_predictor.hpp:42
@ None
The enum element indicating undefined state.
Definition classification_predictor.hpp:44
@ OneVersusAll
Definition classification_predictor.hpp:47
@ OneVersusOne
Definition classification_predictor.hpp:50
Root namespace for the Image Manager interface.
Definition version.hpp:11
std::string String
String for wide characters or unicode characters.
Definition string.hpp:49