opencv4nodejs
Advanced tools
Comparing version 5.3.0 to 5.4.0
@@ -22,2 +22,10 @@ import { Mat } from './Mat.d'; | ||
export function accumulate(src: Mat, dst: Mat, mask?: Mat): void; | ||
export function accumulateAsync(src: Mat, dst: Mat, mask?: Mat): Promise<void>; | ||
export function accumulateProduct(src1: Mat, src2: Mat, dst: Mat, mask?: Mat): void; | ||
export function accumulateProductAsync(src1: Mat, src2: Mat, dst:Mat, mask?: Mat): Promise<void>; | ||
export function accumulateSquare(src: Mat, dst: Mat, mask?: Mat): void; | ||
export function accumulateSquareAsync(src: Mat, dst: Mat, mask?: Mat): Promise<void>; | ||
export function accumulateWeighted(src: Mat, dst: Mat, alpha: number, mask?: Mat): void; | ||
export function accumulateWeightedAsync(src: Mat, dst: Mat, alpha: number, mask?: Mat): Promise<void>; | ||
export function addWeighted(mat: Mat, alpha: number, mat2: Mat, beta: number, gamma: number, dtype?: number): Mat; | ||
@@ -24,0 +32,0 @@ export function addWeightedAsync(mat: Mat, alpha: number, mat2: Mat, beta: number, gamma: number, dtype?: number): Promise<Mat>; |
@@ -38,2 +38,10 @@ import { Size } from './Size.d'; | ||
absdiff(otherMat: Mat): Mat; | ||
accumulate(src: Mat, mask?: Mat): Mat; | ||
accumulateAsync(src: Mat, mask?: Mat): Promise<Mat>; | ||
accumulateProduct(src1: Mat, src2: Mat, mask?: Mat): Mat; | ||
accumulateProductAsync(src1: Mat, src2:Mat, mask?: Mat): Promise<Mat>; | ||
accumulateSquare(src: Mat, mask?: Mat): Mat; | ||
accumulateSquareAsync(src: Mat, mask?: Mat): Promise<Mat>; | ||
accumulateWeighted(src: Mat, alpha: number, mask?: Mat): Mat; | ||
accumulateWeightedAsync(src: Mat, alpha: number, mask?: Mat): Promise<Mat>; | ||
adaptiveThreshold(maxVal: number, adaptiveMethod: number, thresholdType: number, blockSize: number, C: number): Mat; | ||
@@ -40,0 +48,0 @@ adaptiveThresholdAsync(maxVal: number, adaptiveMethod: number, thresholdType: number, blockSize: number, C: number): Promise<Mat>; |
{ | ||
"name": "opencv4nodejs", | ||
"version": "5.3.0", | ||
"version": "5.4.0", | ||
"description": "Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
11326322
2357