opencv4nodejs
Advanced tools
Comparing version 3.2.0 to 3.3.0
@@ -31,2 +31,4 @@ import { Mat } from './Mat.d'; | ||
export function canny(dx: Mat, dy: Mat, threshold1: number, threshold2: number, L2gradient?: boolean): Mat; | ||
export function cartToPolar(x: Mat, y: Mat, angleInDegrees?: boolean): { magnitude: Mat, angle: Mat }; | ||
export function cartToPolarAsync(x: Mat, y: Mat, angleInDegrees?: boolean): Promise<{ magnitude: Mat, angle: Mat }>; | ||
export function composeRT(rvec1: Vec3, tvec1: Vec3, rvec2: Vec3, tvec2: Vec3): { rvec3: Vec3, tvec3: Vec3, dr3dr1: Mat, dr3dt1: Mat, dr3dr2: Mat, dr3dt2: Mat, dt3dr1: Mat, dt3dt1: Mat, dt3dr2: Mat, dt3dt2: Mat }; | ||
@@ -112,2 +114,4 @@ export function composeRTAsync(rvec1: Vec3, tvec1: Vec3, rvec2: Vec3, tvec2: Vec3): Promise<{ rvec3: Vec3, tvec3: Vec3, dr3dr1: Mat, dr3dt1: Mat, dr3dr2: Mat, dr3dt2: Mat, dt3dr1: Mat, dt3dt1: Mat, dt3dr2: Mat, dt3dt2: Mat }>; | ||
export function plot1DHist(hist: Mat, plotImg: Mat, color: Vec3, lineType?: number, thickness?: number, shift?: number): Mat; | ||
export function polarToCart(magnitude: Mat, angle: Mat, angleInDegrees?: boolean): { x: Mat, y: Mat }; | ||
export function polarToCartAsync(magnitude: Mat, angle: Mat, angleInDegrees?: boolean): Promise<{ x: Mat, y: Mat }>; | ||
export function projectPoints(objectPoints: Point3[], imagePoints: Point2[], rvec: Vec3, tvec: Vec3, cameraMatrix: Mat, distCoeffs: number[], aspectRatio?: number): { imagePoints: Point2[], jacobian: Mat }; | ||
@@ -114,0 +118,0 @@ export function projectPointsAsync(objectPoints: Point3[], imagePoints: Point2[], rvec: Vec3, tvec: Vec3, cameraMatrix: Mat, distCoeffs: number[], aspectRatio?: number): Promise<{ imagePoints: Point2[], jacobian: Mat }>; |
@@ -210,2 +210,10 @@ import { Size } from './Size.d'; | ||
perspectiveTransformAsync(m: Mat): Promise<Mat>; | ||
pop_back(numRows?: number): Mat; | ||
pop_backAsync(numRows?: number): Promise<Mat>; | ||
popBack(numRows?: number): Mat; | ||
popBackAsync(numRows?: number): Promise<Mat>; | ||
push_back(mat: Mat): Mat; | ||
push_backAsync(mat: Mat): Promise<Mat>; | ||
pushBack(mat: Mat): Mat; | ||
pushBackAsync(mat: Mat): Promise<Mat>; | ||
putText(text: string, origin: Point2, fontFace: number, fontScale: number, color?: Vec3, lineType?: number, thickness?: number, bottomLeftOrigin?: boolean): void; | ||
@@ -249,2 +257,4 @@ pyrDown(size?: Size, borderType?: number): Mat; | ||
sobelAsync(ddepth: number, dx: number, dy: number, ksize?: number, scale?: number, delta?: number, borderType?: number): Promise<Mat>; | ||
split(): Mat[]; | ||
splitAsync(): Promise<Mat[]>; | ||
splitChannels(): Mat[]; | ||
@@ -251,0 +261,0 @@ splitChannelsAsync(): Promise<Mat[]>; |
{ | ||
"name": "opencv4nodejs", | ||
"version": "3.2.0", | ||
"version": "3.3.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
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
10462077
1974