Is there a faster way than the for loop to label matrix(3D array) in python?Is there a way to run Python on Android?What's the simplest way to print a Java array?Loop through an array in JavaScriptWhy are elementwise additions much faster in separate loops than in a combined loop?Loop through an array of strings in Bash?Why is reading lines from stdin much slower in C++ than Python?Why is it faster to process a sorted array than an unsorted array?Why does Python code run faster in a function?Is < faster than <=?Why is [] faster than list()?

How badly should I try to prevent a user from XSSing themselves?

meaning of 腰を落としている

Forgetting the musical notes while performing in concert

Expand and Contract

How does a dynamic QR code work?

Is it possible to create a QR code using text?

Could the museum Saturn V's be refitted for one more flight?

What Exploit Are These User Agents Trying to Use?

Was the old ablative pronoun "med" or "mēd"?

In Bayesian inference, why are some terms dropped from the posterior predictive?

Why were 5.25" floppy drives cheaper than 8"?

One verb to replace 'be a member of' a club

What do you call someone who asks many questions?

Does the Cone of Cold spell freeze water?

Are British MPs missing the point, with these 'Indicative Votes'?

Why didn't Boeing produce its own regional jet?

Do creatures with a listed speed of "0 ft., fly 30 ft. (hover)" ever touch the ground?

Bullying boss launched a smear campaign and made me unemployable

How long does parching touch last?

Avoiding the "not like other girls" trope?

Does int main() need a declaration on C++?

Different meanings of こわい

ssTTsSTtRrriinInnnnNNNIiinngg

Is it a bad idea to plug the other end of ESD strap to wall ground?



Is there a faster way than the for loop to label matrix(3D array) in python?


Is there a way to run Python on Android?What's the simplest way to print a Java array?Loop through an array in JavaScriptWhy are elementwise additions much faster in separate loops than in a combined loop?Loop through an array of strings in Bash?Why is reading lines from stdin much slower in C++ than Python?Why is it faster to process a sorted array than an unsorted array?Why does Python code run faster in a function?Is < faster than <=?Why is [] faster than list()?













2















I wrote a code for labeling matrix(3D array) in Python.
The concept of code is



  1. check the 2 by 2 by 2 matrix in 3D array(whatever size I want)


  2. if the matrix has 1, 2, and 3 as element, all elements in matrix would be changed into "max unique number + 1" in matrix.



    import numpy as np

    def label_A(input_field):
    labeling_A = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
    labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
    return labeling_A


This is a simple example code in matrix in 3D.



example = np.random.randint(0, 10, size=(10, 10, 10))
label_example = label_A(example)
label_example


In my view, the code itself has no problem and it works, actually. However, I am curious about that is there any faster way to do the same function for this?










share|improve this question
























  • Can you supply a sample input please?

    – Jello
    Mar 7 at 19:41











  • No need format the example, can you just make it copy/paste-able?

    – Jello
    Mar 7 at 20:42











  • Yes there is way, do the same in multiple threads. ^-^

    – BladeMight
    Mar 8 at 11:08















2















I wrote a code for labeling matrix(3D array) in Python.
The concept of code is



  1. check the 2 by 2 by 2 matrix in 3D array(whatever size I want)


  2. if the matrix has 1, 2, and 3 as element, all elements in matrix would be changed into "max unique number + 1" in matrix.



    import numpy as np

    def label_A(input_field):
    labeling_A = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
    labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
    return labeling_A


This is a simple example code in matrix in 3D.



example = np.random.randint(0, 10, size=(10, 10, 10))
label_example = label_A(example)
label_example


In my view, the code itself has no problem and it works, actually. However, I am curious about that is there any faster way to do the same function for this?










share|improve this question
























  • Can you supply a sample input please?

    – Jello
    Mar 7 at 19:41











  • No need format the example, can you just make it copy/paste-able?

    – Jello
    Mar 7 at 20:42











  • Yes there is way, do the same in multiple threads. ^-^

    – BladeMight
    Mar 8 at 11:08













2












2








2


1






I wrote a code for labeling matrix(3D array) in Python.
The concept of code is



  1. check the 2 by 2 by 2 matrix in 3D array(whatever size I want)


  2. if the matrix has 1, 2, and 3 as element, all elements in matrix would be changed into "max unique number + 1" in matrix.



    import numpy as np

    def label_A(input_field):
    labeling_A = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
    labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
    return labeling_A


This is a simple example code in matrix in 3D.



example = np.random.randint(0, 10, size=(10, 10, 10))
label_example = label_A(example)
label_example


In my view, the code itself has no problem and it works, actually. However, I am curious about that is there any faster way to do the same function for this?










share|improve this question
















I wrote a code for labeling matrix(3D array) in Python.
The concept of code is



  1. check the 2 by 2 by 2 matrix in 3D array(whatever size I want)


  2. if the matrix has 1, 2, and 3 as element, all elements in matrix would be changed into "max unique number + 1" in matrix.



    import numpy as np

    def label_A(input_field):
    labeling_A = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
    labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
    return labeling_A


This is a simple example code in matrix in 3D.



example = np.random.randint(0, 10, size=(10, 10, 10))
label_example = label_A(example)
label_example


