Skip to content

Instantly share code, notes, and snippets.

@sjaustirni
sjaustirni / new_ml.ipynb
Created December 6, 2022 11:00
new_ml.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjaustirni
sjaustirni / main.py
Created September 11, 2019 08:56
MED3 Point Processing
import cv2
import numpy as np
# The RGB image array
input_image = cv2.imread('lion.jpg')
def show_image(image, source):
cv2.imshow(source, image)