Oct-26-2024, 06:42 PM
I got a numpy 2d bool array. And like to flip(True/False) some array regions. But have not found any hints in numpy docs.
So ... Is there some numpy-way to flip the values in a given region inside an numpy-array ?
So ... Is there some numpy-way to flip the values in a given region inside an numpy-array ?
## ... ... ... [maxR, maxC] = tmp_nArray.shape [maxR, maxC] = [maxR-1, maxC-1] if(0): ## set corners -- not working due to turdsize > 1. tmp_nArray[0, 0] = True tmp_nArray[0, maxC] = True tmp_nArray[maxR, 0] = True tmp_nArray[maxR, maxC] = True if(0): ## try turning all borders to white/true. -- nope, now other corners go wrong. tmp_nArray[0, 0:maxC] = True tmp_nArray[maxR, 0:maxC] = True tmp_nArray[0:maxR, 0] = True tmp_nArray[0:maxR, maxC] = True if(1): ## try flipping values for the borders. (do corners only ones) # ??? ## ... ... ...