diff --git a/openbr/plugins/keypoint.cpp b/openbr/plugins/keypoint.cpp index 098120a..45053ba 100644 --- a/openbr/plugins/keypoint.cpp +++ b/openbr/plugins/keypoint.cpp @@ -15,6 +15,7 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include +#include #include #include "openbr_internal.h" #include "openbr/core/opencvutils.h" @@ -194,7 +195,7 @@ class HoGDescriptorTransform : public UntrainableTransform Size winStride = Size(0,0); Size padding = Size(0,0); hog.compute(src, descriptorVals, winStride, padding, locations); - Mat HoGFeats = Mat(descriptorVals, true); + Mat HoGFeats = Mat(descriptorVals, true); dst += HoGFeats; } };