]> git.sesse.net Git - movit/blobdiff - deconvolution_sharpen_effect.cpp
Run include-what-you-use over all of movit. Some hand tuning.
[movit] / deconvolution_sharpen_effect.cpp
index 38cf0cf3fcbc66bf6f8b9a5e64e65972da977fab..260266403852a2beb22232e29924d4c25a873b2d 100644 (file)
@@ -2,15 +2,18 @@
 // Since all of our signals are symmetrical, discrete correlation and convolution
 // is the same operation, and so we won't make a difference in notation.
 
-
-#include <math.h>
-#include <assert.h>
 #include <Eigen/Dense>
 #include <Eigen/Cholesky>
+#include <GL/glew.h>
+#include <assert.h>
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <algorithm>
+#include <new>
 
 #include "deconvolution_sharpen_effect.h"
 #include "util.h"
-#include "opengl.h"
 
 using namespace Eigen;