<br><font size=2 face="sans-serif">Hi Christian,</font>
<br>
<br><font size=2 face="sans-serif">ParaView/VTK uses a specialized parser
tuned for vtk, and this parser has some assumptions , and in particular
all class names must start with &quot;vtk&quot;, thus your classes starting
with ivtk or xtk will not be accepted by the parser. You can try to exclude
the offending lines from the parsing using //BTX //ETX , but it would be
simpler if you keep the &quot;vtk&quot; prefix.</font>
<br>
<br><font size=2 face="sans-serif">Other limitations : </font>
<br><font size=2 face="sans-serif">the parser will complain if you include
more than only the superclass header in your header file (and commits to
vtk itself will be rejected unless you add comments explaining why you
had to add those includes)</font>
<br><font size=2 face="sans-serif">templated ivars must be between //BTX
//ETX </font>
<br>
<br><font size=2 face="sans-serif">Some usefull references : </font>
<br><font size=2 face="sans-serif">http://www.vtk.org/Wiki/VTK_Coding_Standards</font>
<br><font size=2 face="sans-serif">http://www.vtk.org/Wiki/VTK_cvs_commit_Guidelines</font>
<br>
<br><font size=2 face="sans-serif">Best,</font>
<br><font size=2 face="sans-serif">Stephane<br>
</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>christian.werner@rwth-aachen.de</b>
</font>
<br><font size=1 face="sans-serif">Envoyé par : paraview-bounces@paraview.org</font>
<p><font size=1 face="sans-serif">24/02/2010 09:55</font>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">A</font></div>
<td><font size=1 face="sans-serif">paraview@paraview.org</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Objet</font></div>
<td><font size=1 face="sans-serif">[Paraview] Another Syntax Error - ParaView
Plugins</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><tt><font size=2>Hello!<br>
<br>
I am writng a plugin for my paraview. I already succeeded doing this <br>
with another filter but this one drives me crazy. I keep getting these<br>
<br>
&quot;*** SYNTAX ERROR found in parsing the header file <br>
/home/christian/programming/pv-plugins/Transformation/ivtkSampleFilter.h
<br>
before line 8 ***<br>
<br>
messages, no matter where I put these //BTX //ETX. This is my header:<br>
<br>
<br>
#ifndef IVTK_SAMPLE_FILTER<br>
#define IVTK_SAMPLE_FILTER<br>
<br>
#include &quot;vtkObjectFactory.h&quot;<br>
#include &quot;vtkSimpleImageToImageFilter.h&quot;<br>
#include &quot;xtkBox.h&quot;<br>
<br>
class VTK_IMAGING_EXPORT ivtkSampleImageFilter : public <br>
vtkSimpleImageToImageFilter {<br>
 &nbsp; &nbsp;public:<br>
 &nbsp; &nbsp;static ivtkSampleImageFilter* New();<br>
<br>
 &nbsp; &nbsp;vtkTypeMacro( ivtkSampleImageFilter, vtkSimpleImageToImageFilter);<br>
 &nbsp; &nbsp;protected:<br>
 &nbsp; &nbsp;ivtkSampleImageFilter();<br>
 &nbsp; &nbsp;ivtkSampleImageFilter(const ivtkSampleImageFilter&amp;) {};<br>
 &nbsp; &nbsp;void operator=(const ivtkSampleImageFilter&amp;) {};<br>
<br>
 &nbsp; &nbsp;//override from vtkImageToImageFilter<br>
 &nbsp; &nbsp;virtual void SimpleExecute(vtkImageData* inp, vtkImageData*
out);<br>
<br>
 &nbsp; &nbsp;//BTX<br>
 &nbsp; &nbsp;vtkImageData* &nbsp; &nbsp;vtkResultImage;<br>
 &nbsp; &nbsp;//ETX<br>
 &nbsp; &nbsp;vtkITKFilter_H_Macro;<br>
 &nbsp; &nbsp;/// custom Filter function ///<br>
 &nbsp; &nbsp;template &lt;typename ImageType&gt;<br>
 &nbsp; &nbsp;void ApplyFilter(vtkImageData* vtkInput);<br>
};<br>
#endif<br>
<br>
It also complains if I comment out my #include &quot;xtkBox.h&quot;, or
put some <br>
//BTX//ETX all around other places. It keeps coming with the error <br>
message as if I did not even edit the right file. (I do, I checked <br>
that... :)<br>
<br>
I call a macro later in the header which is defined in the xtkBox.h but
<br>
the compiler does not even care if it is defined or not. Anyway, for <br>
completeness I attached this xtkBox.h.<br>
<br>
Does anyone see what I am missing?<br>
<br>
<br>
Best regards,<br>
Chrsitian<br>
#ifndef XTK_BOX<br>
#define XTK_BOX<br>
<br>
#include &quot;vtkImageExport.h&quot;<br>
#include &quot;vtkImageImport.h&quot;<br>
#include &quot;itkVTKImageImport.h&quot;<br>
#include &quot;itkVTKImageExport.h&quot;<br>
<br>
#include &quot;vtkImageData.h&quot;<br>
//ETX<br>
#include &quot;itkImage.h&quot;<br>
//BTX<br>
template &lt;typename ImageType&gt;<br>
class XTKBox {<br>
 &nbsp; &nbsp;protected:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
//BTX<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::VTKImageImport&lt;ImageType&gt; ImageImportType;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::VTKImageExport&lt;ImageType&gt; ImageExportType;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typename ImageImportType::Pointer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; itkImporter;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typename ImageExportType::Pointer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; itkExporter;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkImageImport* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;vtkImporter;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkImageExport* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;vtkExporter;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ImageType* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
itkImage;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkImageData* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; vtkImage;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
//ETX<br>
 &nbsp; &nbsp;public:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
XTKBox() {};<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
XTKBox(vtkImageData*);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
//get/set ITK Image Data<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
void setITKImage(ImageType*);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ImageType* getITKFromVTKImage();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
//get/set VTK Image Data<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
void setVTKImage(vtkImageData*);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkImageData* getVTKFromITKImage();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkImageData* getVTKImage();<br>
};<br>
<br>
///Two macros that have to be called in all ivkt Filters.<br>
///vtkITKFilter_CXX_Macro(ClassName) and vtkITKFilter_H_Macro<br>
///(they construct the proper ITK ImageType according to the input vtkImageData)<br>
#define vtkITKFilter_H_Macro \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
virtual void StartTypeGeneration(vtkImageData*); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
template&lt;unsigned int DIM&gt; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
void FinalizeImageType(vtkImageData* vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
template&lt;unsigned int DIM, unsigned int COMP&gt; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
void CreateType(vtkImageData* vtkInput);<br>
<br>
#define vtkITKFilter_CXX_Macro(thisClass) \<br>
/** \<br>
 * Step 1) Initialize TypeCreation by getting the dimensionality of the
vtkInput. \<br>
 */ \<br>
void thisClass:: \<br>
StartTypeGeneration(vtkImageData* vtkInput) \<br>
{ \<br>
 &nbsp; &nbsp;unsigned int dimensionality = vtkInput-&gt;GetDataDimension();
\<br>
 &nbsp; &nbsp;switch(dimensionality) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 1: FinalizeImageType&lt;1&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; break; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 2: FinalizeImageType&lt;2&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; break; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 3: FinalizeImageType&lt;3&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; break; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
default: \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; vtkErrorMacro(&lt;&lt;&quot;vtkSimpleImageToImageITKFilter:
ApplyITKFilter Error&quot; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &lt;&lt; &quot;\ndimensionality of vtk input image is &quot;
&lt;&lt; dimensionality); \<br>
 &nbsp; &nbsp;} \<br>
} \<br>
/** \<br>
 * Step 2) Get the number of scalar components and setup the final image
type. \<br>
 */ \<br>
