|
| 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) |
|
| HOGDescriptor (const String &filename) |
|
| HOGDescriptor (const HOGDescriptor &d) |
|
virtual | ~HOGDescriptor () |
|
size_t | getDescriptorSize () const |
|
bool | checkDetectorSize () const |
|
double | getWinSigma () const |
|
virtual void | setSVMDetector (InputArray _svmdetector) |
|
virtual bool | read (FileNode &fn) |
|
virtual void | write (FileStorage &fs, const String &objname) const |
|
virtual bool | load (const String &filename, const String &objname=String()) |
|
virtual void | save (const String &filename, const String &objname=String()) const |
|
virtual void | copyTo (HOGDescriptor &c) const |
|
virtual void | compute (const Mat &img, CV_OUT vector< float > &descriptors, Size winStride=Size(), Size padding=Size(), const vector< Point > &locations=vector< Point >()) const |
|
virtual void | detect (const Mat &img, CV_OUT vector< Point > &foundLocations, CV_OUT vector< double > &weights, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), const vector< Point > &searchLocations=vector< Point >()) const |
|
virtual void | detect (const Mat &img, CV_OUT vector< Point > &foundLocations, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), const vector< Point > &searchLocations=vector< Point >()) const |
|
virtual void | detectMultiScale (const Mat &img, CV_OUT vector< Rect > &foundLocations, CV_OUT vector< double > &foundWeights, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), double scale=1.05, double finalThreshold=2.0, bool useMeanshiftGrouping=false) const |
|
virtual void | detectMultiScale (const Mat &img, CV_OUT vector< Rect > &foundLocations, double hitThreshold=0, Size winStride=Size(), Size padding=Size(), double scale=1.05, double finalThreshold=2.0, bool useMeanshiftGrouping=false) const |
|
virtual void | computeGradient (const Mat &img, CV_OUT Mat &grad, CV_OUT Mat &angleOfs, Size paddingTL=Size(), Size paddingBR=Size()) const |
|
void | detectROI (const cv::Mat &img, const vector< cv::Point > &locations, CV_OUT std::vector< cv::Point > &foundLocations, CV_OUT std::vector< double > &confidences, double hitThreshold=0, cv::Size winStride=Size(), cv::Size padding=Size()) const |
|
void | detectMultiScaleROI (const cv::Mat &img, CV_OUT std::vector< cv::Rect > &foundLocations, std::vector< DetectionROI > &locations, double hitThreshold=0, int groupThreshold=0) const |
|
void | readALTModel (std::string modelfile) |
|
void | groupRectangles (vector< cv::Rect > &rectList, vector< double > &weights, int groupThreshold, double eps) const |
|