numpy.unpackbits(myarray, axis=None) Unpacks elements of a uint8 array into a binary-valued output array. Each element
numpy.bitwise_and(x1, x2[, out]) = Compute the bit-wise AND of two arrays element-wise. Computes the bit-wise AND of
numpy.invert(x[, out]) = Compute bit-wise inversion, or bit-wise NOT, element-wise. Computes the bit-wise NOT of the underlying
numpy.bitwise_xor(x1, x2[, out]) = Compute the bit-wise XOR of two arrays element-wise. Computes the bit-wise XOR of
numpy.packbits(myarray, axis=None) Packs the elements of a binary-valued array into bits in a uint8 array. The result
numpy.right_shift(x1, x2[, out]) = Shift the bits of an integer to the right. Bits are shifted to the right x2
numpy.bitwise_or(x1, x2[, out]) = Compute the bit-wise OR of two arrays element-wise. Computes the bit-wise OR of the
numpy.left_shift(x1, x2[, out]) = Shift the bits of an integer to the left. Bits are shifted to the left by appending