1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<?xml version="1.0" encoding="UTF-8"?>
<cep xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://camitk.imag.fr/cepcoreschema"
xsi:schemaLocation="http://camitk.imag.fr/cepcoreschema ../cep.xsd">
<name>CEP created by Wizard</name>
<contact>
<email>Celine.Fouard@univ-grenoble-alpes.fr</email>
</contact>
<description>Example of empty CEP</description>
<copyright><![CDATA[/*****************************************************************************
$USERDEF_LICENCE_BEGIN$
CamiTK - Computer Assisted Medical Intervention ToolKit
(c) 2001-2025 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
Visit http://camitk.imag.fr for more information
This file is part of CamiTK.
$CEP_NAME$ is under the following licence:
A specific private licence
$USERDEF_LICENCE_END$
****************************************************************************/
]]></copyright>
<actionExtensions>
<actionExtension>
<name>Wizard created image actions</name>
<description>This action extension proposes several actions on image components</description>
<!-- <directoryName>imagewizardactions</directoryName> -->
<actions>
<action>
<name>Example of Image Action</name>
<description>Example of simple action on image component.</description>
<component>ImageComponent</component>
<classification>
<family>CreatedByWizard</family>
<tag>Image</tag>
</classification>
<parameters>
<parameter name="alpha" type="int" description="An integer."/>
<parameter name="beta" type="bool" description="A boolean."/>
</parameters>
</action>
<action>
<name>Example of Image ITK Filter</name>
<description>Example of an itk image action.</description>
<component>ImageComponent</component>
<classification>
<family>CreatedByWizard</family>
<tag>Image</tag>
<tag>itk</tag>
<itkFilter outputType="Same as Input"/>
</classification>
<parameters>
<parameter name="gamma" type="QDate" description="A QDate."/>
<parameter name="phi" type="double" description="A double."/>
</parameters>
</action>
</actions>
<dependencies>
<dependency type="library" name="itk"/>
</dependencies>
</actionExtension>
<actionExtension>
<name>Wizard created mesh actions</name>
<description>This action extension proposes an action on mesh components</description>
<actions>
<action>
<name>Example of Mesh Action</name>
<description>Example of action on a mesh.</description>
<component>MeshComponent</component>
<classification>
<family>CreatedByWizard</family>
<tag>Mesh</tag>
<tag>Example</tag>
</classification>
<parameters>
<parameter name="A long parameter name" type="QColor" description="A QColor."/>
</parameters>
</action>
</actions>
</actionExtension>
</actionExtensions>
</cep>
|