diff --git a/src/bumblebee.cpp b/src/bumblebee.cpp
index 0ced744e34499723205850980ecee36ce99a88bc..08d50e866450522c4ecddb4904dff1e21d2117b2 100755
--- a/src/bumblebee.cpp
+++ b/src/bumblebee.cpp
@@ -46,7 +46,6 @@ void CBumblebee::set_config(unsigned int *left_off,unsigned int *top_off,unsigne
   dc1394error_t error;
   uint32_t min_bpp;
   uint32_t max_bpp;
-
   unsigned int bpp;
 
   // set the operation mode
@@ -58,7 +57,7 @@ void CBumblebee::set_config(unsigned int *left_off,unsigned int *top_off,unsigne
   }
   this->mode=DC1394_VIDEO_MODE_FORMAT7_3;
   // configure the camera
-  if(coding==MONO)
+  if(this->stereo_coding==MONO)
   {
     this->coding=MONO;
     dc1394_coding=DC1394_COLOR_CODING_MONO16;
diff --git a/src/examples/bumblebee.cpp b/src/examples/bumblebee.cpp
index 982fc0fa45a2901f0173cbe5d33fe107de08ba42..98ebb2b194b5c84a8795041e6f7625af6f946d0f 100755
--- a/src/examples/bumblebee.cpp
+++ b/src/examples/bumblebee.cpp
@@ -7,7 +7,7 @@
 #include <sstream>
 #include <iostream>
 
-const int num_frames=10;
+const int num_frames=1000;
 
 int main(int argc, char *argv[])
 {
diff --git a/src/examples/ladybug.cpp b/src/examples/ladybug.cpp
index 965fe9cb4937846bfba78e2b24e0f0f00413fc40..3978fd81789d6bbf0eecd7f8074cb7e1120c8408 100755
--- a/src/examples/ladybug.cpp
+++ b/src/examples/ladybug.cpp
@@ -24,8 +24,6 @@ int main(int argc, char *argv[])
   char *front=NULL,*front_right=NULL,*rear_right=NULL,*rear_left=NULL,*front_left=NULL,*top=NULL;
   std::string new_frame,filename;
   std::stringstream text;
-  uint64_t guid=0x0000b09d01006b6fb5;
-//  uint64_t guid=0x00B09D01007D6D85LL;
   std::list<std::string> events;
 
   try
@@ -36,16 +34,18 @@ int main(int argc, char *argv[])
     server->init();
     std::cout << "Num. Cam. : " << server->get_num_cameras() << std::endl;
     /* get the new camera with index 0 */
-    /* get the new camera with guid = 0x00B09D01007D6D85 */
-//    server->get_pgr_stereo_camera_guid(guid,&camera1);
     server->get_ladybug_camera(0,&ladybug);
     /* get the reference to the event server */
     event_server=CEventServer::instance();
     ladybug->get_config(&left_off,&top_off,&width,&height,&framerate,&depth,&coding);
     std::cout << "Fremerate: " << framerate << std::endl;
-//    coding=MONO;
+    coding=RGB;
     framerate=10;
     ladybug->set_config(&left_off,&top_off,&width,&height,&framerate,depth,coding);
+    ladybug->get_multi_config(&width,&height,&framerate,&depth,&coding);
+    std::cout << "Image size: " << width << "x" << height << std::endl;
+    std::cout << "Fremerate: " << framerate << std::endl;
+    std::cout << "Color coding: " << (int)coding << "-" << (int)depth << std::endl;
     ladybug->get_new_frame_event_id(new_frame);
     events.push_back(new_frame);
     ladybug->start();
diff --git a/src/ladybug.cpp b/src/ladybug.cpp
index 5ae1909e9b19c0a08f01a29a934d65a8a00b6452..21a6b17ab6b837330c05d1799b1bcbc066119928 100755
--- a/src/ladybug.cpp
+++ b/src/ladybug.cpp
@@ -47,6 +47,15 @@ void CLadyBug::set_config(unsigned int *left_off,unsigned int *top_off,unsigned
     this->multi_coding=RGB;
 }
 
+void CLadyBug::get_multi_config(unsigned int *width,unsigned int *height, float *framerate, depths_t *depth, codings_t *coding)
+{
+  (*width)=this->multi_width;
+  (*height)=this->multi_height;
+  (*framerate)=this->framerate;
+  (*depth)=this->multi_depth;
+  (*coding)=this->multi_coding;
+}
+
 void CLadyBug::get_images(char **front, char **front_right, char **rear_right, char **rear_left, char **front_left, char **top)
 {
   int depth;
diff --git a/src/ladybug.h b/src/ladybug.h
index a81c4e1e495e48a27cdb3faffeb2187b8502f7d7..f485aeb9bbf5f96cd73793664a37b715be723d91 100755
--- a/src/ladybug.h
+++ b/src/ladybug.h
@@ -37,6 +37,11 @@ class CLadyBug : public CPTGCamera
      * 
      */
     void set_config(unsigned int *left_off,unsigned int *top_off,unsigned int *width,unsigned int *height, float *framerate, depths_t depth, codings_t coding);
+    /** 
+     * \brief
+     * 
+     */
+    void get_multi_config(unsigned int *width,unsigned int *height, float *framerate, depths_t *depth, codings_t *coding);
     /** 
      * \brief
      *