Commit 437cc98b authored by Andrey Filippov's avatar Andrey Filippov
Browse files

comments fix

parent bfa720f4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
from __future__ import print_function
from __future__ import division
# Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
@@ -137,7 +136,7 @@ def get_fold_indices(x, n = 8):
    return ind

def create_fold(n = 8): # n - DCT and window size
    fold_index = (n*n) * [4*[0]] # new int[n*n][4];
#    fold_index = (n*n) * [4*[0]] # new int[n*n][4];
    fold_index = []
    for _ in range(n*n):
        fold_index.append([0,0,0,0])
+0 −1
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
from __future__ import print_function
from __future__ import division
# Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
+0 −1
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
from __future__ import print_function
from __future__ import division
# Copyright (C) 2017, Elphel.inc.
# Helper module create AHCI registers type/default data
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or