From e43a077bc692cd55233bc526ec951aea4ba2b98b Mon Sep 17 00:00:00 2001
From: ctrebeau <ctrebeau@pasteur.fr>
Date: Mon, 2 Nov 2020 12:12:50 +0100
Subject: [PATCH] code cleanup

---
 .../ida/zellige/utils/StackProjection.java    | 26 -------------------
 1 file changed, 26 deletions(-)

diff --git a/src/main/java/fr/pasteur/ida/zellige/utils/StackProjection.java b/src/main/java/fr/pasteur/ida/zellige/utils/StackProjection.java
index 373a2bd7..cd78b454 100644
--- a/src/main/java/fr/pasteur/ida/zellige/utils/StackProjection.java
+++ b/src/main/java/fr/pasteur/ida/zellige/utils/StackProjection.java
@@ -69,32 +69,6 @@ public class StackProjection
     }
 
 
-//    /**
-//     * @param interpolatedZMap - the interpolated 2D array height map of the reference surface.
-//     * @param sigma            - ste standard deviation of the gaussian filter.
-//     * @return a smoothed 2D array height map.
-//     */
-//    public static Double[][] smoothZMap( Double[][] interpolatedZMap, int sigma )
-//    {
-//        Img< DoubleType > zMapImg = zMapToZMapImg( interpolatedZMap );
-//        Img< DoubleType > smoothZmaP = smoothZMap( zMapImg, sigma );
-//        return ImgToZMap( smoothZmaP, interpolatedZMap );
-//    }
-
-    /**
-     * Performs a bi-dimensional gaussian blur.
-     *
-     * @param zMap  - the height map image.
-     * @param sigma - the standard deviation for the blur.
-     * @return - a filtered (smoothed) image.
-     */
-//    private static Img< DoubleType > smoothZMap( Img< DoubleType > zMap, int sigma )
-//    {
-//        Img< DoubleType > smoothZmaP = zMap.factory().create( zMap );
-//        Utils.gaussConvolution( zMap, smoothZmaP, new double[]{ sigma, sigma } );
-//        return smoothZmaP;
-//    }
-
 
     /**
      * @param stack
-- 
GitLab