
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
opencv-tools
Advanced tools
Perspective correcting, rotating, I/O, web workers
opencv-tools generally (except for I/O functions) receives a cv object as a parameter. So, you have a couple of options:
If you're using your own copy or a CDN, consider declaring types manually:
// cv.d.ts
import { Cv } from 'use-cv'
declare global {
const cv: Cv
}
import cv from 'opencv-ts' // or whatever
import { io } from 'opencv-tools'
const data: ImageData = await io.read('image.jpg') // no, you don't need opencv for this
const mat = cv.matFromImageData(data)
const blob = await io.writeBlob(mat, 'jpg')
const outData = await io.toData(mat)
// and more!
Requiers installing a peer dep:
@haskellian/async
yarn add @haskellian/async
npm i @haskellian/async
worker.ts:
import cv from "opencv-ts"; // or importScripts to a custom opencv.js, or whatever
import { onMessage } from 'opencv-tools/workers/correct'
onmessage = onMessage(cv)
MyComponent.tsx|js|... (I'm doing this in React, but it should work anywhere):
import { prepareWorker } from 'opencv-tools/workers/correct'
const worker = new Worker('/path/to/worker.ts')
const api = prepareWorker(worker)
const img = '/image.jpg'
function initialize() {
api.postImg(img) // not necessary, but makes subsequent calls faster
}
async function correct(corners: Corners) {
const blob = await api.correct(img, corners)
...
}
Only in case you want to work with
ImageData/cv.Maton both the UI thread and a worker. Otherwise, it's generally simpler to passBlobs around
// Main.tsx
import { io } from 'opencv-tools'
import { serialize } from 'opencv-tools/workers'
const worker = new Worker('/path/to/worker.ts')
const img: ImageData = await io.read('image.jpg')
worker.postMessage(...serialize(img))
// worker.ts
importScripts('/opencv.js') // or CDN, or `opencv-ts`, etc. Up to you
import { serialize, deserialize } from 'opencv-tools/dist/workers'
onmessage = e => {
const imgData: ImageData = deserialize(e.data)
const mat = cv.matFromImageData(imgData)
...
const result = serialize(mat)
mat.delete()
self.postMessage(...result)
}
FAQs
OpenCV tools: perspective correcting, rotating, IO, web workers.
The npm package opencv-tools receives a total of 45 weekly downloads. As such, opencv-tools popularity was classified as not popular.
We found that opencv-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.