|
| HOGDescriptor () |
|
| HOGDescriptor (Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins, int _derivAperture=1, double _winSigma=-1, int _histogramNormType=HOGDescriptor::L2Hys, double _L2HysThreshold=0.2, bool _gammaCorrection=false, int _nlevels=HOGDescriptor::DEFAULT_NLEVELS, bool _signedGradient=false) |
|
| HOGDescriptor (const String &filename) |
|
| HOGDescriptor (const HOGDescriptor &d) |
|
virtual | ~HOGDescriptor () |
|
bool | checkDetectorSize () const |
|
virtual void | compute (InputArray img, std::vector< float > &descriptors, Size winStride=Size(), Size padding=Size(), const std::vector< Point > &locations=std::vector< Point >()) const |
|
virtual void | computeGradient (const Mat &img, Mat &grad, Mat &angleOfs, Size paddingTL=Size(), Size paddingBR=Size()) const |
|
virtual void | copyTo (HOGDescriptor &c) const |
|
virtual void | detect (const Mat &img, std::vector< Point > &foundLocations, std::vector< double > &weights, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), const std::vector< Point > &searchLocations=std::vector< Point >()) const |
| with found weights output More...
|
|
virtual void | detect (const Mat &img, std::vector< Point > &foundLocations, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), const std::vector< Point > &searchLocations=std::vector< Point >()) const |
| without found weights output More...
|
|
virtual void | detectMultiScale (InputArray img, std::vector< Rect > &foundLocations, std::vector< double > &foundWeights, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), double scale=1.05, double finalThreshold=2.0, bool useMeanshiftGrouping=false) const |
| with result weights output More...
|
|
virtual void | detectMultiScale (InputArray img, std::vector< Rect > &foundLocations, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), double scale=1.05, double finalThreshold=2.0, bool useMeanshiftGrouping=false) const |
| without found weights output More...
|
|
virtual void | detectMultiScaleROI (const cv::Mat &img, std::vector< cv::Rect > &foundLocations, std::vector< DetectionROI > &locations, double hitThreshold=0, int groupThreshold=0) const |
| evaluate specified ROI and return confidence value for each location in multiple scales More...
|
|
virtual void | detectROI (const cv::Mat &img, const std::vector< cv::Point > &locations, std::vector< cv::Point > &foundLocations, std::vector< double > &confidences, double hitThreshold=0, cv::Size winStride=Size(), cv::Size padding=Size()) const |
| evaluate specified ROI and return confidence value for each location More...
|
|
size_t | getDescriptorSize () const |
|
double | getWinSigma () const |
|
void | groupRectangles (std::vector< cv::Rect > &rectList, std::vector< double > &weights, int groupThreshold, double eps) const |
|
virtual bool | load (const String &filename, const String &objname=String()) |
|
virtual bool | read (FileNode &fn) |
|
void | readALTModel (String modelfile) |
| read/parse Dalal's alt model file More...
|
|
virtual void | save (const String &filename, const String &objname=String()) const |
|
virtual void | setSVMDetector (InputArray _svmdetector) |
|
virtual void | write (FileStorage &fs, const String &objname) const |
|