<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4134.600" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Hi Friends</FONT></DIV>
<DIV>&nbsp;</DIV><FONT face=Arial size=2>
<DIV><BR>&nbsp;&nbsp; I am using vtkImageFFT and vtkImageRFFT in my 
applicaction&nbsp; along with vtkIimageButterworkHighpassFilter.I am also using 
vtkImageExtractComponents with SetComponents to 0.When importing the image I am 
using the unsigned character buffer .After the above operations I am exporting 
to the same buffer.Here I am getting the Exception which is 'some instruction 
reference at some location ,that memory location&nbsp; could not&nbsp; be read 
'.I am getting the error when export to the buffer by using vtkImageExport.Is 
there any changes in the buffer values type.I could not understand clearly what 
is the output of vtkimageFFT and vtkImageRFFT.Here I am enclosing my code.</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
m_dstImage-&gt;GrayScale();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
UpdateAllViews(NULL);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
BYTE* 
aImgBits=m_dstImage-&gt;GetBits();<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
int 
xdim=m_srcImage-&gt;GetWidth();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
int 
ydim=m_srcImage-&gt;GetHeight();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;vtkImageImport *importer = 
vtkImageImport::New();<BR>&nbsp;importer-&gt;SetDataExtent(0,xdim-1&nbsp; 
,0,ydim-1 ,0,0 );<BR>&nbsp;importer-&gt;SetWholeExtent(0, xdim-1&nbsp; ,0,ydim 
-1,0,0 
);<BR>&nbsp;importer-&gt;SetDataScalarTypeUnsignedChar();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
importer-&gt;SetImportVoidPointer(aImgBits);<BR>&nbsp; <BR>&nbsp;vtkImageFFT 
*fft=vtkImageFFT::New();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
fft-&gt;SetDimensionality(2);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
fft-&gt;SetInput(importer-&gt;GetOutput());<BR>&nbsp;<BR>&nbsp;vtkImageButterworthHighPass 
*filter=vtkImageButterworthHighPass::New();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
filter-&gt;SetInput(fft-&gt;GetOutput());<BR>&nbsp;filter-&gt;SetOrder(2);<BR>&nbsp;filter-&gt;SetXCutOff(0.2);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
filter-&gt;SetYCutOff(0.1);<BR>&nbsp;filter-&gt;ReleaseDataFlagOff();</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;vtkImageRFFT 
*rfft=vtkImageRFFT::New();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
rfft-&gt;SetDimensionality(2);<BR>&nbsp;rfft-&gt;SetInput(filter-&gt;GetOutput());<BR>&nbsp;<BR>&nbsp;vtkImageExtractComponents 
*ecomp=vtkImageExtractComponents 
::New();<BR>&nbsp;ecomp-&gt;SetInput(rfft-&gt;GetOutput());<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
ecomp-&gt;SetComponents(0);<BR>&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
vtkImageExport *exporter = 
vtkImageExport::New();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exporter-&gt;SetInput(ecomp-&gt;GetOutput());<BR>&nbsp;exporter-&gt;Export(aImgBits);</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;importer-&gt;Delete();<BR>&nbsp;exporter-&gt;Delete();<BR>&nbsp;filter-&gt;Delete();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
fft-&gt;Delete();<BR>&nbsp;rfft-&gt;Delete();<BR>&nbsp;UpdateAllViews(NULL,WM_USER_NEWIMAGE);</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>&nbsp; Thanking You<BR>&nbsp;&nbsp;&nbsp;&nbsp; Chandu&nbsp; 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV></FONT>&nbsp;</DIV></BODY></HTML>