README.md
Overview
This algorithm demonstrates how to install & use opencv via Conda packages in Classic Python Algorithms.
Usage
Input
Describe the input fields for your algorithm. For example:
Parameter | Description |
---|---|
image | URL of the image that is going to be processed by openCV. |
image_out (optional) | Location of where the processed image is going to be saved. |
Output
Parameter | Description |
---|---|
image_out | Location of where the processed image is saved |
Examples
Example 1.
Input:
- Parameter 1: Image URL
- Parameter 2: Location of the saved image
{
"image": "https://upload.wikimedia.org/wikipedia/commons/9/92/95apple.jpeg",
"image_out": "data://.my/temp/apple.png"
}
Output:
{
"image_out": "data://.my/temp/apple.png"
}
Contents