hi friends,

i am new to Qt and opencv, i am developing gui application for image loading
i have done this process in my .pro

#-------------------------------------------------
#
# Project created by QtCreator 2013-02-26T12:00:38
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = MyGuiAPP1
TEMPLATE = app


SOURCES += main.cpp\
mainwindow.cpp

HEADERS += mainwindow.h

FORMS += mainwindow.ui

INCLUDEPATH+= C:\opencv243\build\include
LIBS+= -LC:\opencv243\build\x86\vc10\lib\
-lopencv_features2d243
-lopencv_highgui243
-lopencv_calib3d243
-lopencv_core243


and i am getting error


D:\QTPROJS\MyGuiAPP1\mainwindow.cpp:22: error: C2374: 'image' : redefinition; multiple initialization

D:\QTPROJS\MyGuiAPP1\mainwindow.cpp:21: see declaration of 'image'


Thanks and help me
karuna