<br><br><div class="gmail_quote">---------- Forwarded message ----------<br>From: <b class="gmail_sendername">Mail Delivery Subsystem</b> <span dir="ltr">&lt;<a href="mailto:mailer-daemon@googlemail.com">mailer-daemon@googlemail.com</a>&gt;</span><br>
Date: Tue, Jan 8, 2013 at 3:23 PM<br>Subject: Delivery Status Notification (Failure)<br>To: <a href="mailto:qt.itk.vtk.help@gmail.com">qt.itk.vtk.help@gmail.com</a><br><br><br>Delivery to the following recipient failed permanently:<br>

<br>
     <a href="mailto:Insight-user@itk.org">Insight-user@itk.org</a><br>
<br>
Technical details of permanent failure:<br>
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 5.1.1 &lt;<a href="mailto:Insight-user@itk.org">Insight-user@itk.org</a>&gt;: Recipient address rejected: User unknown in local recipient table (state 13).<br>

<br>
----- Original message -----<br>
<br>
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;<br>
        d=<a href="http://gmail.com" target="_blank">gmail.com</a>; s=20120113;<br>
        h=mime-version:in-reply-to:references:date:message-id:subject:from:to<br>
         :content-type;<br>
        bh=f0ii/G2uWMZoJONnaJFQMsdZ35C0isu1SVmhapk8nNw=;<br>
        b=am2Yt80Cnx10LW8HvV4yC/tepRQmTU/TzqLkXy9pJSOwudYzOG/VBxcCMCy9dfXgFg<br>
         10e7WkaNMCjOwO8Eisw3vQqNxa1+61r2bSt1EQyE1YyQP6HjeqjWocRhNBvjFIY6NppB<br>
         uwt9XxCnPftrvhUC0egTCdvNqyZykaqyBNJku5va6M0Jq0t4Sjkk4bGJN+v/OrMbe/ml<br>
         LCb8K/H04Sd8puoH6FHbHa80CsWUd72cuX2MRBVt9nGGF4WH215IbhNLHZx7GlZeZoDZ<br>
         I4EKxq5NfVYZrHJYST6W8KS0KQzL55wKGePPv2H6B156tN5w+boEHjAkvR90ztweCMhy<br>
         HgjA==<br>
MIME-Version: 1.0<br>
Received: by 10.60.172.229 with SMTP id bf5mr34480999oec.81.1357638822748;<br>
 Tue, 08 Jan 2013 01:53:42 -0800 (PST)<br>
Received: by 10.182.176.5 with HTTP; Tue, 8 Jan 2013 01:53:42 -0800 (PST)<br>
In-Reply-To: &lt;CAPsjOEGPM=0PZ_+6ORVa-vjwR0qvz0rkiW=<a href="mailto:1P5zY-QbqqhtKvA@mail.gmail.com">1P5zY-QbqqhtKvA@mail.gmail.com</a>&gt;<br>
References: &lt;CAPsjOEGPM=0PZ_+6ORVa-vjwR0qvz0rkiW=<a href="mailto:1P5zY-QbqqhtKvA@mail.gmail.com">1P5zY-QbqqhtKvA@mail.gmail.com</a>&gt;<br>
Date: Tue, 8 Jan 2013 15:23:42 +0530<br>
Message-ID: &lt;CAPsjOEEY+_svbDVnjSuTju6PLMh5=<a href="mailto:syinxfKhSMk371Eej7EjQ@mail.gmail.com">syinxfKhSMk371Eej7EjQ@mail.gmail.com</a>&gt;<br>
Subject: Fwd: Having problem while integrating ITK with Qt<br>
From: &quot;qt.itk.vtk.help&quot; &lt;<a href="mailto:qt.itk.vtk.help@gmail.com">qt.itk.vtk.help@gmail.com</a>&gt;<br>
To: <a href="mailto:Insight-user@itk.org">Insight-user@itk.org</a><br>
Content-Type: multipart/related; boundary=bcaec54ee86cc3616b04d2c3ebff<br>
<div class="HOEnZb"><div class="h5"><br>
---------- Forwarded message ----------<br>
From: qt.itk.vtk.help &lt;<a href="mailto:qt.itk.vtk.help@gmail.com">qt.itk.vtk.help@gmail.com</a>&gt;<br>
Date: Tue, Jan 8, 2013 at 3:21 PM<br>
Subject: Having problem while integrating ITK with Qt<br>
To: <a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>, <a href="mailto:insight-developers@itk.org">insight-developers@itk.org</a><br>
<br>
<br>
Hie,<br>
<br>
<br>
I have build itk with cmake and vs2010.I want to work on ITK with QT<br>
without Cmake so,I am trying to add all the .h and build library from .pro<br>
file without Cmake in project.I have mentioned .h path in INCLUDEPATH and<br>
.lib in LIBS. After that i have include some itk header files,build it  and<br>
it works fine then i have copied  basic code to read an image in main()<br>
 and build it still it wont show any error. But when i am running exe from<br>
project bin/commandline it shows error .<br>
Here is my .pro file<br>
<br>
#-------------------------------------------------<br>
<br>
#<br>
<br>
# Project created by QtCreator 2013-01-07T16:23:05<br>
<br>
#<br>
<br>
#-------------------------------------------------<br>
<br>
#QT       += core gui<br>
<br>
QT += network \<br>
<br>
    opengl \<br>
<br>
    xml<br>
<br>
<br>
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets<br>
<br>
<br>
TARGET = ITKPath<br>
<br>
#CONFIG *= qt opengl release  build_all<br>
<br>
#QT *= opengl xml<br>
<br>
CONFIG += console \<br>
<br>
    qt<br>
<br>
CONFIG -= app_bundle<br>
<br>
TEMPLATE = app<br>
<br>
<br>
<br>
SOURCES += mainwindow.cpp \<br>
<br>
    main.cpp<br>
<br>
<br>
<br>
<br>
<br>
HEADERS  += mainwindow.h<br>
<br>
<br>
FORMS    += mainwindow.ui<br>
<br>
<br>
#ITK dependency<br>
<br>
<br>
INCLUDEPATH *=E:/itk/src/Modules/Video/Filtering/include<br>
E:/itk/src/Modules/Video/IO/include<br>
E:/itk/src/Modules/Video/Core/include<br>
E:/itk/src/Modules/Nonunit/Review/include<br>
E:/itk/src/Modules/Registration/RegistrationMethodsv4/include<br>
E:/itk/src/Modules/Registration/Metricsv4/include<br>
E:/itk/src/Modules/Numerics/Optimizersv4/include<br>
E:/itk/src/Modules/Segmentation/LevelSetsv4/include \<br>
<br>
               E:/itk/src/Modules/Filtering/ImageFusion/include<br>
E:/itk/src/Modules/IO/TransformMatlab/include<br>
E:/itk/src/Modules/IO/TransformInsightLegacy/include<br>
E:/itk/src/Modules/IO/TransformHDF5/include<br>
E:/itk/src/Modules/IO/TransformBase/include<br>
</div></div></div><br>