Index: /trunk/magic/remove/src/streaksremove.c
===================================================================
--- /trunk/magic/remove/src/streaksremove.c	(revision 21041)
+++ /trunk/magic/remove/src/streaksremove.c	(revision 21042)
@@ -82,4 +82,7 @@
     }
 
+    int totalPixels = 0;
+    int totalStreakPixels = 0;
+
     // Iterate through each component of the input (only one except for raw stage)
     do {
@@ -98,4 +101,6 @@
         }
 
+        totalPixels += sfiles->inImage->numRows * sfiles->inImage->numCols;
+
         if (!exciseAll) {
             // Identify pixels to mask because of streaks
@@ -104,4 +109,5 @@
 
             StreakPixels *pixels = getStreakPixels(sfiles, streaks);
+
 
             printf("time to get streak pixels: %f\n", psTimerClear("GET_STREAK_PIXELS"));
@@ -116,4 +122,5 @@
             
             if (sfiles->inImage->image) {
+                totalStreakPixels +=  psArrayLength(pixels);
                 psTimerStart("REMOVE_STREAKS");
                 for (int i = 0; i < psArrayLength (pixels); ++i) {
@@ -143,4 +150,5 @@
     } while (streakFilesNextExtension(sfiles));
 
+    printf("pixels: %ld streak pixels: %ld %4.2f%%\n", totalPixels, totalStreakPixels, 100. * totalStreakPixels / totalPixels);
 
     psTimerStart("CLOSE_IMAGES");
