Skip to content

Instantly share code, notes, and snippets.

View maderix's full-sized avatar

Manjeet Singh maderix

View GitHub Profile
@maderix
maderix / crop_video.py
Created April 18, 2020 11:36
Get frames from video file, crop and save them
import cv2
cap = cv2.VideoCapture('video.mp4')
count = 0
while cap.isOpened():
ret, frame = cap.read()
if ret:
h,w = frame.shape[0],frame.shape[1]
if h > w:
@maderix
maderix / ray_tracer.ipynb
Created May 31, 2020 17:10
ray_tracer.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@maderix
maderix / python_gpu_ray_tracing.ipynb
Created June 5, 2020 11:52
python_gpu_ray_tracing.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@maderix
maderix / numpy_raytracer.ipynb
Last active June 5, 2020 11:58
numpy_raytracer.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.