Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@dannadori/bisenetv2-celebamask-worker-js
Advanced tools
![image](https://user-images.githubusercontent.com/48346627/97803282-822e3e80-1c8c-11eb-8635-74d937e5a8f6.png)
## install
$ npm install @dannadori/bisenetv2-celebamask-worker-js
$ cp node_modules/\@tensorflow/tfjs-backend-wasm/dist/tfjs-backend-wasm.wasm public/
generateBisenetV2CelebAMaskDefaultConfig: () => BisenetV2CelebAMaskConfig;
generateDefaultBisenetV2CelebAMaskParams: () => BisenetV2CelebAMaskOperationParams;
export declare const createForegroundImage: (srcCanvas: HTMLCanvasElement, prediction: number[][]) => ImageData;
BisenetV2CelebAMaskWorkerManager
init(config: BisenetV2CelebAMaskConfig | null): Promise<unknown>;
predict(targetCanvas: HTMLCanvasElement, params?: BisenetV2CelebAMaskOperationParams): Promise<number[][]>;
export interface BisenetV2CelebAMaskConfig{
browserType : BrowserType
processOnLocal : boolean
useTFWasmBackend : boolean
wasmPath : string
modelPath : string
workerPath : string
}
export interface BisenetV2CelebAMaskOperationParams{
type : BisenetV2CelebAMaskFunctionType
processWidth : number
processHeight : number
}
export enum BisenetV2CelebAMaskFunctionType{
Mask,
xxx, // Not implemented
}
$ npx create-react-app demo --template typescript
$ cd demo/
$ npm install
$ npm install @dannadori/bisenetv2-celebamask-worker-js
$ cp node_modules/\@tensorflow/tfjs-backend-wasm/dist/tfjs-backend-wasm.wasm public/
In this time, the name is "srcImage.jpg"
Sample code is here.
import React from 'react';
import './App.css';
import { BisenetV2CelebAMaskWorkerManager, generateBisenetV2CelebAMaskDefaultConfig, generateDefaultBisenetV2CelebAMaskParams, createForegroundImage } from '@dannadori/bisenetv2-celebamask-worker-js'
class App extends React.Component{
manager = new BisenetV2CelebAMaskWorkerManager()
config = generateBisenetV2CelebAMaskDefaultConfig()
params = generateDefaultBisenetV2CelebAMaskParams()
srcCanvas = document.createElement("canvas")
dstCanvas = document.createElement("canvas")
componentDidMount = () =>{
document.getRootNode().lastChild!.appendChild(this.srcCanvas)
document.getRootNode().lastChild!.appendChild(this.dstCanvas)
const srcImage = document.createElement("img")
srcImage.onload = () =>{
this.manager.init(this.config).then(()=>{
this.srcCanvas.getContext("2d")!.drawImage(
srcImage, 0, 0, this.srcCanvas.width, this.dstCanvas.height)
return this.manager.predict(this.srcCanvas, this.params)
}).then((res)=>{
console.log(res)
const foreground = createForegroundImage(this.srcCanvas, res)
this.dstCanvas.getContext("2d")!.putImageData(foreground, 0, 0)
})
}
srcImage.src = "./srcImage.jpg"
}
render = ()=>{
return (
<div className="App">
</div>
);
}
}
export default App;
$ npm run start
FAQs
![image](https://user-images.githubusercontent.com/48346627/97803282-822e3e80-1c8c-11eb-8635-74d937e5a8f6.png)
The npm package @dannadori/bisenetv2-celebamask-worker-js receives a total of 4 weekly downloads. As such, @dannadori/bisenetv2-celebamask-worker-js popularity was classified as not popular.
We found that @dannadori/bisenetv2-celebamask-worker-js 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.