In my view, the code itself has no problem and it works, actually. However, I am curious about that is there any faster way to do the same function for this?







python arrays performance numpy matrix






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 20:54







Newbie0105

















asked Mar 7 at 19:31









Newbie0105Newbie0105

206




206












  • Can you supply a sample input please?

    – Jello
    Mar 7 at 19:41











  • No need format the example, can you just make it copy/paste-able?

    – Jello
    Mar 7 at 20:42











  • Yes there is way, do the same in multiple threads. ^-^

    – BladeMight
    Mar 8 at 11:08

















  • Can you supply a sample input please?

    – Jello
    Mar 7 at 19:41











  • No need format the example, can you just make it copy/paste-able?

    – Jello
    Mar 7 at 20:42











  • Yes there is way, do the same in multiple threads. ^-^

    – BladeMight
    Mar 8 at 11:08
















Can you supply a sample input please?

– Jello
Mar 7 at 19:41





Can you supply a sample input please?

– Jello
Mar 7 at 19:41













No need format the example, can you just make it copy/paste-able?

– Jello
Mar 7 at 20:42





No need format the example, can you just make it copy/paste-able?

– Jello
Mar 7 at 20:42













Yes there is way, do the same in multiple threads. ^-^

– BladeMight
Mar 8 at 11:08





Yes there is way, do the same in multiple threads. ^-^

– BladeMight
Mar 8 at 11:08












2 Answers
2






active

oldest

votes


















1














This implementation returns the suggested result and handles a (140,140,140) sized tensor in 1.8 seconds.



import numpy as np
from scipy.signal import convolve

def strange_convolve(mat, f_shape, _value_set, replace_value):
_filter =np.ones(tuple(s*2-1 for s in f_shape))
replace_mat = np.ones(mat.shape)
for value in _value_set:
value_counts = convolve((mat==value),_filter,mode='same')
replace_mat*=(value_counts>0)
mat[replace_mat==1]=replace_value
return mat
example = np.random.randint(0, 8, size=(10, 10, 10))
print('same_output validation is '+str((strange_convolve(example,(2,2,2),(1,2,3),4) == label_A(example)).min()))

import time
example = np.random.randint(0, 10, size=(140, 140, 140))
timer = time.time()
strange_convolve(example,(2,2,2),(1,2,3),4)
print(time.time()-timer)


1.8871610164642334






share|improve this answer

























  • I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

    – GeorgeLPerkins
    Mar 11 at 18:51



















0














First, you have a couple of issues with your code that can be easily resolved and sped up.

For every loop, you are recalculating np.max(input_field)+1 three times.

The larger your matrix becomes, the impact becomes much more noticeable. Note the difference in tests A and B.



I tried running tests with the convolve example above, and while it was fast, the results were never the same as the other test (which in the setup below should have been identical). I believe it's looking for 1, 2, or 3 in a 3x3x3 block.



Label A with size of 10 --- 0:00.015628

Label B with size of 10 --- 0:00.015621

Label F with size of 10 --- 0:00.015628



Label A with size of 50 --- 0:15.984662

Label B with size of 50 --- 0:10.093478

Label F with size of 50 --- 0:02.265621



Label A with size of 80 --- 4:02.564660

Label B with size of 80 --- 2:29.439298

Label F with size of 80 --- 0:09.437868



------ Edited ------
The convolve method is definately faster, though I believe there is some issue with the code as given by Peter.



Label A with size of 10 : 00.013985
[[ 2 10 10 10 10 4 9 0 8 7]
[ 9 10 10 10 10 0 9 8 5 9]
[ 3 8 4 0 9 4 2 8 7 1]
[ 4 7 6 10 10 4 8 8 5 4]]

Label B with size of 10 : 00.014002
[[ 2 10 10 10 10 4 9 0 8 7]
[ 9 10 10 10 10 0 9 8 5 9]
[ 3 8 4 0 9 4 2 8 7 1]
[ 4 7 6 10 10 4 8 8 5 4]]

Label Flat with size of 10 : 00.020001
[[ 2 10 10 10 10 4 9 0 8 7]
[ 9 10 10 10 10 0 9 8 5 9]
[ 3 8 4 0 9 4 2 8 7 1]
[ 4 7 6 10 10 4 8 8 5 4]]

Label Convolve with size of 10 : 00.083996
[[ 2 2 10 8 4 10 9 0 8 7]
[ 9 10 0 4 7 10 9 10 10 9]
[ 3 8 4 0 9 4 2 10 7 10]
[ 4 7 10 5 0 4 8 10 5 4]]


The OP wanted all elements of the 2x2x2 matrix set to the higher value.

Note that convolve in it's present setup sets some single space elements and not in the 2x2x2 matrix pattern.



Below is my code:



import numpy as np
from scipy.signal import convolve
from pandas import datetime as dt

def label_A(input_field):
labeling_A = np.copy(input_field)
labeling_test = np.zeros((input_field.shape))
for i in range(0,input_field.shape[0]-1):
for j in range(0,input_field.shape[1]-1):
for k in range(0,input_field.shape[2]-1):
test_unit = input_field[i:i+2,j:j+2,k:k+2]
if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
return labeling_A


