opencv4nodejs
Advanced tools
Comparing version 4.14.0 to 4.14.1
@@ -9,4 +9,4 @@ import {Mat} from "./Mat"; | ||
matchAsync(descriptors1: Mat, descriptors2: Mat): Promise<DescriptorMatch[]>; | ||
knnMatch(descriptors1: Mat, descriptors2: Mat, k: number): Array<[DescriptorMatch]|[]>; | ||
knnMatchAsync(descriptors1: Mat, descriptors2: Mat, k: number): Promise<Array<[DescriptorMatch]|[]>>; | ||
knnMatch(descriptors1: Mat, descriptors2: Mat, k: number): Array<[DescriptorMatch]|[any]>; | ||
knnMatchAsync(descriptors1: Mat, descriptors2: Mat, k: number): Promise<Array<[DescriptorMatch]|[any]>>; | ||
} |
{ | ||
"name": "opencv4nodejs", | ||
"version": "4.14.0", | ||
"version": "4.14.1", | ||
"description": "Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.", | ||
@@ -44,3 +44,3 @@ "keywords": [ | ||
"native-node-utils": "^0.1.5", | ||
"opencv-build": "^0.0.16" | ||
"opencv-build": "^0.0.17" | ||
}, | ||
@@ -47,0 +47,0 @@ "optionalDependencies": { |
@@ -116,2 +116,11 @@ opencv4nodejs | ||
### Auto build flags | ||
You can customize the autobuild flags using *OPENCV4NODEJS_AUTOBUILD_FLAGS="<flags>"*. | ||
Flags must be space-separated. | ||
This is an advanced customization and you should have knowledge regarding the OpenCV compilation flags. | ||
For example `export OPENCV4NODEJS_AUTOBUILD_FLAGS="-DBUILD_LIST=dnn"` will build only modules required for `dnn` and reduced the size of the opencv package. Flags added by default are listed [here](https://github.com/justadudewhohacks/npm-opencv-build/blob/master/install/setup-opencv.js#L63) | ||
## Manual build | ||
@@ -118,0 +127,0 @@ Setting up OpenCV on your own will require you to set an environment variable: *OPENCV4NODEJS_DISABLE_AUTOBUILD=1*. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11282621
519
+ Addedopencv-build@0.0.17(transitive)
- Removedopencv-build@0.0.16(transitive)
Updatedopencv-build@^0.0.17