diff --git a/Code/Core/otbWrapperInputImageParameter.h b/Code/Core/otbWrapperInputImageParameter.h
new file mode 100644
index 0000000000000000000000000000000000000000..beeed86249fbbb00c2609bce7ccdba6c7c874c31
--- /dev/null
+++ b/Code/Core/otbWrapperInputImageParameter.h
@@ -0,0 +1,64 @@
+/*=========================================================================
+
+  Program:   ORFEO Toolbox
+  Language:  C++
+  Date:      $Date$
+  Version:   $Revision$
+
+
+  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
+  See OTBCopyright.txt for details.
+
+
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+
+=========================================================================*/
+#ifndef __otbWrapperInputImageParameter_h
+#define __otbWrapperInputImageParameter_h
+
+#include "otbWrapperParameter.h"
+
+namespace otb
+{
+namespace Wrapper
+{
+/** \class InputImageParameter
+ *  \brief This class represents a InputImage parameter
+ */
+
+class ITK_EXPORT InputImageParameter : public Parameter
+{
+public:
+  /** Standard class typedef */
+  typedef InputImageParameter           Self;
+  typedef Parameter                     Superclass;
+  typedef itk::SmartPointer<Self>       Pointer;
+  typedef itk::SmartPointer<const Self> ConstPointer;
+
+  /** Defining ::New() static method */
+  itkNewMacro(Self);
+
+  /** RTTI support */
+  itkTypeMacro(InputImageParameter,Parameter);
+
+protected:
+  /** Constructor */
+  InputImageParameter()
+  {}
+
+  /** Destructor */
+  virtual ~InputImageParameter()
+  {}
+
+private:
+  InputImageParameter(const Parameter &); //purposely not implemented
+  void operator =(const Parameter&); //purposely not implemented
+
+}; // End class InputImage Parameter
+
+} // End namespace Wrapper
+} // End namespace otb
+
+#endif
diff --git a/Testing/CMakeLists.txt b/Testing/CMakeLists.txt
index 8466a719a6789882fafde5a85547d26c7b964cf3..9a05f461b98f24030f1cb7ede02769c30b889a88 100644
--- a/Testing/CMakeLists.txt
+++ b/Testing/CMakeLists.txt
@@ -37,7 +37,12 @@ ADD_TEST(owTvNumericalParameter ${OTB_WRAPPER_TESTS}
 	"mykey"
 	"my description"
   )
-  
+
+# Input Image parameter class test
+ADD_TEST(owTuInputImageParameter ${OTB_WRAPPER_TESTS}
+	otbWrapperInputImageParameterNew
+  )
+    
 # Application class test
 ADD_TEST(owTuApplication ${OTB_WRAPPER_TESTS}
 	otbWrapperApplicationNew
@@ -52,6 +57,7 @@ otbWrapperNumericalParameterTest.cxx
 otbWrapperEmptyParameterTest.cxx
 otbWrapperApplicationTest.cxx
 otbWrapperParameterListTest.cxx
+otbWrapperInputImageParameterTest.cxx
 )
 
 ADD_EXECUTABLE(otbWrapperTests ${Wrapper_SRCS})
diff --git a/Testing/otbWrapperInputImageParameterTest.cxx b/Testing/otbWrapperInputImageParameterTest.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..194c4f2cea7707be881c59117dd76db0a6623e24
--- /dev/null
+++ b/Testing/otbWrapperInputImageParameterTest.cxx
@@ -0,0 +1,30 @@
+/*=========================================================================
+
+  Program:   ORFEO Toolbox
+  Language:  C++
+  Date:      $Date$
+  Version:   $Revision$
+
+
+  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
+  See OTBCopyright.txt for details.
+
+
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+
+=========================================================================*/
+#if defined(_MSC_VER)
+#pragma warning ( disable : 4786 )
+#endif
+
+#include "otbWrapperInputImageParameter.h"
+
+int otbWrapperInputImageParameterNew(int argc, char* argv[])
+{
+  typedef otb::Wrapper::InputImageParameter InputImageParameterType;
+  InputImageParameterType::Pointer parameter = InputImageParameterType::New();
+
+  return EXIT_SUCCESS;
+}
diff --git a/Testing/otbWrapperTests.cxx b/Testing/otbWrapperTests.cxx
index 80a054292bd458cd6e228e1663027bddb4e754f9..92203eca4d873d74234296b4f3e900e04c0ce6ce 100644
--- a/Testing/otbWrapperTests.cxx
+++ b/Testing/otbWrapperTests.cxx
@@ -33,4 +33,5 @@ void RegisterTests()
   REGISTER_TEST(otbWrapperEmptyParameterNew);
   REGISTER_TEST(otbWrapperApplicationNew);
   REGISTER_TEST(otbWrapperParameterListNew);
+  REGISTER_TEST(otbWrapperInputImageParameterNew);
 }