Fixed Android build warning

pull/13383/head
Andrey Kamaev 13 years ago
parent 13456c9840
commit 32080ece8c
  1. 2
      modules/objdetect/include/opencv2/objdetect/objdetect.hpp

@ -688,7 +688,7 @@ struct Feature
int y; ///< y offset
int label; ///< Quantization
Feature() {}
Feature() : x(0), y(0), label(0) {}
Feature(int x, int y, int label) : x(x), y(y), label(label) {}
void read(const FileNode& fn);

Loading…
Cancel
Save