Skip to content

Instantly share code, notes, and snippets.

@victormurcia
Created October 29, 2022 23:13
Show Gist options
  • Save victormurcia/4f7554850a32c21378fe028e1d9d52b5 to your computer and use it in GitHub Desktop.
Save victormurcia/4f7554850a32c21378fe028e1d9d52b5 to your computer and use it in GitHub Desktop.
load bc image
#Get the image from the current working directory
img_name = glob.glob('*.jpg')[0]
#Load the image into my working environment
img = cv2.imread(img_name)
#Show the image
plt.imshow(img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment