Commit ba990be3a12a110097ce6bf2430b920446b8ec13
1 parent
bc16c3dd
Move some functionality from openbr_plugin.h to openbr_internal.h
Move CompositeTransform, and several other categorical abstract transform types to a new file, openbr_internal.h. Adjust files in plugins to include the new file rather than incldue openbr_plugin.h directly.
Showing
55 changed files
with
227 additions
and
227 deletions
openbr/frvt2012.cpp
openbr/openbr_plugin.cpp
openbr/openbr_plugin.h
| ... | ... | @@ -1127,171 +1127,6 @@ inline QDataStream &operator>>(QDataStream &stream, Transform &f) |
| 1127 | 1127 | f.load(stream); |
| 1128 | 1128 | return stream; |
| 1129 | 1129 | } |
| 1130 | - | |
| 1131 | -/*! | |
| 1132 | - * \brief A br::Transform for which the results of project may change due to prior calls to project | |
| 1133 | - */ | |
| 1134 | -class BR_EXPORT TimeVaryingTransform : public Transform | |
| 1135 | -{ | |
| 1136 | - Q_OBJECT | |
| 1137 | - | |
| 1138 | -public: | |
| 1139 | - virtual bool timeVarying() const { return true; } | |
| 1140 | - | |
| 1141 | - virtual void project(const Template &src, Template &dst) const | |
| 1142 | - { | |
| 1143 | - qFatal("No const project defined for time-varying transform"); | |
| 1144 | - (void) dst; (void) src; | |
| 1145 | - } | |
| 1146 | - | |
| 1147 | - virtual void project(const TemplateList &src, TemplateList &dst) const | |
| 1148 | - { | |
| 1149 | - qFatal("No const project defined for time-varying transform"); | |
| 1150 | - (void) dst; (void) src; | |
| 1151 | - } | |
| 1152 | - | |
| 1153 | - // Get a compile failure if this isn't here to go along with the other | |
| 1154 | - // projectUpdate, no idea why | |
| 1155 | - virtual void projectUpdate(const Template & src, Template & dst) | |
| 1156 | - { | |
| 1157 | - (void) src; (void) dst; | |
| 1158 | - qFatal("do something useful"); | |
| 1159 | - } | |
| 1160 | - | |
| 1161 | - virtual void projectUpdate(const TemplateList &src, TemplateList &dst) | |
| 1162 | - { | |
| 1163 | - foreach (const Template & src_part, src) { | |
| 1164 | - Template out; | |
| 1165 | - projectUpdate(src_part, out); | |
| 1166 | - dst.append(out); | |
| 1167 | - } | |
| 1168 | - } | |
| 1169 | - | |
| 1170 | - virtual Transform * pseudoCopy() | |
| 1171 | - { | |
| 1172 | - return this->clone(); | |
| 1173 | - } | |
| 1174 | - | |
| 1175 | - | |
| 1176 | -protected: | |
| 1177 | - TimeVaryingTransform(bool independent = true, bool trainable = true) : Transform(independent, trainable) {} | |
| 1178 | -}; | |
| 1179 | - | |
| 1180 | -/*! | |
| 1181 | - * \brief A br::Transform expecting multiple matrices per template. | |
| 1182 | - */ | |
| 1183 | -class BR_EXPORT MetaTransform : public Transform | |
| 1184 | -{ | |
| 1185 | - Q_OBJECT | |
| 1186 | - | |
| 1187 | -protected: | |
| 1188 | - MetaTransform() : Transform(false) {} | |
| 1189 | -}; | |
| 1190 | - | |
| 1191 | -/*! | |
| 1192 | - * \brief A br::Transform that does not require training data. | |
| 1193 | - */ | |
| 1194 | -class BR_EXPORT UntrainableTransform : public Transform | |
| 1195 | -{ | |
| 1196 | - Q_OBJECT | |
| 1197 | - | |
| 1198 | -protected: | |
| 1199 | - UntrainableTransform(bool independent = true) : Transform(independent, false) {} /*!< \brief Construct an untrainable transform. */ | |
| 1200 | - | |
| 1201 | -private: | |
| 1202 | - Transform *clone() const { return const_cast<UntrainableTransform*>(this); } | |
| 1203 | - void train(const TemplateList &data) { (void) data; } | |
| 1204 | - void store(QDataStream &stream) const { (void) stream; } | |
| 1205 | - void load(QDataStream &stream) { (void) stream; } | |
| 1206 | -}; | |
| 1207 | - | |
| 1208 | -/*! | |
| 1209 | - * \brief A br::MetaTransform that does not require training data. | |
| 1210 | - */ | |
| 1211 | -class BR_EXPORT UntrainableMetaTransform : public UntrainableTransform | |
| 1212 | -{ | |
| 1213 | - Q_OBJECT | |
| 1214 | - | |
| 1215 | -protected: | |
| 1216 | - UntrainableMetaTransform() : UntrainableTransform(false) {} | |
| 1217 | -}; | |
| 1218 | - | |
| 1219 | -/*! | |
| 1220 | - * \brief A MetaTransform that aggregates some sub-transforms | |
| 1221 | - */ | |
| 1222 | -class BR_EXPORT CompositeTransform : public TimeVaryingTransform | |
| 1223 | -{ | |
| 1224 | - Q_OBJECT | |
| 1225 | - | |
| 1226 | -public: | |
| 1227 | - Q_PROPERTY(QList<br::Transform*> transforms READ get_transforms WRITE set_transforms RESET reset_transforms) | |
| 1228 | - BR_PROPERTY(QList<br::Transform*>, transforms, QList<br::Transform*>()) | |
| 1229 | - | |
| 1230 | - virtual void project(const Template &src, Template &dst) const | |
| 1231 | - { | |
| 1232 | - if (timeVarying()) qFatal("No const project defined for time-varying transform"); | |
| 1233 | - _project(src, dst); | |
| 1234 | - } | |
| 1235 | - | |
| 1236 | - virtual void project(const TemplateList &src, TemplateList &dst) const | |
| 1237 | - { | |
| 1238 | - if (timeVarying()) qFatal("No const project defined for time-varying transform"); | |
| 1239 | - _project(src, dst); | |
| 1240 | - } | |
| 1241 | - | |
| 1242 | - bool timeVarying() const { return isTimeVarying; } | |
| 1243 | - | |
| 1244 | - void init() | |
| 1245 | - { | |
| 1246 | - isTimeVarying = false; | |
| 1247 | - trainable = false; | |
| 1248 | - foreach (const br::Transform *transform, transforms) { | |
| 1249 | - isTimeVarying = isTimeVarying || transform->timeVarying(); | |
| 1250 | - trainable = trainable || transform->trainable; | |
| 1251 | - } | |
| 1252 | - } | |
| 1253 | - | |
| 1254 | - Transform * pseudoCopy() | |
| 1255 | - { | |
| 1256 | - if (!timeVarying()) | |
| 1257 | - return this; | |
| 1258 | - | |
| 1259 | - QString name = metaObject()->className(); | |
| 1260 | - name.replace("Transform",""); | |
| 1261 | - name += "([])"; | |
| 1262 | - name.replace("br::",""); | |
| 1263 | - CompositeTransform * output = dynamic_cast<CompositeTransform *>(Transform::make(name, NULL)); | |
| 1264 | - | |
| 1265 | - if (output == NULL) | |
| 1266 | - qFatal("Dynamic cast failed!"); | |
| 1267 | - | |
| 1268 | - foreach(Transform* t, transforms ) | |
| 1269 | - { | |
| 1270 | - Transform * maybe_copy = t->pseudoCopy(); | |
| 1271 | - if (maybe_copy->parent() == NULL) | |
| 1272 | - maybe_copy->setParent(output); | |
| 1273 | - output->transforms.append(t->pseudoCopy()); | |
| 1274 | - } | |
| 1275 | - | |
| 1276 | - output->file = this->file; | |
| 1277 | - output->classes = classes; | |
| 1278 | - output->instances = instances; | |
| 1279 | - output->fraction = fraction; | |
| 1280 | - | |
| 1281 | - output->init(); | |
| 1282 | - | |
| 1283 | - return output; | |
| 1284 | - } | |
| 1285 | - | |
| 1286 | -protected: | |
| 1287 | - bool isTimeVarying; | |
| 1288 | - | |
| 1289 | - virtual void _project(const Template & src, Template & dst) const = 0; | |
| 1290 | - virtual void _project(const TemplateList & src, TemplateList & dst) const = 0; | |
| 1291 | - | |
| 1292 | - CompositeTransform() : TimeVaryingTransform(false) {} | |
| 1293 | -}; | |
| 1294 | - | |
| 1295 | 1130 | /*! @}*/ |
| 1296 | 1131 | |
| 1297 | 1132 | /*! | ... | ... |
openbr/plugins/algorithms.cpp
openbr/plugins/cascade.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/objdetect/objdetect.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/opencvutils.h" |
| 21 | 20 | #include "openbr/core/resource.h" |
| 22 | 21 | ... | ... |
openbr/plugins/cluster.cpp
| ... | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | * limitations under the License. * |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | -#include <openbr/openbr_plugin.h> | |
| 17 | +#include "openbr_internal.h" | |
| 18 | 18 | #include <opencv2/flann/flann.hpp> |
| 19 | 19 | |
| 20 | 20 | #include "openbr/core/opencvutils.h" | ... | ... |
openbr/plugins/crop.cpp
openbr/plugins/ct8.cpp
openbr/plugins/cvt.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/imgproc/imgproc.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/opencvutils.h" |
| 21 | 20 | |
| 22 | 21 | using namespace cv; | ... | ... |
openbr/plugins/denoising.cpp
openbr/plugins/distance.cpp
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | #include <QFutureSynchronizer> |
| 18 | 18 | #include <QtConcurrentRun> |
| 19 | 19 | #include <opencv2/imgproc/imgproc.hpp> |
| 20 | -#include <openbr/openbr_plugin.h> | |
| 20 | +#include "openbr_internal.h" | |
| 21 | 21 | |
| 22 | 22 | #include "openbr/core/distance_sse.h" |
| 23 | 23 | #include "openbr/core/qtutils.h" | ... | ... |
openbr/plugins/draw.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/highgui/highgui.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/opencvutils.h" |
| 21 | 20 | |
| 22 | 21 | using namespace cv; | ... | ... |
openbr/plugins/eigen3.cpp
| ... | ... | @@ -15,7 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <Eigen/Dense> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 18 | +#include "openbr_internal.h" | |
| 19 | 19 | |
| 20 | 20 | #include "openbr/core/common.h" |
| 21 | 21 | #include "openbr/core/eigenutils.h" | ... | ... |
openbr/plugins/eyes.cpp
openbr/plugins/fill.cpp
openbr/plugins/filter.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/imgproc/imgproc.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/tanh_sse.h" |
| 21 | 20 | |
| 22 | 21 | using namespace cv; | ... | ... |
openbr/plugins/format.cpp
openbr/plugins/gallery.cpp
openbr/plugins/gui.cpp
openbr/plugins/hash.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <QCryptographicHash> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/qtutils.h" |
| 21 | 20 | |
| 22 | 21 | namespace br | ... | ... |
openbr/plugins/hist.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/imgproc/imgproc.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/common.h" |
| 21 | 20 | #include "openbr/core/opencvutils.h" |
| 22 | 21 | ... | ... |
openbr/plugins/integral.cpp
openbr/plugins/ipc2013.cpp
openbr/plugins/keypoint.cpp
openbr/plugins/lbp.cpp
openbr/plugins/mask.cpp
openbr/plugins/meta.cpp
| ... | ... | @@ -16,8 +16,7 @@ |
| 16 | 16 | |
| 17 | 17 | #include <QFutureSynchronizer> |
| 18 | 18 | #include <QtConcurrentRun> |
| 19 | -#include <openbr/openbr_plugin.h> | |
| 20 | - | |
| 19 | +#include "openbr_internal.h" | |
| 21 | 20 | #include "openbr/core/common.h" |
| 22 | 21 | #include "openbr/core/opencvutils.h" |
| 23 | 22 | #include "openbr/core/qtutils.h" | ... | ... |
openbr/plugins/misc.cpp
| ... | ... | @@ -15,8 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/highgui/highgui.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 19 | - | |
| 18 | +#include "openbr_internal.h" | |
| 20 | 19 | #include "openbr/core/opencvutils.h" |
| 21 | 20 | |
| 22 | 21 | using namespace cv; | ... | ... |
openbr/plugins/mongoose.cpp
openbr/plugins/nec3.cpp
openbr/plugins/neclatent1.cpp
openbr/plugins/normalize.cpp
| ... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 | #include <opencv2/imgproc/imgproc.hpp> |
| 20 | 20 | #include <opencv2/highgui/highgui.hpp> |
| 21 | 21 | #include <Eigen/Core> |
| 22 | -#include <openbr/openbr_plugin.h> | |
| 22 | +#include "openbr_internal.h" | |
| 23 | 23 | |
| 24 | 24 | #include "openbr/core/common.h" |
| 25 | 25 | #include "openbr/core/opencvutils.h" | ... | ... |
openbr/plugins/nt4.cpp
openbr/plugins/openbr_internal.h
0 โ 100644
| 1 | +#ifndef __OPENBR_INTERNAL_H | |
| 2 | +#define __OPENBR_INTERNAL_H | |
| 3 | + | |
| 4 | +#include "openbr/openbr_plugin.h" | |
| 5 | + | |
| 6 | +namespace br | |
| 7 | +{ | |
| 8 | +/*! | |
| 9 | + * \brief A br::Transform that does not require training data. | |
| 10 | + */ | |
| 11 | +class BR_EXPORT UntrainableTransform : public Transform | |
| 12 | +{ | |
| 13 | + Q_OBJECT | |
| 14 | + | |
| 15 | +protected: | |
| 16 | + UntrainableTransform(bool independent = true) : Transform(independent, false) {} /*!< \brief Construct an untrainable transform. */ | |
| 17 | + | |
| 18 | +private: | |
| 19 | + Transform *clone() const { return const_cast<UntrainableTransform*>(this); } | |
| 20 | + void train(const TemplateList &data) { (void) data; } | |
| 21 | + void store(QDataStream &stream) const { (void) stream; } | |
| 22 | + void load(QDataStream &stream) { (void) stream; } | |
| 23 | +}; | |
| 24 | + | |
| 25 | +/*! | |
| 26 | + * \brief A br::MetaTransform that does not require training data. | |
| 27 | + */ | |
| 28 | +class BR_EXPORT UntrainableMetaTransform : public UntrainableTransform | |
| 29 | +{ | |
| 30 | + Q_OBJECT | |
| 31 | + | |
| 32 | +protected: | |
| 33 | + UntrainableMetaTransform() : UntrainableTransform(false) {} | |
| 34 | +}; | |
| 35 | + | |
| 36 | +/*! | |
| 37 | + * \brief A br::Transform for which the results of project may change due to prior calls to project | |
| 38 | + */ | |
| 39 | +class BR_EXPORT TimeVaryingTransform : public Transform | |
| 40 | +{ | |
| 41 | + Q_OBJECT | |
| 42 | + | |
| 43 | +public: | |
| 44 | + virtual bool timeVarying() const { return true; } | |
| 45 | + | |
| 46 | + virtual void project(const Template &src, Template &dst) const | |
| 47 | + { | |
| 48 | + qFatal("No const project defined for time-varying transform"); | |
| 49 | + (void) dst; (void) src; | |
| 50 | + } | |
| 51 | + | |
| 52 | + virtual void project(const TemplateList &src, TemplateList &dst) const | |
| 53 | + { | |
| 54 | + qFatal("No const project defined for time-varying transform"); | |
| 55 | + (void) dst; (void) src; | |
| 56 | + } | |
| 57 | + | |
| 58 | + // Get a compile failure if this isn't here to go along with the other | |
| 59 | + // projectUpdate, no idea why | |
| 60 | + virtual void projectUpdate(const Template & src, Template & dst) | |
| 61 | + { | |
| 62 | + (void) src; (void) dst; | |
| 63 | + qFatal("do something useful"); | |
| 64 | + } | |
| 65 | + | |
| 66 | + virtual void projectUpdate(const TemplateList &src, TemplateList &dst) | |
| 67 | + { | |
| 68 | + foreach (const Template & src_part, src) { | |
| 69 | + Template out; | |
| 70 | + projectUpdate(src_part, out); | |
| 71 | + dst.append(out); | |
| 72 | + } | |
| 73 | + } | |
| 74 | + | |
| 75 | + virtual Transform * pseudoCopy() | |
| 76 | + { | |
| 77 | + return this->clone(); | |
| 78 | + } | |
| 79 | + | |
| 80 | + | |
| 81 | +protected: | |
| 82 | + TimeVaryingTransform(bool independent = true, bool trainable = true) : Transform(independent, trainable) {} | |
| 83 | +}; | |
| 84 | + | |
| 85 | +/*! | |
| 86 | + * \brief A br::Transform expecting multiple matrices per template. | |
| 87 | + */ | |
| 88 | +class BR_EXPORT MetaTransform : public Transform | |
| 89 | +{ | |
| 90 | + Q_OBJECT | |
| 91 | + | |
| 92 | +protected: | |
| 93 | + MetaTransform() : Transform(false) {} | |
| 94 | +}; | |
| 95 | + | |
| 96 | +/*! | |
| 97 | + * \brief A MetaTransform that aggregates some sub-transforms | |
| 98 | + */ | |
| 99 | +class BR_EXPORT CompositeTransform : public TimeVaryingTransform | |
| 100 | +{ | |
| 101 | + Q_OBJECT | |
| 102 | + | |
| 103 | +public: | |
| 104 | + Q_PROPERTY(QList<br::Transform*> transforms READ get_transforms WRITE set_transforms RESET reset_transforms) | |
| 105 | + BR_PROPERTY(QList<br::Transform*>, transforms, QList<br::Transform*>()) | |
| 106 | + | |
| 107 | + virtual void project(const Template &src, Template &dst) const | |
| 108 | + { | |
| 109 | + if (timeVarying()) qFatal("No const project defined for time-varying transform"); | |
| 110 | + _project(src, dst); | |
| 111 | + } | |
| 112 | + | |
| 113 | + virtual void project(const TemplateList &src, TemplateList &dst) const | |
| 114 | + { | |
| 115 | + if (timeVarying()) qFatal("No const project defined for time-varying transform"); | |
| 116 | + _project(src, dst); | |
| 117 | + } | |
| 118 | + | |
| 119 | + bool timeVarying() const { return isTimeVarying; } | |
| 120 | + | |
| 121 | + void init() | |
| 122 | + { | |
| 123 | + isTimeVarying = false; | |
| 124 | + trainable = false; | |
| 125 | + foreach (const br::Transform *transform, transforms) { | |
| 126 | + isTimeVarying = isTimeVarying || transform->timeVarying(); | |
| 127 | + trainable = trainable || transform->trainable; | |
| 128 | + } | |
| 129 | + } | |
| 130 | + | |
| 131 | + Transform * pseudoCopy() | |
| 132 | + { | |
| 133 | + if (!timeVarying()) | |
| 134 | + return this; | |
| 135 | + | |
| 136 | + QString name = metaObject()->className(); | |
| 137 | + name.replace("Transform",""); | |
| 138 | + name += "([])"; | |
| 139 | + name.replace("br::",""); | |
| 140 | + CompositeTransform * output = dynamic_cast<CompositeTransform *>(Transform::make(name, NULL)); | |
| 141 | + | |
| 142 | + if (output == NULL) | |
| 143 | + qFatal("Dynamic cast failed!"); | |
| 144 | + | |
| 145 | + foreach(Transform* t, transforms ) | |
| 146 | + { | |
| 147 | + Transform * maybe_copy = t->pseudoCopy(); | |
| 148 | + if (maybe_copy->parent() == NULL) | |
| 149 | + maybe_copy->setParent(output); | |
| 150 | + output->transforms.append(t->pseudoCopy()); | |
| 151 | + } | |
| 152 | + | |
| 153 | + output->file = this->file; | |
| 154 | + output->classes = classes; | |
| 155 | + output->instances = instances; | |
| 156 | + output->fraction = fraction; | |
| 157 | + | |
| 158 | + output->init(); | |
| 159 | + | |
| 160 | + return output; | |
| 161 | + } | |
| 162 | + | |
| 163 | +protected: | |
| 164 | + bool isTimeVarying; | |
| 165 | + | |
| 166 | + virtual void _project(const Template & src, Template & dst) const = 0; | |
| 167 | + virtual void _project(const TemplateList & src, TemplateList & dst) const = 0; | |
| 168 | + | |
| 169 | + CompositeTransform() : TimeVaryingTransform(false) {} | |
| 170 | +}; | |
| 171 | + | |
| 172 | +} | |
| 173 | + | |
| 174 | +#endif | ... | ... |
openbr/plugins/output.cpp
openbr/plugins/pbd.cpp
openbr/plugins/pixel.cpp
openbr/plugins/plugins.cmake
| 1 | 1 | # Add source to BR_THIRDPARTY_SRC |
| 2 | 2 | # Add libs to BR_THIRDPARTY_LIBS |
| 3 | 3 | |
| 4 | -file(GLOB PLUGINS plugins/*.cpp) | |
| 4 | +file(GLOB PLUGINS plugins/*.cpp plugins/*.h) | |
| 5 | 5 | foreach(PLUGIN ${PLUGINS} ${BR_THIRDPARTY_PLUGINS}) |
| 6 | 6 | get_filename_component(PLUGIN_BASENAME ${PLUGIN} NAME_WE) |
| 7 | 7 | get_filename_component(PLUGIN_PATH ${PLUGIN} PATH) | ... | ... |
openbr/plugins/pp5.cpp
openbr/plugins/qtnetwork.cpp
openbr/plugins/quality.cpp
openbr/plugins/quantize.cpp
openbr/plugins/quantize2.cpp
openbr/plugins/random.cpp
| ... | ... | @@ -15,7 +15,7 @@ |
| 15 | 15 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
| 16 | 16 | |
| 17 | 17 | #include <opencv2/imgproc/imgproc.hpp> |
| 18 | -#include <openbr/openbr_plugin.h> | |
| 18 | +#include "openbr_internal.h" | |
| 19 | 19 | |
| 20 | 20 | #include "openbr/core/common.h" |
| 21 | 21 | #include "openbr/core/opencvutils.h" | ... | ... |
openbr/plugins/reduce.cpp
openbr/plugins/regions.cpp
openbr/plugins/register.cpp
openbr/plugins/sentence.cpp
openbr/plugins/stasm.cpp
openbr/plugins/stream.cpp
openbr/plugins/svm.cpp
openbr/plugins/synthetic.cpp
openbr/plugins/validate.cpp
openbr/plugins/wavelet.cpp