Example #1
0
def getGrayScaleMorphologicalOperation(available_app, original_dom_document):
    """
    Let ball as only available structype.
    Split the application according to its filter dilate, erode, opening, closing.
    """
    the_root = original_dom_document
    renameValueField(the_root, 'structype.ball.xradius', 'name', 'The Structuring Element Radius')
    renameValueField(the_root, 'structype.ball.xradius', 'description', 'The Structuring Element Radius')
    remove_dependent_choices(the_root, 'structype', 'ball')
    remove_other_choices(the_root, 'structype', 'ball')
    remove_parameter_by_key(the_root, 'structype.ball.yradius')

    split = defaultSplit(available_app, the_root, 'filter')
    return split
Example #2
0
def getGrayScaleMorphologicalOperation(available_app, original_dom_document):
    """
    Let ball as only available structype.
    Split the application according to its filter dilate, erode, opening, closing.
    """
    the_root = original_dom_document
    renameValueField(the_root, "structype.ball.xradius", "name", "The Structuring Element Radius")
    renameValueField(the_root, "structype.ball.xradius", "description", "The Structuring Element Radius")
    remove_dependent_choices(the_root, "structype", "ball")
    remove_other_choices(the_root, "structype", "ball")
    remove_parameter_by_key(the_root, "structype.ball.yradius")

    split = defaultSplit(available_app, the_root, "filter")
    return split
Example #3
0
def getBinaryMorphologicalOperation(available_app, original_dom_document):
    """
    Let ball as only available structype.
    Split the application according to its filter dilate, erode, opening, closing.
    """
    the_root = original_dom_document
    renameValueField(the_root, 'structype.ball.xradius', 'name', 'The Structuring Element Radius')
    renameValueField(the_root, 'structype.ball.xradius', 'description', 'The Structuring Element Radius')
    remove_dependent_choices(the_root, 'structype', 'ball')
    remove_other_choices(the_root, 'structype', 'ball')
    remove_dependent_choices(the_root, 'filter', 'dilate')
    remove_parameter_by_key(the_root, 'structype.ball.yradius')
    the_list = defaultSplit(available_app, the_root, 'filter')
    return the_list
Example #4
0
def getRefineSensorModel(available_app, original_dom_document):
    the_root = original_dom_document
    remove_dependent_choices(the_root, 'map', 'wgs')
    remove_other_choices(the_root, 'map', 'wgs')
    defaultWrite(available_app, the_root)
    return [the_root]
Example #5
0
def getRefineSensorModel(available_app, original_dom_document):
    the_root = original_dom_document
    remove_dependent_choices(the_root, "map", "wgs")
    remove_other_choices(the_root, "map", "wgs")
    defaultWrite(available_app, the_root)
    return [the_root]
Example #6
0
def getGenerateRPCSensorModel(available_app, original_dom_document):
    the_root = original_dom_document
    remove_dependent_choices(the_root, 'map', 'wgs')
    remove_other_choices(the_root, 'map', 'wgs')
    defaultWrite(available_app, the_root)
    return [the_root]