Skip to content

Commit

Permalink
new module
Browse files Browse the repository at this point in the history
  • Loading branch information
XeniosP committed Mar 5, 2024
1 parent 16b47f7 commit 783b644
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions biswebpython/modules/computeImageIndexMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import biswebpython.core.bis_objects as bis_objects
import numpy as np;

class computeImageIndexMAP(bis_basemodule.baseModule):
class computeImageIndexMap(bis_basemodule.baseModule):

def __init__(self):
super().__init__();
Expand All @@ -33,14 +33,15 @@ def createDescription(self):
"description": "Given an objectmap compute the image index map (voxels > 0 indexed)",
"author": "Xenios Papademetris and Xilin Shen",
"version": "1.0",
"inputs" : [
{
"type": "image",
"name": "Objectmap Image",
"description": "The objectmap/mask image",
"varname": "input",
"shortname" : "i",
"required": True,
},
}
],
"outputs": bis_baseutils.getImageToImageOutputs('The indexmap image'),
"params" : [
Expand Down

0 comments on commit 783b644

Please sign in to comment.