├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── ImageProcessing │ ├── ColorMap.d.ts │ ├── DrawingFunctions.d.ts │ ├── Feature.d.ts │ ├── GeometricImageTransformations.d.ts │ ├── Histograms.d.ts │ ├── ImageFiltering.d.ts │ ├── Misc.d.ts │ ├── Object.d.ts │ ├── Segmentation.d.ts │ ├── Shape.d.ts │ └── Subdiv2D.d.ts ├── ObjectDetection │ └── ObjectDetection.d.ts ├── core │ ├── ColorConversion.d.ts │ ├── Core.d.ts │ ├── CoreArray.d.ts │ ├── HalInterface.d.ts │ ├── Mat.d.ts │ ├── MatVector.d.ts │ ├── Moments.d.ts │ ├── Point.d.ts │ ├── Range.d.ts │ ├── Rect.d.ts │ ├── RotatedRect.d.ts │ ├── Scalar.d.ts │ ├── Size.d.ts │ ├── TermCriteria.d.ts │ └── Utils.d.ts ├── dnn │ └── dnn.d.ts ├── helper.ts ├── opencv.d.ts ├── opencv.js └── video │ ├── BackgroundSubtractor.d.ts │ ├── BackgroundSubtractorMOG2.d.ts │ └── track.d.ts ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/ImageProcessing/ColorMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/ColorMap.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/DrawingFunctions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/DrawingFunctions.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Feature.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Feature.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/GeometricImageTransformations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/GeometricImageTransformations.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Histograms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Histograms.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/ImageFiltering.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/ImageFiltering.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Misc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Misc.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Object.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Segmentation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Segmentation.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Shape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Shape.d.ts -------------------------------------------------------------------------------- /src/ImageProcessing/Subdiv2D.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ImageProcessing/Subdiv2D.d.ts -------------------------------------------------------------------------------- /src/ObjectDetection/ObjectDetection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/ObjectDetection/ObjectDetection.d.ts -------------------------------------------------------------------------------- /src/core/ColorConversion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/ColorConversion.d.ts -------------------------------------------------------------------------------- /src/core/Core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Core.d.ts -------------------------------------------------------------------------------- /src/core/CoreArray.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/CoreArray.d.ts -------------------------------------------------------------------------------- /src/core/HalInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/HalInterface.d.ts -------------------------------------------------------------------------------- /src/core/Mat.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Mat.d.ts -------------------------------------------------------------------------------- /src/core/MatVector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/MatVector.d.ts -------------------------------------------------------------------------------- /src/core/Moments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Moments.d.ts -------------------------------------------------------------------------------- /src/core/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Point.d.ts -------------------------------------------------------------------------------- /src/core/Range.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Range.d.ts -------------------------------------------------------------------------------- /src/core/Rect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Rect.d.ts -------------------------------------------------------------------------------- /src/core/RotatedRect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/RotatedRect.d.ts -------------------------------------------------------------------------------- /src/core/Scalar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Scalar.d.ts -------------------------------------------------------------------------------- /src/core/Size.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Size.d.ts -------------------------------------------------------------------------------- /src/core/TermCriteria.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/TermCriteria.d.ts -------------------------------------------------------------------------------- /src/core/Utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/core/Utils.d.ts -------------------------------------------------------------------------------- /src/dnn/dnn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/dnn/dnn.d.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/opencv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/opencv.d.ts -------------------------------------------------------------------------------- /src/opencv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/opencv.js -------------------------------------------------------------------------------- /src/video/BackgroundSubtractor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/video/BackgroundSubtractor.d.ts -------------------------------------------------------------------------------- /src/video/BackgroundSubtractorMOG2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/video/BackgroundSubtractorMOG2.d.ts -------------------------------------------------------------------------------- /src/video/track.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/src/video/track.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theothergrantdavidson/opencv-ts/HEAD/yarn.lock --------------------------------------------------------------------------------