Skip to content

Instantly share code, notes, and snippets.

@ritvikmath
Created December 20, 2019 15:42
Show Gist options
  • Select an option

  • Save ritvikmath/d0293c683365e9beadf797737909c50c to your computer and use it in GitHub Desktop.

Select an option

Save ritvikmath/d0293c683365e9beadf797737909c50c to your computer and use it in GitHub Desktop.
#create a square mask around the top right of the image
square_mask = (x<200)&(x>100)&(y<600)&(y>500)
#make the square red
copyImg[square_mask] = [255,0,0]
#show image
plt.imshow(copyImg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment