
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
vue-mindee-js
Advanced tools
There are many powerful JavaScript frameworks and tools that can help you make an interactive canvas. But almost all of them are low-level. Like KONVA is a 2d canvas framework. It is good, it is powerful. But you may need to write a lot of code.
This library was made for building frontend interfaces on top of Mindee document parsing APIs and more generally on top of any computer vision detection APIs.
The Vue SDK is compatible with Vue 3+
The easiest way to use vue-select is to install it from npm and build it into your app with Webpack.
npm install --save vue-mindee-js
or using yarn
pnpm install vue-mindee-js
You only need an image and a list of shapes to get started.
<script>
import { AnnotationViewer } from "vue-mindee-js";
import dummyImage from "path/to/file.jpg";
const dummyShapes = [
{
id: "date",
coordinates: [
[0.539, 0.269],
[0.693, 0.269],
[0.693, 0.296],
[0.539, 0.296]
]
},
{
id: "supplier",
coordinates: [
[0.267, 0.062],
[0.572, 0.062],
[0.572, 0.102],
[0.267, 0.102]
]
},
]
const data = {
image: dummyImage,
shapes: dummyShapes,
orientation: 0,
};
</script>
<template>
<AnnotationViewer :data="data" />
</template>
data
: include 3 properties. image
file to draw in the canvas, shapes
which expect a list of shapes andorientation
of the provided image (default: 0)onShapeClick
: return the shape object after a click eventonShapeMouseEnter
: return the shape object after a mouse enter eventonShapeMouseLeave
: return the shape object after a mouse leave eventonShapeMultiSelect
: return the selected shapes using (CTRL + MOUSE CLICK & MOVE)options
: object of properties to customize default configsid
: unique id, if not provided it will be automatically generatedstyle
: style object to change container css propertiesclassName
: apply a className to the controlFeel free to use github to submit issues, pull requests or general feedback. You can also visit our website or drop us an email.
Please read our Contributing section before contributing.
MIT © mindee
v1.4.0 (06/11/2023)
FAQs
Computer Vision SDK for Vue
The npm package vue-mindee-js receives a total of 3 weekly downloads. As such, vue-mindee-js popularity was classified as not popular.
We found that vue-mindee-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.