Imaging algorithm plugins
Imaging algorithms plugins
- To add a new algorithm, you need to follow this approach:
- Implement algorithm. This algorithm must follow image filtering specification
- Write a plugin class that describe algorithm and is able to load it
- register algorithm in the right category
For example, to add a gaussian filter, you need to ...
Step 1:
Then, define a plugin that describe algorithm.
And register this plugin in category openalea.image.filtering
Plugin Categories
openalea.image
algorithm: filtering
algorithm: region_selection
algorithm: region_extension
algorithm: region_segmentation
-
class image.plugin.algo.IImageFilteringPlugin(**kargs)[source]
Bases: openalea.core.interface.IInterface
-
authors = []
-
inputs = []
-
name = 'python_name'
-
title = 'More readable name'