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

@u4/opencv4nodejs

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@u4/opencv4nodejs - npm Package Compare versions

Comparing version 6.2.0 to 6.2.1

2

lib/cvloader.js

@@ -92,3 +92,3 @@ "use strict";

}
else if (message === 'The specified module could not be found.') {
else if (message.startsWith('The specified module could not be found.')) {
msg = `require("${picocolors_1.default.yellow(requirePath)}");

@@ -95,0 +95,0 @@ Failed with: ${picocolors_1.default.red(message)}, openCV module looks broken, clean you builds directory and rebuild everything

@@ -96,3 +96,3 @@ import { OpenCVBuilder } from '@u4/opencv-build';

`;
} else if (message === 'The specified module could not be found.') {
} else if (message.startsWith('The specified module could not be found.')) {
msg = `require("${pc.yellow(requirePath)}");

@@ -99,0 +99,0 @@ Failed with: ${pc.red(message)}, openCV module looks broken, clean you builds directory and rebuild everything

{
"name": "@u4/opencv4nodejs",
"version": "6.2.0",
"version": "6.2.1",
"description": "Asynchronous OpenCV 3.x / 4.x nodejs bindings with JavaScript and TypeScript API.",

@@ -40,3 +40,3 @@ "keywords": [

"glob": "^8.0.3",
"nan": "^2.15.0",
"nan": "^2.16.0",
"native-node-utils": "^0.2.7",

@@ -50,17 +50,17 @@ "node-gyp": "^9.0.0",

"@types/mri": "^1.1.1",
"@types/node": "^17.0.33",
"@types/node": "^18.0.0",
"@types/npmlog": "^4.1.4",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"axios": "^0.27.2",
"eslint": "^8.15.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
"typescript": "^4.7.4"
},

@@ -67,0 +67,0 @@ "files": [

@@ -74,5 +74,9 @@ import { Mat } from '../Mat';

//
// void cv::resizeWindow (const String &winname, const cv::Size &size)
//
/**
* Start a background thread that services windows events and updates
* without relying on waitKey(), e.g., imshow().
* @returns The return value;
*/
export function startWindowThread(): number;
// Rect cv::selectROI (const String &windowName, InputArray img, bool showCrosshair=true, bool fromCenter=false)

@@ -105,4 +109,2 @@ // Allows users to select a ROI on the given image. More...

// int cv::startWindowThread ()
//
// int cv::waitKey (int delay=0)

@@ -109,0 +111,0 @@ // Waits for a pressed key. More...

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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