def label_B(input_field):
labeling_B = np.copy(input_field)
labeling_test = np.zeros((input_field.shape))
input_max = np.max(input_field)+1
for i in range(0,input_field.shape[0]-1):
for j in range(0,input_field.shape[1]-1):
for k in range(0,input_field.shape[2]-1):
test_unit = input_field[i:i+2,j:j+2,k:k+2]
if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
labeling_test[i:i+2,j:j+2,k:k+2] = input_max
labeling_B[labeling_test == input_max] = input_max
return labeling_B


def label_Convolve(input_field):
_filter =np.ones([2,2,2])
replace_mat = np.ones(input_field.shape)
input_max = np.max(input_field)+1
for value in (1,2,3):
value_counts = convolve((input_field==value),_filter,mode='same')
replace_mat*=(value_counts>0)
input_field[replace_mat==1] = input_max
return input_field


def flat_mat(matrix):
flat = matrix.flatten()
dest_mat = np.copy(flat)
mat_width = matrix.shape[0]
mat_length = matrix.shape[1]
mat_depth = matrix.shape[2]
input_max = np.max(matrix)+1

block = 0
for w in range(mat_width*(mat_length)*(mat_depth-1)):
if (w+1)%mat_width != 0:
if (block+1)%mat_length == 0:
pass
else:
set1 = flat[w:w+2]
set2 = flat[w+mat_width:w+2+mat_width]
set3 = flat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2]
set4 = flat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2]
fullblock = np.array([set1, set2, set3, set4])
blockset = np.unique(fullblock)
if set(blockset) >= set((1,2,3)):
dest_mat[w:w+2] = input_max
dest_mat[w+mat_width:w+2+mat_width] = input_max
dest_mat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2] = input_max
dest_mat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2] = input_max
else:
block += 1
return_mat = dest_mat.reshape(mat_width, mat_length, mat_depth)
return(return_mat)


def speedtest(matrix,matrixsize):
starttime = dt.now()
label_A_example = label_A(matrix)
print(f'Label A with size of matrixsize : dt.now() - starttime')
print(label_A_example[0][0:4], 'n')

starttime = dt.now()
label_B_example = label_B(matrix)
print(f'Label B with size of matrixsize : dt.now() - starttime')
print(label_B_example[0][0:4], 'n')

starttime = dt.now()
label_Inline_example = flat_mat(matrix)
print(f'Label Flat with size of matrixsize : dt.now() - starttime')
print(label_Inline_example[0][0:4], 'n')

starttime = dt.now()
label_Convolve_example = label_Convolve(matrix)
print(f'Label Convolve with size of matrixsize : dt.now() - starttime')
print(label_Convolve_example[0][0:4], 'n')

tests = 1 #each test will boost matrix size by 10
matrixsize = 10
for i in range(tests):
example = np.random.randint(0, 10, size=(matrixsize, matrixsize, matrixsize))
speedtest(example,matrixsize)
matrixsize += 10





