From 9cf090a0ad23deb7a5c9da6033e1b70fa58357c1 Mon Sep 17 00:00:00 2001
From: Austin Sanders <arsanders@usgs.gov>
Date: Tue, 30 Jul 2019 14:30:56 -0700
Subject: [PATCH] Removed extra cout lines

---
 src/Utilities.cpp | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/Utilities.cpp b/src/Utilities.cpp
index dec0545..9b50217 100644
--- a/src/Utilities.cpp
+++ b/src/Utilities.cpp
@@ -94,11 +94,6 @@ void computeDistortedFocalPlaneCoordinates(
 
   distortedX = p11 * t1 + p12 * t2;
   distortedY = p21 * t1 + p22 * t2;
-
-  std::cout << t1 << ", " << t2 << std::endl;
-  std::cout << p11 << ", " << p12 << std::endl;
-  std::cout << p21 << ", " << p22 << std::endl;
-
 };
 
 // Compue the image pixel for a distorted focal plane coordinate
-- 
GitLab