BinaryImageOnesComplement Operator
Implements the operator ~. The complement of an image is the image where a cell is filled in if and only if the original image has the cell empty.
Namespace: ProjectLCore.GamePiecesAssembly: ProjectLCore (in ProjectLCore.dll) Version: 1.0.0+d0f5e2a7a5f4bb0431970f279d2f79d24b15d256
public static BinaryImage operator ~(
BinaryImage image
)
- image BinaryImage
- The operator on the image.
BinaryImage
The complement of the image.
##### .....
##.## ..#..
~ ##..# == ..##.
#...# .###.
##..# ..##.