summaryrefslogtreecommitdiff
path: root/doc/source/user/plot_gray_svd.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/user/plot_gray_svd.py')
-rw-r--r--doc/source/user/plot_gray_svd.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/source/user/plot_gray_svd.py b/doc/source/user/plot_gray_svd.py
deleted file mode 100644
index 95439939d..000000000
--- a/doc/source/user/plot_gray_svd.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from scipy import misc
-import matplotlib.pyplot as plt
-import numpy as np
-from numpy import linalg
-
-img = misc.face()
-img_array = img / 255
-img_gray = img_array @ [0.2126, 0.7152, 0.0722]
-
-U, s, Vt = linalg.svd(img_gray)
-
-Sigma = np.zeros((768, 1024))
-for i in range(768):
- Sigma[i, i] = s[i]
-
-plt.plot(s)