Searched refs:Rect_ (Results 1 – 14 of 14) sorted by relevance
/external/opencv3/samples/cpp/ |
D | facial_features.cpp | 28 static void detectFaces(Mat&, vector<Rect_<int> >&, string); 29 static void detectEyes(Mat&, vector<Rect_<int> >&, string); 30 static void detectNose(Mat&, vector<Rect_<int> >&, string); 31 static void detectMouth(Mat&, vector<Rect_<int> >&, string); 32 static void detectFacialFeaures(Mat&, const vector<Rect_<int> >, string, string, string); 60 vector<Rect_<int> > faces; in main() 126 static void detectFaces(Mat& img, vector<Rect_<int> >& faces, string cascade_path) in detectFaces() 135 static void detectFacialFeaures(Mat& img, const vector<Rect_<int> > faces, string eye_cascade, in detectFacialFeaures() 156 vector<Rect_<int> > eyes; in detectFacialFeaures() 173 vector<Rect_<int> > nose; in detectFacialFeaures() [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | types.hpp | 173 bool inside(const Rect_<_Tp>& r) const; 374 template<typename _Tp> class Rect_ class 380 Rect_(); 381 Rect_(_Tp _x, _Tp _y, _Tp _width, _Tp _height); 382 Rect_(const Rect_& r); 383 Rect_(const Point_<_Tp>& org, const Size_<_Tp>& sz); 384 Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2); 386 Rect_& operator = ( const Rect_& r ); 398 template<typename _Tp2> operator Rect_<_Tp2>() const; 406 typedef Rect_<int> Rect2i; [all …]
|
D | opengl.hpp | 496 Rect_<double> wndRect = Rect_<double>(0.0, 0.0, 1.0, 1.0), 497 Rect_<double> texRect = Rect_<double>(0.0, 0.0, 1.0, 1.0));
|
D | persistence.hpp | 709 template<typename _Tp> static inline void read(const FileNode& node, Rect_<_Tp>& value, const Rect_… in read() 712 …value = temp.size() != 4 ? default_value : Rect_<_Tp>(saturate_cast<_Tp>(temp[0]), saturate_cast<_… in read() 885 void write(FileStorage& fs, const Rect_<_Tp>& r ) in write() 953 void write(FileStorage& fs, const String& name, const Rect_<_Tp>& r ) in write()
|
D | cvstd.inl.hpp | 256 std::ostream& operator << (std::ostream& out, const Rect_<_Tp>& rect) in operator <<()
|
D | types_c.h | 788 …CvRect(const cv::Rect_<_Tp>& r): x(cv::saturate_cast<int>(r.x)), y(cv::saturate_cast<int>(r.y)), w… in CvRect() 790 …operator cv::Rect_<_Tp>() const { return cv::Rect_<_Tp>((_Tp)x, (_Tp)y, (_Tp)width, (_Tp)height); }
|
D | base.hpp | 596 template<typename _Tp> class Rect_;
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
D | ts_perf.hpp | 657 public std::binary_function<cv::Rect_<T>, cv::Rect_<T>, bool> 659 bool operator()(const cv::Rect_<T>& r1, const cv::Rect_<T>& r2) const in operator ()()
|
/external/opencv/cv/src/ |
D | cvmorph.cpp | 47 icv##morphtype##Rect_##flavor##_C1R_t \ 48 icv##morphtype##Rect_##flavor##_C1R_p = 0; \ 51 icv##morphtype##Rect_##flavor##_C3R_t \ 52 icv##morphtype##Rect_##flavor##_C3R_p = 0; \ 55 icv##morphtype##Rect_##flavor##_C4R_t \ 56 icv##morphtype##Rect_##flavor##_C4R_p = 0; \
|
D | _cvipp.h | 293 IPCVAPI_EX( CvStatus, icv##morphtype##Rect_##flavor##_C##cn##R, \
|
/external/opencv3/modules/calib3d/src/ |
D | calibration.cpp | 2099 cv::Rect_<float>& inner, cv::Rect_<float>& outer ) in icvGetRectangles() 2135 inner = cv::Rect_<float>(iX0, iY0, iX1-iX0, iY1-iY0); in icvGetRectangles() 2136 outer = cv::Rect_<float>(oX0, oY0, oX1-oX0, oY1-oY0); in icvGetRectangles() 2149 cv::Rect_<float> inner1, inner2, outer1, outer2; in cvStereoRectify() 2355 cv::Rect_<float> inner, outer; in cvGetOptimalNewCameraMatrix() 2385 inner = cv::Rect_<float>((float)((inner.x - cx0)*s + cx), in cvGetOptimalNewCameraMatrix()
|
D | circlesgrid.cpp | 1071 Rect_<float> rect(samples[i] - Point2f(parameters.densityNeighborhoodSize) * 0.5, in filterOutliersByDensity()
|
/external/opencv3/modules/core/src/ |
D | opengl.cpp | 1413 void cv::ogl::render(const ogl::Texture2D& tex, Rect_<double> wndRect, Rect_<double> texRect) in render()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 3539 std::vector<cv::Rect_<double> > rrects(nclasses); in groupRectangles() 3558 cv::Rect_<double> r = rrects[i]; in groupRectangles() 3560 rrects[i] = cv::Rect_<double>(cv::saturate_cast<double>(r.x*s), in groupRectangles()
|