CVB++ 15.0
classification_predictor.hpp
1#pragma once
2
3#include "../_cexports/c_polimago.h"
4
5#include "../global.hpp"
6#include "../string.hpp"
7#include "predictor_base.hpp"
8#include "classification_result.hpp"
9
10#include <utility>
11#include <vector>
12
13namespace Cvb
14{
15CVB_BEGIN_INLINE_NS
16
18
27namespace Polimago
28{
29
32{
34 None,
39};
40
42
45{
46private:
47 // Internal helper constructor version
48 explicit ClassificationPredictor (ReleaseObjectGuard&& guard)
49 : PredictorBaseEx (std::move (guard))
50 {
51 if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_Regression)
52 {
53 throw std::runtime_error (std::string("The object is not a ") + thisObjectName_);
54 }
55
56 auto numClasses = NumClasses ();
57 for (int i = 0; i < numClasses; ++i)
58 {
60 CVB_CALL_CAPI_CHECKED(PMGetClfClassLabelTyped(Handle(), i, lbl.data()));
61 classes_.push_back (lbl.data());
62 }
63 }
64
65 // Helper to load a saved predictor from file
66 static CExports::TCLF LoadInternal (const String & fileName)
67 {
68 CExports::TCLF predictor = nullptr;
69
70 CVB_CALL_CAPI_CHECKED (PMOpenClfTyped(fileName.c_str(), predictor));
71 return predictor;
72 }
73
74 void SaveFunction (const String &fileName) const override
75 {
76 CVB_CALL_CAPI_CHECKED (PMSaveClfTyped(fileName.c_str(), Handle()));
77 }
78
79 std::string ObjectName () const override
80 {
81 return thisObjectName_;
82 }
83
84public:
86
90 explicit ClassificationPredictor (const String & fileName)
91 : ClassificationPredictor (ReleaseObjectGuard(LoadInternal (fileName)))
92 {
93 fileName_ = fileName;
94 }
95
96
98
105 static std::unique_ptr<ClassificationPredictor> FromHandle (ReleaseObjectGuard&& guard)
106 {
107 if (!guard.Handle ())
108 {
109 throw std::invalid_argument ("invalid classification predictor native handle");
110 }
112 }
113
115
121 {
122 return std::make_unique<ClassificationPredictor>(fileName);
123 }
124
125
127
132 {
133 return classes_;
134 }
135
137
142 {
143 if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusAll)
144 {
146 }
147 else if (TrainingParameters().Usage == CExports::TClassifierUsage::CU_ClassifyOneVersusOne)
148 {
150 }
151 else
152 {
153 throw std::runtime_error ("invalid classification type");
154 }
155 }
156
158
162 int OutputDimension() const
163 {
164 return CVB_CALL_CAPI(PMGetOutputDimension(Handle()));
165 }
166
168
172 int NumClasses() const
173 {
174 return static_cast<int>(CVB_CALL_CAPI(PMGetNumClasses(Handle())));
175 }
176
178
186 {
187 VerifyCompatibility(img, pos);
188
190 double confidence = 0.0;
191 confidences.assign (NumClasses (), 0.0);
192 CVB_CALL_CAPI_CHECKED(PMClassifyTyped(Handle(), img.Handle(), pos.X(), pos.Y(), lbl.data(), classNameMaxLength_, confidence, confidences.data()));
193
194 return ClassificationResult (lbl.data(), confidence);
195 }
196
198
205 {
206 std::vector<double> confidences;
207 return Classify (img, pos, confidences);
208 }
209
210private:
211 std::vector<String> classes_;
212 static const int classNameMaxLength_ = 256;
213 const std::string thisObjectName_ = "Polimago Classification Predictor";
214};
215
218
219
220
221} /* namespace Polimago */
222CVB_END_INLINE_NS
223} /* namespace Cvb */
224
225
226
227
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:172
static std::unique_ptr< ClassificationPredictor > FromHandle(ReleaseObjectGuard &&guard)
Creates predictor from a classic API handle.
Definition: classification_predictor.hpp:105
static std::unique_ptr< ClassificationPredictor > Load(const String &fileName)
Load a saved predictor from a file.
Definition: classification_predictor.hpp:120
ClassificationResult Classify(const Image &img, Point2D< int > pos)
Classify a location inside an image.
Definition: classification_predictor.hpp:204
ClassificationPredictor(const String &fileName)
Load a saved Polimago classification predictor from a file.
Definition: classification_predictor.hpp:90
int OutputDimension() const
Dimension of results generated by this predictor.
Definition: classification_predictor.hpp:162
std::vector< String > Classes() const
Class labels available in this predictor.
Definition: classification_predictor.hpp:131
ClassificationType Classification() const
The classification type for which this classifier has been generated.
Definition: classification_predictor.hpp:141
ClassificationResult Classify(const Image &img, Point2D< int > pos, std::vector< double > &confidences)
Classify a location inside an image.
Definition: classification_predictor.hpp:185
Polimago classification result container.
Definition: classification_result.hpp:20
void * Handle() const noexcept
Classic API Polimago handle.
Definition: predictor_base.hpp:69
Base class for Polimago predictors.
Definition: predictor_base.hpp:293
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