0c1057b85f6981f7262cdb52f89f2099b96f4891,ilastik/applets/thresholdTwoLevels/_OpObjectsSegment.py,OpObjectsSegment,setupOutputs,#OpObjectsSegment#,90

Before Change


        if len(shape) < 5:
            raise ValueError("Prediction maps must be a full 5d volume (txyzc)")
        tags = self.LabelImage.meta.axistags
        haveAxes = [tags.index(c) == i for i, c in enumerate("txyzc")]
        if not all(haveAxes):
            raise ValueError("Prediction maps have the wrong axes order (expected: txyzc)")

        // bounding boxes are just one element arrays of type object

After Change


        if len(shape) < 5:
            raise ValueError("Prediction maps must be a full 5d volume (txyzc)")
        tags = self.LabelImage.meta.getAxisKeys()
        tags = "".join(tags)
        haveAxes =  tags == "txyzc"
        if not haveAxes:
            raise ValueError("Label image has wrong axes order"
                             "(expected: txyzc, got: {})".format(tags))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: ilastik/ilastik
Commit Name: 0c1057b85f6981f7262cdb52f89f2099b96f4891
Time: 2014-04-24
Author: webmaster@burgerdev.de
File Name: ilastik/applets/thresholdTwoLevels/_OpObjectsSegment.py
Class Name: OpObjectsSegment
Method Name: setupOutputs


Project Name: ilastik/ilastik
Commit Name: 0c1057b85f6981f7262cdb52f89f2099b96f4891
Time: 2014-04-24
Author: webmaster@burgerdev.de
File Name: ilastik/applets/thresholdTwoLevels/_OpGraphCut.py
Class Name: OpGraphCut
Method Name: setupOutputs


Project Name: EducationalTestingService/skll
Commit Name: 143480409bfe23e3c7d41f5fe5c67207ef0096c5
Time: 2017-11-10
Author: nmadnani@ets.org
File Name: tests/test_input.py
Class Name:
Method Name: setup