Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

opencv4nodejs

Package Overview
Dependencies
Maintainers
1
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opencv4nodejs - npm Package Compare versions

Comparing version 4.14.0 to 4.14.1

4

lib/typings/BFMatcher.d.ts

@@ -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*.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc