Python Forum
Numpy, array(2d,bool), flipping regions.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Numpy, array(2d,bool), flipping regions.
#1
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 ?

			## ... ... ...

			[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)
				# ???

			## ... ... ...
Reply
#2
You could try this perhaps (not sure it is the best solution)
>>> a = np.array([0,1,1,0,0,1,0,1,0,1,1,1], dtype=bool)
>>> a
array([False,  True,  True, False, False,  True, False,  True, False,
        True,  True,  True])
>>> a[3:7] ^= np.ones(a[3:7].shape, dtype=bool)
>>> a
array([False,  True,  True,  True,  True, False,  True,  True, False,
        True,  True,  True])
>>> 
Or this
>>> import numpy as np
>>> a = np.array([0,1,1,0,0,1,0,1,0,1,1,1], dtype=bool)
>>> a
array([False,  True,  True, False, False,  True, False,  True, False,
        True,  True,  True])
>>> a[3:7] = np.logical_not(a[3:7])
>>> a
array([False,  True,  True,  True,  True, False,  True,  True, False,
        True,  True,  True])
« We can solve any problem by introducing an extra level of indirection »
Reply
#3
Aha, that simplifies things. Thanks
def npArray_test3():

	def create_mask(shape):
		_r_,_c_ = range(2)
		(rmax, cmax) = shape
		m = np.ones(shape, dtype=bool)
		m[1:rmax-1, 1:cmax-1] = np.zeros(m[1:rmax-1, 1:cmax-1].shape, dtype=bool)
		return m

	a = np.arange(4*5).reshape(4, 5)
	print(a)

	m = create_mask(a.shape)
	print(m)

	np.putmask(a, m, -(a+1))
	print(a)
Output:
[[ 0 1 2 3 4] [ 5 6 7 8 9] [10 11 12 13 14] [15 16 17 18 19]] [[ True True True True True] [ True False False False True] [ True False False False True] [ True True True True True]] [[ -1 -2 -3 -4 -5] [ -6 6 7 8 -10] [-11 11 12 13 -15] [-16 -17 -18 -19 -20]]
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  python code to calculate mean of an array of numbers using numpy viren 3 1,099 May-29-2024, 04:49 PM
Last Post: Gribouillis
  Convert numpy array to image without loading it into RAM. DreamingInsanity 7 8,813 Feb-08-2024, 09:38 AM
Last Post: paul18fr
  IPython errors for numpy array min/max methods muelaner 1 1,449 Nov-04-2023, 09:22 PM
Last Post: snippsat
  Expand the range of a NumPy array? PythonNPC 0 1,669 Jan-31-2023, 02:41 AM
Last Post: PythonNPC
  Change a numpy array to a dataframe Led_Zeppelin 3 2,505 Jan-26-2023, 09:01 PM
Last Post: deanhystad
  from numpy array to csv - rounding SchroedingersLion 6 5,810 Nov-14-2022, 09:09 PM
Last Post: deanhystad
  numpy.array has no attribute head Led_Zeppelin 1 3,075 Jul-13-2022, 12:56 AM
Last Post: Led_Zeppelin
  Seeing al the data in a dataframe or numpy.array Led_Zeppelin 1 1,684 Jul-11-2022, 08:54 PM
Last Post: Larz60+
  go over and search in numpy array faster caro 7 3,137 Jun-20-2022, 04:54 PM
Last Post: deanhystad
  Creating a numpy array from specific values of a spreadsheet column JulianZ 0 1,688 Apr-19-2022, 07:36 AM
Last Post: JulianZ

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020