template&lt;unsigned int DIM&gt; \<br>
void thisClass:: \<br>
FinalizeImageType(vtkImageData* vtkInput) \<br>
{ \<br>
 &nbsp; &nbsp;unsigned int components = vtkInput-&gt;GetNumberOfScalarComponents();
\<br>
 &nbsp; &nbsp;\<br>
 &nbsp; &nbsp;switch(components) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 1: return CreateType&lt;DIM, 1&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;
\<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 2: return CreateType&lt;DIM, 2&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;
\<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
case 3: return CreateType&lt;DIM, 3&gt;(vtkInput); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;
\<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
default: \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; vtkErrorMacro(&lt;&lt;&quot;vtkSimpleImageToImageITKFilter:
SetupImageType Error&quot; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &lt;&lt; &quot;\nnumber of components of vtk input image
is &quot; &lt;&lt; components); \<br>
 &nbsp; &nbsp;} \<br>
} \<br>
/** \<br>
 * Step 3) Setup the appropriate itk::Image data type. \<br>
 */ \<br>
template&lt;unsigned int DIM, unsigned int COMP&gt; \<br>
void thisClass:: \<br>
CreateType(vtkImageData* vtkInput) \<br>
{ \<br>
 &nbsp; &nbsp;const int scalarType = vtkInput-&gt;GetScalarType(); \<br>
 &nbsp; &nbsp;if (scalarType == VTK_CHAR) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; char, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_UNSIGNED_CHAR) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; unsigned char, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_SHORT) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; short, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_UNSIGNED_SHORT) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; unsigned short, COMP &gt; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_INT) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; int, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_UNSIGNED_INT) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; unsigned int, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_LONG) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; long, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_UNSIGNED_LONG) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; unsigned long, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_FLOAT) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; float, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else if (scalarType == VTK_DOUBLE) { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Vector&lt; double, COMP &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; PixelType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
typedef itk::Image&lt; PixelType, DIM &gt; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; ImageType; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
ApplyFilter&lt;ImageType&gt;( vtkInput ); \<br>
 &nbsp; &nbsp;} else { \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
const char* scalarTypeString = vtkInput-&gt;GetScalarTypeAsString(); \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
vtkErrorMacro(&lt;&lt;&quot;vtkSimpleImageToImageITKFilter: CreateType
Error&quot; \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &lt;&lt; &quot;\nscalar type of vtk input image is &quot;
&lt;&lt; scalarTypeString \<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &lt;&lt; &quot;(&quot; &lt;&lt; scalarType &lt;&lt; &quot;)&quot;);
\<br>
 &nbsp; &nbsp;} \<br>
}<br>
#endif<br>
_______________________________________________<br>
Powered by www.kitware.com<br>
<br>
Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html<br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView<br>
<br>
Follow this link to subscribe/unsubscribe:<br>
http://www.paraview.org/mailman/listinfo/paraview<br>
</font></tt>
<br><pre>


Ce message et toutes les pièces jointes (ci-après le 'Message') sont établis à l'intention exclusive des destinataires et les informations qui y figurent sont strictement confidentielles. Toute utilisation de ce Message non conforme à sa destination, toute diffusion ou toute publication totale ou partielle, est interdite sauf autorisation expresse.

Si vous n'êtes pas le destinataire de ce Message, il vous est interdit de le copier, de le faire suivre, de le divulguer ou d'en utiliser tout ou partie. Si vous avez reçu ce Message par erreur, merci de le supprimer de votre système, ainsi que toutes ses copies, et de n'en garder aucune trace sur quelque support que ce soit. Nous vous remercions également d'en avertir immédiatement l'expéditeur par retour du message.

Il est impossible de garantir que les communications par messagerie électronique arrivent en temps utile, sont sécurisées ou dénuées de toute erreur ou virus.
____________________________________________________

This message and any attachments (the 'Message') are intended solely for the addressees. The information contained in this Message is confidential. Any use of information contained in this Message not in accord with its purpose, any dissemination or disclosure, either whole or partial, is prohibited except formal approval.

If you are not the addressee, you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return message.

E-mail communication cannot be guaranteed to be timely secure, error or virus-free.
</pre>