@stdmx/opencv4nodejs-prebuilt-install 4.1.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +119 -0
- package/lib/bundle.js +8 -0
- package/lib/commons.js +13 -0
- package/lib/cv.js +24 -0
- package/lib/dirs.js +24 -0
- package/lib/haarcascades/haarcascade_eye.xml +12213 -0
- package/lib/haarcascades/haarcascade_eye_tree_eyeglasses.xml +22619 -0
- package/lib/haarcascades/haarcascade_frontalcatface.xml +14382 -0
- package/lib/haarcascades/haarcascade_frontalcatface_extended.xml +13394 -0
- package/lib/haarcascades/haarcascade_frontalface_alt.xml +24350 -0
- package/lib/haarcascades/haarcascade_frontalface_alt2.xml +20719 -0
- package/lib/haarcascades/haarcascade_frontalface_alt_tree.xml +96484 -0
- package/lib/haarcascades/haarcascade_frontalface_default.xml +33314 -0
- package/lib/haarcascades/haarcascade_fullbody.xml +17030 -0
- package/lib/haarcascades/haarcascade_lefteye_2splits.xml +7390 -0
- package/lib/haarcascades/haarcascade_licence_plate_rus_16stages.xml +1404 -0
- package/lib/haarcascades/haarcascade_lowerbody.xml +14056 -0
- package/lib/haarcascades/haarcascade_profileface.xml +29690 -0
- package/lib/haarcascades/haarcascade_righteye_2splits.xml +7407 -0
- package/lib/haarcascades/haarcascade_russian_plate_number.xml +2656 -0
- package/lib/haarcascades/haarcascade_smile.xml +6729 -0
- package/lib/haarcascades/haarcascade_upperbody.xml +28134 -0
- package/lib/index.d.ts +65 -0
- package/lib/lbpcascades/lbpcascade_frontalcatface.xml +3768 -0
- package/lib/lbpcascades/lbpcascade_frontalface.xml +1505 -0
- package/lib/lbpcascades/lbpcascade_frontalface_improved.xml +1469 -0
- package/lib/lbpcascades/lbpcascade_profileface.xml +1275 -0
- package/lib/lbpcascades/lbpcascade_silverware.xml +1279 -0
- package/lib/opencv4nodejs.js +28 -0
- package/lib/promisify.js +37 -0
- package/lib/src/drawUtils.js +192 -0
- package/lib/src/index.js +12 -0
- package/lib/typings/AGASTDetector.d.ts +9 -0
- package/lib/typings/AKAZEDetector.d.ts +13 -0
- package/lib/typings/BFMatcher.d.ts +11 -0
- package/lib/typings/BRISKDetector.d.ts +9 -0
- package/lib/typings/BackgroundSubtractorKNN.d.ts +9 -0
- package/lib/typings/BackgroundSubtractorMOG2.d.ts +9 -0
- package/lib/typings/CascadeClassifier.d.ts +12 -0
- package/lib/typings/Contour.d.ts +30 -0
- package/lib/typings/DescriptorMatch.d.ts +5 -0
- package/lib/typings/DetectionROI.d.ts +8 -0
- package/lib/typings/EigenFaceRecognizer.d.ts +5 -0
- package/lib/typings/FASTDetector.d.ts +9 -0
- package/lib/typings/FaceRecognizer.d.ts +10 -0
- package/lib/typings/Facemark.d.ts +19 -0
- package/lib/typings/FacemarkAAMParams.d.ts +13 -0
- package/lib/typings/FacemarkLBF.d.ts +3 -0
- package/lib/typings/FacemarkLBFParams.d.ts +21 -0
- package/lib/typings/FacemarkrAAM.d.ts +3 -0
- package/lib/typings/FeatureDetector.d.ts +8 -0
- package/lib/typings/FisherFaceRecognizer.d.ts +5 -0
- package/lib/typings/GFTTDetector.d.ts +12 -0
- package/lib/typings/HOGDescriptor.d.ts +41 -0
- package/lib/typings/KAZEDetector.d.ts +12 -0
- package/lib/typings/KeyPoint.d.ts +12 -0
- package/lib/typings/KeyPointDetector.d.ts +7 -0
- package/lib/typings/LBPHFaceRecognizer.d.ts +5 -0
- package/lib/typings/MSERDetector.d.ts +20 -0
- package/lib/typings/Mat.d.ts +327 -0
- package/lib/typings/Moments.d.ts +27 -0
- package/lib/typings/MultiTracker.d.ts +12 -0
- package/lib/typings/Net.d.ts +10 -0
- package/lib/typings/OCRHMMClassifier.d.ts +7 -0
- package/lib/typings/OCRHMMDecoder.d.ts +11 -0
- package/lib/typings/ORBDetector.d.ts +15 -0
- package/lib/typings/ParamGrid.d.ts +7 -0
- package/lib/typings/Point.d.ts +8 -0
- package/lib/typings/Point2.d.ts +7 -0
- package/lib/typings/Point3.d.ts +8 -0
- package/lib/typings/Rect.d.ts +20 -0
- package/lib/typings/RotatedRect.d.ts +12 -0
- package/lib/typings/SIFTDetector.d.ts +11 -0
- package/lib/typings/SURFDetector.d.ts +11 -0
- package/lib/typings/SVM.d.ts +32 -0
- package/lib/typings/SimpleBlobDetector.d.ts +6 -0
- package/lib/typings/SimpleBlobDetectorParams.d.ts +22 -0
- package/lib/typings/Size.d.ts +6 -0
- package/lib/typings/SuperpixelLSC.d.ts +12 -0
- package/lib/typings/SuperpixelSEEDS.d.ts +15 -0
- package/lib/typings/SuperpixelSLIC.d.ts +13 -0
- package/lib/typings/TermCriteria.d.ts +7 -0
- package/lib/typings/TrackerBoosting.d.ts +11 -0
- package/lib/typings/TrackerBoostingParams.d.ts +8 -0
- package/lib/typings/TrackerCSRT.d.ts +11 -0
- package/lib/typings/TrackerCSRTParams.d.ts +31 -0
- package/lib/typings/TrackerGOTURN.d.ts +9 -0
- package/lib/typings/TrackerKCF.d.ts +11 -0
- package/lib/typings/TrackerKCFParams.d.ts +17 -0
- package/lib/typings/TrackerMIL.d.ts +11 -0
- package/lib/typings/TrackerMILParams.d.ts +10 -0
- package/lib/typings/TrackerMOSSE.d.ts +9 -0
- package/lib/typings/TrackerMedianFlow.d.ts +9 -0
- package/lib/typings/TrackerTLD.d.ts +9 -0
- package/lib/typings/TrainData.d.ts +9 -0
- package/lib/typings/Vec.d.ts +17 -0
- package/lib/typings/Vec2.d.ts +7 -0
- package/lib/typings/Vec3.d.ts +8 -0
- package/lib/typings/Vec4.d.ts +9 -0
- package/lib/typings/Vec6.d.ts +11 -0
- package/lib/typings/VideoCapture.d.ts +13 -0
- package/lib/typings/VideoWriter.d.ts +12 -0
- package/lib/typings/config.d.ts +13 -0
- package/lib/typings/constants.d.ts +604 -0
- package/lib/typings/cv.d.ts +223 -0
- package/package.json +52 -0
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
export * from './typings/cv.d';
|
|
2
|
+
export * from './typings/constants.d';
|
|
3
|
+
export * from './typings/config.d';
|
|
4
|
+
export * from './typings/Mat.d';
|
|
5
|
+
export * from './typings/Vec.d';
|
|
6
|
+
export * from './typings/Vec2.d';
|
|
7
|
+
export * from './typings/Vec3.d';
|
|
8
|
+
export * from './typings/Vec4.d';
|
|
9
|
+
export * from './typings/Vec6.d';
|
|
10
|
+
export * from './typings/Point.d';
|
|
11
|
+
export * from './typings/Point2.d';
|
|
12
|
+
export * from './typings/Point3.d';
|
|
13
|
+
export * from './typings/Size.d';
|
|
14
|
+
export * from './typings/Net.d';
|
|
15
|
+
export * from './typings/Rect.d';
|
|
16
|
+
export * from './typings/RotatedRect.d';
|
|
17
|
+
export * from './typings/TermCriteria.d';
|
|
18
|
+
export * from './typings/Contour.d';
|
|
19
|
+
export * from './typings/Moments.d';
|
|
20
|
+
export * from './typings/FaceRecognizer.d';
|
|
21
|
+
export * from './typings/EigenFaceRecognizer.d';
|
|
22
|
+
export * from './typings/LBPHFaceRecognizer.d';
|
|
23
|
+
export * from './typings/FisherFaceRecognizer.d';
|
|
24
|
+
export * from './typings/KeyPointDetector.d';
|
|
25
|
+
export * from './typings/FeatureDetector.d';
|
|
26
|
+
export * from './typings/AGASTDetector.d';
|
|
27
|
+
export * from './typings/BFMatcher.d';
|
|
28
|
+
export * from './typings/AKAZEDetector.d';
|
|
29
|
+
export * from './typings/BRISKDetector.d';
|
|
30
|
+
export * from './typings/DescriptorMatch.d';
|
|
31
|
+
export * from './typings/FASTDetector.d';
|
|
32
|
+
export * from './typings/GFTTDetector.d';
|
|
33
|
+
export * from './typings/KAZEDetector.d';
|
|
34
|
+
export * from './typings/KeyPoint.d';
|
|
35
|
+
export * from './typings/MSERDetector.d';
|
|
36
|
+
export * from './typings/ORBDetector.d';
|
|
37
|
+
export * from './typings/SimpleBlobDetector.d';
|
|
38
|
+
export * from './typings/SimpleBlobDetectorParams.d';
|
|
39
|
+
export * from './typings/VideoCapture.d';
|
|
40
|
+
export * from './typings/VideoWriter.d';
|
|
41
|
+
export * from './typings/ParamGrid.d';
|
|
42
|
+
export * from './typings/TrainData.d';
|
|
43
|
+
export * from './typings/CascadeClassifier.d';
|
|
44
|
+
export * from './typings/DetectionROI.d';
|
|
45
|
+
export * from './typings/HOGDescriptor.d';
|
|
46
|
+
export * from './typings/OCRHMMClassifier.d';
|
|
47
|
+
export * from './typings/MultiTracker.d';
|
|
48
|
+
export * from './typings/SVM.d';
|
|
49
|
+
export * from './typings/OCRHMMDecoder.d';
|
|
50
|
+
export * from './typings/TrackerBoostingParams.d';
|
|
51
|
+
export * from './typings/TrackerGOTURN.d';
|
|
52
|
+
export * from './typings/TrackerKCFParams.d';
|
|
53
|
+
export * from './typings/TrackerMedianFlow.d';
|
|
54
|
+
export * from './typings/TrackerMILParams.d';
|
|
55
|
+
export * from './typings/TrackerTLD.d';
|
|
56
|
+
export * from './typings/TrackerMIL.d';
|
|
57
|
+
export * from './typings/TrackerKCF.d';
|
|
58
|
+
export * from './typings/TrackerBoosting.d';
|
|
59
|
+
export * from './typings/BackgroundSubtractorKNN.d';
|
|
60
|
+
export * from './typings/BackgroundSubtractorMOG2.d';
|
|
61
|
+
export * from './typings/SIFTDetector.d';
|
|
62
|
+
export * from './typings/SURFDetector.d';
|
|
63
|
+
export * from './typings/SuperpixelLSC.d';
|
|
64
|
+
export * from './typings/SuperpixelSLIC.d';
|
|
65
|
+
export * from './typings/SuperpixelSEEDS.d';
|