Fix accidential variable naming confusion

This commit is contained in:
Johannes Schönberger
2013-07-31 19:27:52 +02:00
parent 391e976157
commit 9f68e71412
+1 -1
View File
@@ -318,7 +318,7 @@ cdef inline double _kernel_otsu(Py_ssize_t* histo, double pop, dtype_t g,
# maximizing the between class variance
max_i = 0
q1 = histo[0] / pop
m1 = 0.
mu1 = 0.
max_sigma_b = 0.
for i in range(1, max_bin):