Skip to content

Instantly share code, notes, and snippets.

@hhackbarth
hhackbarth / jetson_hardware_accelerated_opencv_4.5.3_with_ffmpeg_4.2.4.md
Last active January 22, 2024 09:19
Hardware accelerated OpenCV 4.5.3 build with FFMPEG 4.2.4 on NVidia Jetson

OpenCV 4.5.3 and FFMPEG 4.2.4 (with SRT support) hardware accelerated on NVidia Jetson

Unfortunately, NVidia Jetpack 4.5.x for Jetson Nano, Xavier etc. comes with OpenCV 4.1.1 and FFMPEG 3.4.8 compiled without any hardware (GPU, CUDA) acceleration and without SRT support.

Retrieving current OpenCV build information:

$ python3

import cv2
@martijnvermaat
martijnvermaat / ssh-agent-forwarding-screen.md
Created December 21, 2013 15:06
SSH agent forwarding and screen

SSH agent forwarding and screen

When connecting to a remote server via SSH it is often convenient to use SSH agent forwarding so that you don't need a separate keypair on that server for connecting to further servers.

This is enabled by adding the

ForwardAgent yes

option to any of your Host entries in ~/.ssh/config (or alternatively with the -A option). Don't set this option in a wildcard Host * section since any user on the remote server that can bypass file permissions can now als use keys loaded in your SSH agent. So only use this with hosts you trust.