[Insight-users] Re: Help
Luis Ibanez
luis . ibanez at kitware . com
Sat, 15 Jun 2002 12:42:08 -0400
Hi cspl,
ITK applications can be build without the use of CMake,
It will just be harder to setup the project file
correctly
Can you please add a try/catch block to you OLE application
and printout the message of the caught exception ?
Something like:
try
{
laplacian->Update();
}
catch( itk::ExceptionObject & e )
{
std::cout << e << std::endl;
}
Then printed message could probably help to identify
the source of the problem.
Thanks
Luis
==============================================
cspl wrote:
> Dear Mr. Luis,
>
>
>
> I got the laplician filter output and I can able to read and write raw
> files.These functionalitie's are working fine when I am making projects
> with the help of CMake.I tried another application which is a OLE
> Automation
>
> server.In that application Laplician filter is not working .But Actually
> Iam not creating project with the help of CMake.I tried using dll also
> but Laplician filter ->Update() is giving exception in with out using
> CMake projects.Please give me suggestion to solve our problem.Is it work
> with only Cmake projects or it can be placed any where in the code in
> other applications.
>
>
>
>
>
> Thanking you,
>
> Regards,
>
> Ramakrishna
>
>
>