March 2019
Intermediate to advanced
532 pages
13h 2m
English
There are some operations that can be performed at bit level using bitwise operators, which can be used to manipulate the values for comparison and calculations. These bitwise operations are simple, and are quick to calculate. This means that they are a useful tool when working on images.
Bitwise operations include AND, OR, NOT, and XOR.
In order to explain how these operations work, look at the output of the bitwise_operations.py script in the following screenshot:
In order to play with bitwise ...