@codanux/opencv
v0.0.1
Published
opencv
Readme
@codanux/opencv
opencv
Install
npm install @codanux/opencv
npx cap syncAPI
detectCircles(...)
detectCircles(options: DetectCirclesOptions) => Promise<DetectCirclesResult>| Param | Type |
| ------------- | --------------------------------------------------------------------- |
| options | DetectCirclesOptions |
Returns: Promise<DetectCirclesResult>
Interfaces
DetectCirclesResult
| Prop | Type |
| ------------- | --------------------- |
| circles | Circle[] |
Circle
| Prop | Type |
| ------------ | ------------------- |
| x | number |
| y | number |
| radius | number |
DetectCirclesOptions
| Prop | Type |
| --------------- | ------------------- |
| image | string |
| dp | number |
| minDist | number |
| param1 | number |
| param2 | number |
| minRadius | number |
| maxRadius | number |
