c7d1624e3a358f12f7ca2319592cf90384b6cacf,ilastik-shell/applets/dataSelection/opInputDataReader.py,,,#,73

Before Change


    numpy.save(testDataFileName, a)
    
    // Now read back our test data using an OpInputDataReader operator
    graph = lazyflow.graph.Graph()
    reader = OpInputDataReader(graph=graph)
    reader.FileName.setValue(testDataFileName)

    // Read the entire file and verify the contents

After Change



    // Grab a section of the h5 data
    h5Data = h5Reader.Output[0,0,:,:,:].wait()
    assert h5Data.shape == (1,1,3,4,5)
    // (Just check part of the data)
    for k in range(0,shape[2]):
        for l in range(0,shape[3]):
            for m in range(0,shape[4]):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: ilastik/ilastik
Commit Name: c7d1624e3a358f12f7ca2319592cf90384b6cacf
Time: 2012-05-01
Author: bergs@janelia.hhmi.org
File Name: ilastik-shell/applets/dataSelection/opInputDataReader.py
Class Name:
Method Name:


Project Name: epfl-lts2/pygsp
Commit Name: 00964b43ff0efa5b0568a7cb8c222bb9a60a2fcf
Time: 2019-03-05
Author: michael.defferrard@epfl.ch
File Name: pygsp/tests/test_graphs.py
Class Name: TestCase
Method Name: test_degree


Project Name: ilastik/ilastik
Commit Name: e630df418745107ae3ff13d55c06aac050d7626d
Time: 2019-07-26
Author: tomaz.vieira@embl.de
File Name: tests/test_applets/dataSelection/testOpDataSelection.py
Class Name: TestOpDataSelection_Basic_native_3D
Method Name: test3DProjectLocalData