Skip to content

Instantly share code, notes, and snippets.

@AwokeKnowing
AwokeKnowing / Install_OpenCV4_CUDA11_CUDNN8.md
Created November 12, 2021 01:22 — forked from raulqf/Install_OpenCV4_CUDA11_CUDNN8.md
How to install OpenCV 4.5 with CUDA 11.2 in Ubuntu 20.04

How to install OpenCV 4.5.2 with CUDA 11.2 and CUDNN 8.2 in Ubuntu 20.04

First of all install update and upgrade your system:

    $ sudo apt update
    $ sudo apt upgrade

Then, install required libraries:

@AwokeKnowing
AwokeKnowing / Comm.gd
Created September 25, 2023 20:37 — forked from rcurtis/Comm.gd
extends Node
var client
var wrapped_client
var connected = false
var message_center
var should_connect = false
func _ready():
@AwokeKnowing
AwokeKnowing / cupy_gl_interop.py
Created March 20, 2024 21:46 — forked from keckj/cupy_gl_interop.py
CuPy/OpenGL interop example
import sys
from cuda import cudart
import numpy as np
import cupy as cp
import pyrr
import glfw