paws.core.operations.PROCESSING.BASIC package

Submodules

paws.core.operations.PROCESSING.BASIC.ArrayLog module

class paws.core.operations.PROCESSING.BASIC.ArrayLog.ArrayLog[source]

Bases: paws.core.operations.Operation.Operation

Take the base-10 logarithm of any array. Any elements with non-positive values are removed.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

paws.core.operations.PROCESSING.BASIC.ArrayMirrorHorizontal module

class paws.core.operations.PROCESSING.BASIC.ArrayMirrorHorizontal.ArrayMirrorHorizontal[source]

Bases: paws.core.operations.Operation.Operation

Mirror an array across a horizontal plane.

Exchanges indices along axis 0.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

paws.core.operations.PROCESSING.BASIC.ArrayMirrorVertical module

class paws.core.operations.PROCESSING.BASIC.ArrayMirrorVertical.ArrayMirrorVertical[source]

Bases: paws.core.operations.Operation.Operation

Mirror an array across a vertical plane.

Exchanges indices along axis 1.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

paws.core.operations.PROCESSING.BASIC.InvertBinaryArray module

class paws.core.operations.PROCESSING.BASIC.InvertBinaryArray.InvertBinaryArray[source]

Bases: paws.core.operations.Operation.Operation

Swap the zeros and ones of a binary array.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

paws.core.operations.PROCESSING.BASIC.LogY module

class paws.core.operations.PROCESSING.BASIC.LogY.LogY[source]

Bases: paws.core.operations.Operation.Operation

Take the base-10 logarithm of the second column of a n-by-2 array.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

paws.core.operations.PROCESSING.BASIC.Rotation module

class paws.core.operations.PROCESSING.BASIC.Rotation.Rotation[source]

Bases: paws.core.operations.Operation.Operation

Rotate an array by 90, 180, or 270 degrees.

run()[source]

Rotate self.inputs[‘image_data’] and save as self.outputs[‘image_data’]

paws.core.operations.PROCESSING.BASIC.Subtract module

class paws.core.operations.PROCESSING.BASIC.Subtract.Subtract[source]

Bases: paws.core.operations.Operation.Operation

Subtract one piece of data from another.

run()[source]

Operation.run() should use the Operation.inputs and set values for all of the items in Operation.outputs.

Module contents