765ffa2c28709627c40e535cd59e0279a3f12a53,lazyflow/operators/ioOperators/ioOperators.py,OpH5WriterBigDataset,OpH5WriterBigDataset_1,#,416

Before Change


    name = "H5 File Writer BigDataset"
    category = "Output"

    inputSlots = [InputSlot("hdf5File"), // Must be an already-open hdf5File (or group) for writing to
                  InputSlot("hdf5Path", stype = "string"),
                  InputSlot("Image"),
                  InputSlot("CompressionEnabled", value=False), // h5py uses single-threaded gzip comression, which really slows down export.
                  InputSlot("BatchSize", optional=True)]

    outputSlots = [OutputSlot("WriteImage")]

    loggingName = __name__ + ".OpH5WriterBigDataset"

After Change


    name = "H5 File Writer BigDataset"
    category = "Output"

    hdf5File = InputSlot() // Must be an already-open hdf5File (or group) for writing to
    hdf5Path = InputSlot()
    Image = InputSlot()
    CompressionEnabled = InputSlot(value=False) // h5py uses single-threaded gzip comression, which really slows down export.
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 9

Instances


Project Name: ilastik/ilastik
Commit Name: 765ffa2c28709627c40e535cd59e0279a3f12a53
Time: 2017-08-16
Author: bergs@janelia.hhmi.org
File Name: lazyflow/operators/ioOperators/ioOperators.py
Class Name: OpH5WriterBigDataset
Method Name: OpH5WriterBigDataset_1


Project Name: ilastik/ilastik
Commit Name: 0e0c63b5f9606c917ee7f7396f1f2b55b7d10535
Time: 2013-04-11
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: lazyflow/operators/opSlicedBlockedArrayCache.py
Class Name: OpSlicedBlockedArrayCache
Method Name: OpSlicedBlockedArrayCache_1


Project Name: ilastik/ilastik
Commit Name: 658910d9bea0832a7fb1fbba78dd405d1f224b44
Time: 2013-04-11
Author: thorben.kroeger@iwr.uni-heidelberg.de
File Name: lazyflow/operators/opBlockedArrayCache.py
Class Name: OpBlockedArrayCache
Method Name: OpBlockedArrayCache_1