share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55051473%2fis-there-a-faster-way-than-the-for-loop-to-label-matrix3d-array-in-python%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    This implementation returns the suggested result and handles a (140,140,140) sized tensor in 1.8 seconds.



    import numpy as np
    from scipy.signal import convolve

    def strange_convolve(mat, f_shape, _value_set, replace_value):
    _filter =np.ones(tuple(s*2-1 for s in f_shape))
    replace_mat = np.ones(mat.shape)
    for value in _value_set:
    value_counts = convolve((mat==value),_filter,mode='same')
    replace_mat*=(value_counts>0)
    mat[replace_mat==1]=replace_value
    return mat
    example = np.random.randint(0, 8, size=(10, 10, 10))
    print('same_output validation is '+str((strange_convolve(example,(2,2,2),(1,2,3),4) == label_A(example)).min()))

    import time
    example = np.random.randint(0, 10, size=(140, 140, 140))
    timer = time.time()
    strange_convolve(example,(2,2,2),(1,2,3),4)
    print(time.time()-timer)


    1.8871610164642334






    share|improve this answer

























    • I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

      – GeorgeLPerkins
      Mar 11 at 18:51
















    1














    This implementation returns the suggested result and handles a (140,140,140) sized tensor in 1.8 seconds.



    import numpy as np
    from scipy.signal import convolve

    def strange_convolve(mat, f_shape, _value_set, replace_value):
    _filter =np.ones(tuple(s*2-1 for s in f_shape))
    replace_mat = np.ones(mat.shape)
    for value in _value_set:
    value_counts = convolve((mat==value),_filter,mode='same')
    replace_mat*=(value_counts>0)
    mat[replace_mat==1]=replace_value
    return mat
    example = np.random.randint(0, 8, size=(10, 10, 10))
    print('same_output validation is '+str((strange_convolve(example,(2,2,2),(1,2,3),4) == label_A(example)).min()))

    import time
    example = np.random.randint(0, 10, size=(140, 140, 140))
    timer = time.time()
    strange_convolve(example,(2,2,2),(1,2,3),4)
    print(time.time()-timer)


    1.8871610164642334






    share|improve this answer

























    • I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

      – GeorgeLPerkins
      Mar 11 at 18:51














    1












    1








    1







    This implementation returns the suggested result and handles a (140,140,140) sized tensor in 1.8 seconds.



    import numpy as np
    from scipy.signal import convolve

    def strange_convolve(mat, f_shape, _value_set, replace_value):
    _filter =np.ones(tuple(s*2-1 for s in f_shape))
    replace_mat = np.ones(mat.shape)
    for value in _value_set:
    value_counts = convolve((mat==value),_filter,mode='same')
    replace_mat*=(value_counts>0)
    mat[replace_mat==1]=replace_value
    return mat
    example = np.random.randint(0, 8, size=(10, 10, 10))
    print('same_output validation is '+str((strange_convolve(example,(2,2,2),(1,2,3),4) == label_A(example)).min()))

    import time
    example = np.random.randint(0, 10, size=(140, 140, 140))
    timer = time.time()
    strange_convolve(example,(2,2,2),(1,2,3),4)
    print(time.time()-timer)


    1.8871610164642334






    share|improve this answer















    This implementation returns the suggested result and handles a (140,140,140) sized tensor in 1.8 seconds.



    import numpy as np
    from scipy.signal import convolve

    def strange_convolve(mat, f_shape, _value_set, replace_value):
    _filter =np.ones(tuple(s*2-1 for s in f_shape))
    replace_mat = np.ones(mat.shape)
    for value in _value_set:
    value_counts = convolve((mat==value),_filter,mode='same')
    replace_mat*=(value_counts>0)
    mat[replace_mat==1]=replace_value
    return mat
    example = np.random.randint(0, 8, size=(10, 10, 10))
    print('same_output validation is '+str((strange_convolve(example,(2,2,2),(1,2,3),4) == label_A(example)).min()))

    import time
    example = np.random.randint(0, 10, size=(140, 140, 140))
    timer = time.time()
    strange_convolve(example,(2,2,2),(1,2,3),4)
    print(time.time()-timer)


    1.8871610164642334







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Mar 16 at 10:36









    marc_s

    584k13011241270




    584k13011241270










    answered Mar 7 at 21:27









    Peter Mølgaard PallesenPeter Mølgaard Pallesen

    207211




    207211












    • I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

      – GeorgeLPerkins
      Mar 11 at 18:51


















    • I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

      – GeorgeLPerkins
      Mar 11 at 18:51

















    I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

    – GeorgeLPerkins
    Mar 11 at 18:51






    I've never used convolve, so I don't fully understand it, but I will say that this is definitely faster. However, there appears to be some issue with your current code. First: label_A is not included in your example. Second: s*2-1 creates a filter of 3x3x3. s*2-2 will give you the 2x2x2 block that the OP is looking for. Third: I haven't identified why, but using your setup even with the change, I still get some different results. I believe your method is definitely the way to go (and shows me I need to study and use scipy). Just a few issues to return the correct results.

    – GeorgeLPerkins
    Mar 11 at 18:51














    0














    First, you have a couple of issues with your code that can be easily resolved and sped up.

    For every loop, you are recalculating np.max(input_field)+1 three times.

    The larger your matrix becomes, the impact becomes much more noticeable. Note the difference in tests A and B.



    I tried running tests with the convolve example above, and while it was fast, the results were never the same as the other test (which in the setup below should have been identical). I believe it's looking for 1, 2, or 3 in a 3x3x3 block.



    Label A with size of 10 --- 0:00.015628

    Label B with size of 10 --- 0:00.015621

    Label F with size of 10 --- 0:00.015628



    Label A with size of 50 --- 0:15.984662

    Label B with size of 50 --- 0:10.093478

    Label F with size of 50 --- 0:02.265621



    Label A with size of 80 --- 4:02.564660

    Label B with size of 80 --- 2:29.439298

    Label F with size of 80 --- 0:09.437868



    ------ Edited ------
    The convolve method is definately faster, though I believe there is some issue with the code as given by Peter.



    Label A with size of 10 : 00.013985
    [[ 2 10 10 10 10 4 9 0 8 7]
    [ 9 10 10 10 10 0 9 8 5 9]
    [ 3 8 4 0 9 4 2 8 7 1]
    [ 4 7 6 10 10 4 8 8 5 4]]

    Label B with size of 10 : 00.014002
    [[ 2 10 10 10 10 4 9 0 8 7]
    [ 9 10 10 10 10 0 9 8 5 9]
    [ 3 8 4 0 9 4 2 8 7 1]
    [ 4 7 6 10 10 4 8 8 5 4]]

    Label Flat with size of 10 : 00.020001
    [[ 2 10 10 10 10 4 9 0 8 7]
    [ 9 10 10 10 10 0 9 8 5 9]
    [ 3 8 4 0 9 4 2 8 7 1]
    [ 4 7 6 10 10 4 8 8 5 4]]

    Label Convolve with size of 10 : 00.083996
    [[ 2 2 10 8 4 10 9 0 8 7]
    [ 9 10 0 4 7 10 9 10 10 9]
    [ 3 8 4 0 9 4 2 10 7 10]
    [ 4 7 10 5 0 4 8 10 5 4]]


    The OP wanted all elements of the 2x2x2 matrix set to the higher value.

    Note that convolve in it's present setup sets some single space elements and not in the 2x2x2 matrix pattern.



    Below is my code:



    import numpy as np
    from scipy.signal import convolve
    from pandas import datetime as dt

    def label_A(input_field):
    labeling_A = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
    labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
    return labeling_A


    def label_B(input_field):
    labeling_B = np.copy(input_field)
    labeling_test = np.zeros((input_field.shape))
    input_max = np.max(input_field)+1
    for i in range(0,input_field.shape[0]-1):
    for j in range(0,input_field.shape[1]-1):
    for k in range(0,input_field.shape[2]-1):
    test_unit = input_field[i:i+2,j:j+2,k:k+2]
    if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
    labeling_test[i:i+2,j:j+2,k:k+2] = input_max
    labeling_B[labeling_test == input_max] = input_max
    return labeling_B


    def label_Convolve(input_field):
    _filter =np.ones([2,2,2])
    replace_mat = np.ones(input_field.shape)
    input_max = np.max(input_field)+1
    for value in (1,2,3):
    value_counts = convolve((input_field==value),_filter,mode='same')
    replace_mat*=(value_counts>0)
    input_field[replace_mat==1] = input_max
    return input_field


    def flat_mat(matrix):
    flat = matrix.flatten()
    dest_mat = np.copy(flat)
    mat_width = matrix.shape[0]
    mat_length = matrix.shape[1]
    mat_depth = matrix.shape[2]
    input_max = np.max(matrix)+1

    block = 0
    for w in range(mat_width*(mat_length)*(mat_depth-1)):
    if (w+1)%mat_width != 0:
    if (block+1)%mat_length == 0:
    pass
    else:
    set1 = flat[w:w+2]
    set2 = flat[w+mat_width:w+2+mat_width]
    set3 = flat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2]
    set4 = flat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2]
    fullblock = np.array([set1, set2, set3, set4])
    blockset = np.unique(fullblock)
    if set(blockset) >= set((1,2,3)):
    dest_mat[w:w+2] = input_max
    dest_mat[w+mat_width:w+2+mat_width] = input_max
    dest_mat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2] = input_max
    dest_mat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2] = input_max
    else:
    block += 1
    return_mat = dest_mat.reshape(mat_width, mat_length, mat_depth)
    return(return_mat)


    def speedtest(matrix,matrixsize):
    starttime = dt.now()
    label_A_example = label_A(matrix)
    print(f'Label A with size of matrixsize : dt.now() - starttime')
    print(label_A_example[0][0:4], 'n')

    starttime = dt.now()
    label_B_example = label_B(matrix)
    print(f'Label B with size of matrixsize : dt.now() - starttime')
    print(label_B_example[0][0:4], 'n')

    starttime = dt.now()
    label_Inline_example = flat_mat(matrix)
    print(f'Label Flat with size of matrixsize : dt.now() - starttime')
    print(label_Inline_example[0][0:4], 'n')

    starttime = dt.now()
    label_Convolve_example = label_Convolve(matrix)
    print(f'Label Convolve with size of matrixsize : dt.now() - starttime')
    print(label_Convolve_example[0][0:4], 'n')

    tests = 1 #each test will boost matrix size by 10
    matrixsize = 10
    for i in range(tests):
    example = np.random.randint(0, 10, size=(matrixsize, matrixsize, matrixsize))
    speedtest(example,matrixsize)
    matrixsize += 10





    share|improve this answer





























      0














      First, you have a couple of issues with your code that can be easily resolved and sped up.

      For every loop, you are recalculating np.max(input_field)+1 three times.

      The larger your matrix becomes, the impact becomes much more noticeable. Note the difference in tests A and B.



      I tried running tests with the convolve example above, and while it was fast, the results were never the same as the other test (which in the setup below should have been identical). I believe it's looking for 1, 2, or 3 in a 3x3x3 block.



      Label A with size of 10 --- 0:00.015628

      Label B with size of 10 --- 0:00.015621

      Label F with size of 10 --- 0:00.015628



      Label A with size of 50 --- 0:15.984662

      Label B with size of 50 --- 0:10.093478

      Label F with size of 50 --- 0:02.265621



      Label A with size of 80 --- 4:02.564660

      Label B with size of 80 --- 2:29.439298

      Label F with size of 80 --- 0:09.437868



      ------ Edited ------
      The convolve method is definately faster, though I believe there is some issue with the code as given by Peter.



      Label A with size of 10 : 00.013985
      [[ 2 10 10 10 10 4 9 0 8 7]
      [ 9 10 10 10 10 0 9 8 5 9]
      [ 3 8 4 0 9 4 2 8 7 1]
      [ 4 7 6 10 10 4 8 8 5 4]]

      Label B with size of 10 : 00.014002
      [[ 2 10 10 10 10 4 9 0 8 7]
      [ 9 10 10 10 10 0 9 8 5 9]
      [ 3 8 4 0 9 4 2 8 7 1]
      [ 4 7 6 10 10 4 8 8 5 4]]

      Label Flat with size of 10 : 00.020001
      [[ 2 10 10 10 10 4 9 0 8 7]
      [ 9 10 10 10 10 0 9 8 5 9]
      [ 3 8 4 0 9 4 2 8 7 1]
      [ 4 7 6 10 10 4 8 8 5 4]]

      Label Convolve with size of 10 : 00.083996
      [[ 2 2 10 8 4 10 9 0 8 7]
      [ 9 10 0 4 7 10 9 10 10 9]
      [ 3 8 4 0 9 4 2 10 7 10]
      [ 4 7 10 5 0 4 8 10 5 4]]


      The OP wanted all elements of the 2x2x2 matrix set to the higher value.

      Note that convolve in it's present setup sets some single space elements and not in the 2x2x2 matrix pattern.



      Below is my code:



      import numpy as np
      from scipy.signal import convolve
      from pandas import datetime as dt

      def label_A(input_field):
      labeling_A = np.copy(input_field)
      labeling_test = np.zeros((input_field.shape))
      for i in range(0,input_field.shape[0]-1):
      for j in range(0,input_field.shape[1]-1):
      for k in range(0,input_field.shape[2]-1):
      test_unit = input_field[i:i+2,j:j+2,k:k+2]
      if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
      labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
      labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
      return labeling_A


      def label_B(input_field):
      labeling_B = np.copy(input_field)
      labeling_test = np.zeros((input_field.shape))
      input_max = np.max(input_field)+1
      for i in range(0,input_field.shape[0]-1):
      for j in range(0,input_field.shape[1]-1):
      for k in range(0,input_field.shape[2]-1):
      test_unit = input_field[i:i+2,j:j+2,k:k+2]
      if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
      labeling_test[i:i+2,j:j+2,k:k+2] = input_max
      labeling_B[labeling_test == input_max] = input_max
      return labeling_B


      def label_Convolve(input_field):
      _filter =np.ones([2,2,2])
      replace_mat = np.ones(input_field.shape)
      input_max = np.max(input_field)+1
      for value in (1,2,3):
      value_counts = convolve((input_field==value),_filter,mode='same')
      replace_mat*=(value_counts>0)
      input_field[replace_mat==1] = input_max
      return input_field


      def flat_mat(matrix):
      flat = matrix.flatten()
      dest_mat = np.copy(flat)
      mat_width = matrix.shape[0]
      mat_length = matrix.shape[1]
      mat_depth = matrix.shape[2]
      input_max = np.max(matrix)+1

      block = 0
      for w in range(mat_width*(mat_length)*(mat_depth-1)):
      if (w+1)%mat_width != 0:
      if (block+1)%mat_length == 0:
      pass
      else:
      set1 = flat[w:w+2]
      set2 = flat[w+mat_width:w+2+mat_width]
      set3 = flat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2]
      set4 = flat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2]
      fullblock = np.array([set1, set2, set3, set4])
      blockset = np.unique(fullblock)
      if set(blockset) >= set((1,2,3)):
      dest_mat[w:w+2] = input_max
      dest_mat[w+mat_width:w+2+mat_width] = input_max
      dest_mat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2] = input_max
      dest_mat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2] = input_max
      else:
      block += 1
      return_mat = dest_mat.reshape(mat_width, mat_length, mat_depth)
      return(return_mat)


      def speedtest(matrix,matrixsize):
      starttime = dt.now()
      label_A_example = label_A(matrix)
      print(f'Label A with size of matrixsize : dt.now() - starttime')
      print(label_A_example[0][0:4], 'n')

      starttime = dt.now()
      label_B_example = label_B(matrix)
      print(f'Label B with size of matrixsize : dt.now() - starttime')
      print(label_B_example[0][0:4], 'n')

      starttime = dt.now()
      label_Inline_example = flat_mat(matrix)
      print(f'Label Flat with size of matrixsize : dt.now() - starttime')
      print(label_Inline_example[0][0:4], 'n')

      starttime = dt.now()
      label_Convolve_example = label_Convolve(matrix)
      print(f'Label Convolve with size of matrixsize : dt.now() - starttime')
      print(label_Convolve_example[0][0:4], 'n')

      tests = 1 #each test will boost matrix size by 10
      matrixsize = 10
      for i in range(tests):
      example = np.random.randint(0, 10, size=(matrixsize, matrixsize, matrixsize))
      speedtest(example,matrixsize)
      matrixsize += 10





      share|improve this answer



























        0












        0








        0







        First, you have a couple of issues with your code that can be easily resolved and sped up.

        For every loop, you are recalculating np.max(input_field)+1 three times.

        The larger your matrix becomes, the impact becomes much more noticeable. Note the difference in tests A and B.



        I tried running tests with the convolve example above, and while it was fast, the results were never the same as the other test (which in the setup below should have been identical). I believe it's looking for 1, 2, or 3 in a 3x3x3 block.



        Label A with size of 10 --- 0:00.015628

        Label B with size of 10 --- 0:00.015621

        Label F with size of 10 --- 0:00.015628



        Label A with size of 50 --- 0:15.984662

        Label B with size of 50 --- 0:10.093478

        Label F with size of 50 --- 0:02.265621



        Label A with size of 80 --- 4:02.564660

        Label B with size of 80 --- 2:29.439298

        Label F with size of 80 --- 0:09.437868



        ------ Edited ------
        The convolve method is definately faster, though I believe there is some issue with the code as given by Peter.



        Label A with size of 10 : 00.013985
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label B with size of 10 : 00.014002
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label Flat with size of 10 : 00.020001
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label Convolve with size of 10 : 00.083996
        [[ 2 2 10 8 4 10 9 0 8 7]
        [ 9 10 0 4 7 10 9 10 10 9]
        [ 3 8 4 0 9 4 2 10 7 10]
        [ 4 7 10 5 0 4 8 10 5 4]]


        The OP wanted all elements of the 2x2x2 matrix set to the higher value.

        Note that convolve in it's present setup sets some single space elements and not in the 2x2x2 matrix pattern.



        Below is my code:



        import numpy as np
        from scipy.signal import convolve
        from pandas import datetime as dt

        def label_A(input_field):
        labeling_A = np.copy(input_field)
        labeling_test = np.zeros((input_field.shape))
        for i in range(0,input_field.shape[0]-1):
        for j in range(0,input_field.shape[1]-1):
        for k in range(0,input_field.shape[2]-1):
        test_unit = input_field[i:i+2,j:j+2,k:k+2]
        if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
        labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
        labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
        return labeling_A


        def label_B(input_field):
        labeling_B = np.copy(input_field)
        labeling_test = np.zeros((input_field.shape))
        input_max = np.max(input_field)+1
        for i in range(0,input_field.shape[0]-1):
        for j in range(0,input_field.shape[1]-1):
        for k in range(0,input_field.shape[2]-1):
        test_unit = input_field[i:i+2,j:j+2,k:k+2]
        if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
        labeling_test[i:i+2,j:j+2,k:k+2] = input_max
        labeling_B[labeling_test == input_max] = input_max
        return labeling_B


        def label_Convolve(input_field):
        _filter =np.ones([2,2,2])
        replace_mat = np.ones(input_field.shape)
        input_max = np.max(input_field)+1
        for value in (1,2,3):
        value_counts = convolve((input_field==value),_filter,mode='same')
        replace_mat*=(value_counts>0)
        input_field[replace_mat==1] = input_max
        return input_field


        def flat_mat(matrix):
        flat = matrix.flatten()
        dest_mat = np.copy(flat)
        mat_width = matrix.shape[0]
        mat_length = matrix.shape[1]
        mat_depth = matrix.shape[2]
        input_max = np.max(matrix)+1

        block = 0
        for w in range(mat_width*(mat_length)*(mat_depth-1)):
        if (w+1)%mat_width != 0:
        if (block+1)%mat_length == 0:
        pass
        else:
        set1 = flat[w:w+2]
        set2 = flat[w+mat_width:w+2+mat_width]
        set3 = flat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2]
        set4 = flat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2]
        fullblock = np.array([set1, set2, set3, set4])
        blockset = np.unique(fullblock)
        if set(blockset) >= set((1,2,3)):
        dest_mat[w:w+2] = input_max
        dest_mat[w+mat_width:w+2+mat_width] = input_max
        dest_mat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2] = input_max
        dest_mat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2] = input_max
        else:
        block += 1
        return_mat = dest_mat.reshape(mat_width, mat_length, mat_depth)
        return(return_mat)


        def speedtest(matrix,matrixsize):
        starttime = dt.now()
        label_A_example = label_A(matrix)
        print(f'Label A with size of matrixsize : dt.now() - starttime')
        print(label_A_example[0][0:4], 'n')

        starttime = dt.now()
        label_B_example = label_B(matrix)
        print(f'Label B with size of matrixsize : dt.now() - starttime')
        print(label_B_example[0][0:4], 'n')

        starttime = dt.now()
        label_Inline_example = flat_mat(matrix)
        print(f'Label Flat with size of matrixsize : dt.now() - starttime')
        print(label_Inline_example[0][0:4], 'n')

        starttime = dt.now()
        label_Convolve_example = label_Convolve(matrix)
        print(f'Label Convolve with size of matrixsize : dt.now() - starttime')
        print(label_Convolve_example[0][0:4], 'n')

        tests = 1 #each test will boost matrix size by 10
        matrixsize = 10
        for i in range(tests):
        example = np.random.randint(0, 10, size=(matrixsize, matrixsize, matrixsize))
        speedtest(example,matrixsize)
        matrixsize += 10





        share|improve this answer















        First, you have a couple of issues with your code that can be easily resolved and sped up.

        For every loop, you are recalculating np.max(input_field)+1 three times.

        The larger your matrix becomes, the impact becomes much more noticeable. Note the difference in tests A and B.



        I tried running tests with the convolve example above, and while it was fast, the results were never the same as the other test (which in the setup below should have been identical). I believe it's looking for 1, 2, or 3 in a 3x3x3 block.



        Label A with size of 10 --- 0:00.015628

        Label B with size of 10 --- 0:00.015621

        Label F with size of 10 --- 0:00.015628



        Label A with size of 50 --- 0:15.984662

        Label B with size of 50 --- 0:10.093478

        Label F with size of 50 --- 0:02.265621



        Label A with size of 80 --- 4:02.564660

        Label B with size of 80 --- 2:29.439298

        Label F with size of 80 --- 0:09.437868



        ------ Edited ------
        The convolve method is definately faster, though I believe there is some issue with the code as given by Peter.



        Label A with size of 10 : 00.013985
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label B with size of 10 : 00.014002
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label Flat with size of 10 : 00.020001
        [[ 2 10 10 10 10 4 9 0 8 7]
        [ 9 10 10 10 10 0 9 8 5 9]
        [ 3 8 4 0 9 4 2 8 7 1]
        [ 4 7 6 10 10 4 8 8 5 4]]

        Label Convolve with size of 10 : 00.083996
        [[ 2 2 10 8 4 10 9 0 8 7]
        [ 9 10 0 4 7 10 9 10 10 9]
        [ 3 8 4 0 9 4 2 10 7 10]
        [ 4 7 10 5 0 4 8 10 5 4]]


        The OP wanted all elements of the 2x2x2 matrix set to the higher value.

        Note that convolve in it's present setup sets some single space elements and not in the 2x2x2 matrix pattern.



        Below is my code:



        import numpy as np
        from scipy.signal import convolve
        from pandas import datetime as dt

        def label_A(input_field):
        labeling_A = np.copy(input_field)
        labeling_test = np.zeros((input_field.shape))
        for i in range(0,input_field.shape[0]-1):
        for j in range(0,input_field.shape[1]-1):
        for k in range(0,input_field.shape[2]-1):
        test_unit = input_field[i:i+2,j:j+2,k:k+2]
        if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
        labeling_test[i:i+2,j:j+2,k:k+2] = np.max(input_field)+1
        labeling_A[labeling_test == np.max(input_field)+1] = np.max(input_field)+1
        return labeling_A


        def label_B(input_field):
        labeling_B = np.copy(input_field)
        labeling_test = np.zeros((input_field.shape))
        input_max = np.max(input_field)+1
        for i in range(0,input_field.shape[0]-1):
        for j in range(0,input_field.shape[1]-1):
        for k in range(0,input_field.shape[2]-1):
        test_unit = input_field[i:i+2,j:j+2,k:k+2]
        if set(np.unique(test_unit).astype(int)) >= set((1,2,3)):
        labeling_test[i:i+2,j:j+2,k:k+2] = input_max
        labeling_B[labeling_test == input_max] = input_max
        return labeling_B


        def label_Convolve(input_field):
        _filter =np.ones([2,2,2])
        replace_mat = np.ones(input_field.shape)
        input_max = np.max(input_field)+1
        for value in (1,2,3):
        value_counts = convolve((input_field==value),_filter,mode='same')
        replace_mat*=(value_counts>0)
        input_field[replace_mat==1] = input_max
        return input_field


        def flat_mat(matrix):
        flat = matrix.flatten()
        dest_mat = np.copy(flat)
        mat_width = matrix.shape[0]
        mat_length = matrix.shape[1]
        mat_depth = matrix.shape[2]
        input_max = np.max(matrix)+1

        block = 0
        for w in range(mat_width*(mat_length)*(mat_depth-1)):
        if (w+1)%mat_width != 0:
        if (block+1)%mat_length == 0:
        pass
        else:
        set1 = flat[w:w+2]
        set2 = flat[w+mat_width:w+2+mat_width]
        set3 = flat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2]
        set4 = flat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2]
        fullblock = np.array([set1, set2, set3, set4])
        blockset = np.unique(fullblock)
        if set(blockset) >= set((1,2,3)):
        dest_mat[w:w+2] = input_max
        dest_mat[w+mat_width:w+2+mat_width] = input_max
        dest_mat[w+(mat_width*mat_length):w+(mat_width*mat_length)+2] = input_max
        dest_mat[w+(mat_width*mat_length)+mat_width:w+(mat_width*mat_length)+mat_width+2] = input_max
        else:
        block += 1
        return_mat = dest_mat.reshape(mat_width, mat_length, mat_depth)
        return(return_mat)


        def speedtest(matrix,matrixsize):
        starttime = dt.now()
        label_A_example = label_A(matrix)
        print(f'Label A with size of matrixsize : dt.now() - starttime')
        print(label_A_example[0][0:4], 'n')

        starttime = dt.now()
        label_B_example = label_B(matrix)
        print(f'Label B with size of matrixsize : dt.now() - starttime')
        print(label_B_example[0][0:4], 'n')

        starttime = dt.now()
        label_Inline_example = flat_mat(matrix)
        print(f'Label Flat with size of matrixsize : dt.now() - starttime')
        print(label_Inline_example[0][0:4], 'n')

        starttime = dt.now()
        label_Convolve_example = label_Convolve(matrix)
        print(f'Label Convolve with size of matrixsize : dt.now() - starttime')
        print(label_Convolve_example[0][0:4], 'n')

        tests = 1 #each test will boost matrix size by 10
        matrixsize = 10
        for i in range(tests):
        example = np.random.randint(0, 10, size=(matrixsize, matrixsize, matrixsize))
        speedtest(example,matrixsize)
        matrixsize += 10






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 11 at 19:29

























        answered Mar 8 at 21:59









        GeorgeLPerkinsGeorgeLPerkins

        380316




        380316



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55051473%2fis-there-a-faster-way-than-the-for-loop-to-label-matrix3d-array-in-python%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved