Index: trunk/MagicSoft/Cosy/videodev/Camera.cc
===================================================================
--- trunk/MagicSoft/Cosy/videodev/Camera.cc	(revision 1266)
+++ trunk/MagicSoft/Cosy/videodev/Camera.cc	(revision 1531)
@@ -161,6 +161,9 @@
     cout << "OK." << endl;
 
-    cout << "Buffer Offset " << buffers.offsets[1] << endl;
-    cout << "grab: use: 768x576 24 bit TrueColor (LE: bgr)" << endl;
+    cout << "Buffer Address: " << (void*)pMapBuffer << endl;
+    cout << "Buffer Offset 1: " << (void*)iOffsets[0] << endl;
+    cout << "Buffer Offset 2: " << (void*)iOffsets[1] << endl;
+    cout << "Buffer Size: " << (void*)iBufferSize << endl;
+    cout << "grab: use: 768x576 24 bit TrueColor (LE: bgr) = " << (void*)(768*576*3) << "b" << endl;
 }
 
@@ -207,5 +210,4 @@
 }
 
-
 void Camera::LoopStep(const unsigned long n)
 {
@@ -248,4 +250,5 @@
             if (!StartGrab(i&1))
                 break;
+
             ProcessFrame(i, (byte*)fImg, &fTime);
             i++;
Index: trunk/MagicSoft/Cosy/videodev/Filter.cc
===================================================================
--- trunk/MagicSoft/Cosy/videodev/Filter.cc	(revision 1266)
+++ trunk/MagicSoft/Cosy/videodev/Filter.cc	(revision 1531)
@@ -107,5 +107,5 @@
     const float sdev = SDev(img, offset, mean);
 
-    const float cut = mean + 3*sdev;
+    const float cut = mean + 2.5*sdev;
 
     //
