Home
last modified time | relevance | path

Searched refs:minNeighbors (Results 1 – 25 of 34) sorted by relevance

12

/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/FaceDetect/src/haar/
H A Dhaardetector.h65 Q_PROPERTY(int minNeighbors
66 READ minNeighbors
89 Q_INVOKABLE int minNeighbors() const;
90 Q_INVOKABLE int &minNeighbors();
108 void minNeighborsChanged(int minNeighbors);
118 void setMinNeighbors(int minNeighbors);
H A Dhaardetector.cpp137 RectVector groupRectangles(const RectVector &rects, int minNeighbors=3,
901 int minNeighbors, in groupRectangles() argument
904 if (minNeighbors < 1 || rects.isEmpty()) in groupRectangles()
944 if (n1 <= minNeighbors) in groupRectangles()
953 if (j == i || n2 <= minNeighbors) in groupRectangles()
1068 int HaarDetector::minNeighbors() const in minNeighbors() function in HaarDetector
1073 int &HaarDetector::minNeighbors() in minNeighbors() function in HaarDetector
1298 void HaarDetector::setMinNeighbors(int minNeighbors) in setMinNeighbors() argument
1300 if (this->d->m_minNeighbors == minNeighbors) in setMinNeighbors()
1303 this->d->m_minNeighbors = minNeighbors; in setMinNeighbors()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/julia/gen/jl_cxx_files/
H A Dcv_manual_wrap.jl37 …ale(cobj::CascadeClassifier, image::InputArray, scaleFactor::Float64, minNeighbors::Int32, flags::…
38 …_cpp(cobj),julia_to_cpp(image),julia_to_cpp(scaleFactor),julia_to_cpp(minNeighbors),julia_to_cpp(f…
40minNeighbors::Int32 = Int32(3), flags::Int32 = Int32(0), minSize::Size{Int32} = (Size{Int32}(0,0))…
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudalegacy/test/
H A DTestHypothesesFilter.cpp52 minNeighbors(minNeighbors_), in TestHypothesesFilter()
61 strOut << "minNeighbors=" << minNeighbors << std::endl; in toString()
99 Ncv32u srcSlotSize = 2 * this->minNeighbors + 1; in process()
120 …Ncv32u numNeighbors = this->minNeighbors + 1 + (Ncv32u)(((1.0 * h_random32u.ptr()[i]) * (this->min… in process()
167 …ncvStat = ncvGroupRectangles_host(h_vecSrc, numHypothesesSrc, this->minNeighbors, this->eps, NULL); in process()
H A DTestHypothesesFilter.h55 Ncv32u numDstRects, Ncv32u minNeighbors, Ncv32f eps);
69 Ncv32u minNeighbors; variable
/dports/devel/cppcheck-gui/cppcheck-2.6.3/test/bug-hunting/cve/CVE-2019-15939/opencv2/
H A Dobjdetect.hpp183 int minNeighbors, int flags,
190 int minNeighbors, int flags,
198 int minNeighbors, int flags,
273 int minNeighbors = 3, int flags = 0,
296 int minNeighbors=3, int flags=0,
322 int minNeighbors = 3, int flags = 0,
/dports/devel/cppcheck/cppcheck-2.6.3/test/bug-hunting/cve/CVE-2019-15939/opencv2/
H A Dobjdetect.hpp183 int minNeighbors, int flags,
190 int minNeighbors, int flags,
198 int minNeighbors, int flags,
273 int minNeighbors = 3, int flags = 0,
296 int minNeighbors=3, int flags=0,
322 int minNeighbors = 3, int flags = 0,
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/worklet/testing/
H A DUnitTestWorkletMapPointNeighborhood.cxx92 auto minNeighbors = boundary.MinNeighborIndices(1); in operator ()() local
96 for (vtkm::IdComponent k = minNeighbors[2]; k <= maxNeighbors[2]; ++k) in operator ()()
98 for (vtkm::IdComponent j = minNeighbors[1]; j <= maxNeighbors[1]; ++j) in operator ()()
100 for (vtkm::IdComponent i = minNeighbors[0]; i <= maxNeighbors[0]; ++i) in operator ()()
/dports/graphics/opencv/opencv-4.5.3/modules/objdetect/include/opencv2/
H A Dobjdetect.hpp183 int minNeighbors, int flags,
190 int minNeighbors, int flags,
198 int minNeighbors, int flags,
273 int minNeighbors = 3, int flags = 0,
296 int minNeighbors=3, int flags=0,
322 int minNeighbors = 3, int flags = 0,
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/julia/gen/binding_templates_cpp/
H A Dcv_core.cpp121 …int &minNeighbors, int &flags, Size &minSize, Size &maxSize) {vector<Rect> objects; cobj.detectMul… in cv_wrap() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DPeerHelpers.cs62 int minNeighbors; //Neighbor parameters field in System.ServiceModel.Channels.PeerNodeConfig
90 int minNeighbors, int idealNeighbors, int maxNeighbors, in PeerNodeConfig() argument
104 this.minNeighbors = minNeighbors; in PeerNodeConfig()
218 get { return minNeighbors; }
/dports/graphics/opencv/opencv-4.5.3/modules/objdetect/src/
H A Dcascadedetect.cpp1383 double scaleFactor, int minNeighbors, in detectMultiScale() argument
1399 groupRectangles( objects, rejectLevels, levelWeights, minNeighbors, GROUP_EPS ); in detectMultiScale()
1403 groupRectangles( objects, minNeighbors, GROUP_EPS ); in detectMultiScale()
1408 double scaleFactor, int minNeighbors, in detectMultiScale() argument
1416 minNeighbors, flags, minObjectSize, maxObjectSize ); in detectMultiScale()
1437 groupRectangles( objects, numDetections, minNeighbors, GROUP_EPS ); in detectMultiScale()
1683 int minNeighbors, int flags, in detectMultiScale() argument
1698 int minNeighbors, int flags, in detectMultiScale() argument
1705 scaleFactor, minNeighbors, flags, minSize, maxSize); in detectMultiScale()
1714 int minNeighbors, int flags, in detectMultiScale() argument
[all …]
H A Dcascadedetect.hpp90 int minNeighbors = 3, int flags = 0,
98 int minNeighbors=3, int flags=0,
107 int minNeighbors = 3, int flags = 0,
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/face/include/opencv2/face/
H A Dfacemark_train.hpp38 …int minNeighbors; //!< Parameter specifying how many neighbors each candidate rectangle should hav… member
/dports/multimedia/streamlink/streamlink-2.1.2/examples/
H A Dopencv-face.py29 … faces = cascade.detectMultiScale(frame_gray, scaleFactor=scale_factor, minNeighbors=min_neighbors)
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/face/src/
H A Dfacemark.cpp29 minNeighbors = minN; in CParams()
48 …params->face_cascade.detectMultiScale( gray, roi, params->scaleFactor, params->minNeighbors, CASCA… in getFaces()
/dports/graphics/opencv/opencv-4.5.3/modules/objdetect/misc/python/test/
H A Dtest_facedetect.py14 rects = cascade.detectMultiScale(img, scaleFactor=1.275, minNeighbors=4, minSize=(30, 30),
/dports/graphics/opencv/opencv-4.5.3/samples/python/
H A Dfacedetect.py22 rects = cascade.detectMultiScale(img, scaleFactor=1.3, minNeighbors=4, minSize=(30, 30),
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/julia/samples/
H A Dface_detect.jl4 …rects = OpenCV.detectMultiScale(cascade, img, scaleFactor=1.3, minNeighbors=Int32(4), minSize=Open…
/dports/graphics/opencv/opencv-4.5.3/samples/swift/ios/FaceDetection/FaceDetection/
H A DViewController.swift67 …swiftDetector.detectMultiScale(image: gray, objects: &faces, scaleFactor: 1.1, minNeighbors: Int32… in processImage()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaobjdetect/include/opencv2/
H A Dcudaobjdetect.hpp259 CV_WRAP virtual void setMinNeighbors(int minNeighbors) = 0;
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudalegacy/src/
H A DNCV.cpp769 Ncv32u minNeighbors, in ncvGroupRectangles_host() argument
792 groupRectangles(rects, minNeighbors, intersectEps, &weights); in ncvGroupRectangles_host()
796 groupRectangles(rects, minNeighbors, intersectEps, NULL); in ncvGroupRectangles_host()
/dports/graphics/opencv/opencv-4.5.3/doc/js_tutorials/js_objdetect/js_face_detection/
H A Djs_face_detection.markdown85 We use the function: **detectMultiScale (image, objects, scaleFactor = 1.1, minNeighbors = 3, flags…
90 @param minNeighbors parameter specifying how many neighbors each candidate rectangle should …
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/external/opencv/
H A Dwebcam_pattern_detection.py82 minNeighbors=5, minSize=(30, 30))
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/external/opencv/
H A Dwebcam_pattern_detection.py82 minNeighbors=5, minSize=(30, 30))

12