Skip to content

Instantly share code, notes, and snippets.

View LogWell's full-sized avatar

LuoJinhao LogWell

View GitHub Profile
@madelinegannon
madelinegannon / setup-azure-kinect-on-jetson-x-nx.md
Last active April 18, 2024 17:03
Notes on Setting up the Microsoft Azure Kinect on Ubuntu 18.04
@tin2tin
tin2tin / Run_Script_in_PyConsole.py
Last active May 11, 2021 18:06
Run Script in the Python Console
bl_info = {
"name": "Run Script in PyConsole",
"author": "CoDEmanX",
"version": (1, 0),
"blender": (2, 80, 0),
"location": "Python Console > Console > Run Script",
"description": "Execute the code of a textblock within the python console.",
"warning": "",
"wiki_url": "",
"tracker_url": "",
@raulqf
raulqf / Install_OpenCV4_CUDA11_CUDNN8.md
Last active April 18, 2024 19:53
How to install OpenCV 4.5 with CUDA 11.2 in Ubuntu 22.04

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

First of all install update and upgrade your system:

    $ sudo apt update
    $ sudo apt upgrade

Then, install required libraries:

@dbadrian
dbadrian / compile_meshlab.sh
Last active August 9, 2019 15:26
Compile Meshlab on Ubuntu 18.04
#!/bin/bash
#install qt5.9
sudo apt-get install qt5-default qtcreator libqt5xmlpatterns5-dev qtscript5-dev
# install some dependencies
sudo apt-get install libeigen3-dev
#clone repos
git clone --depth 1 https://github.com/cnr-isti-vclab/meshlab.git
@gnuton
gnuton / Mixamo.js
Last active January 22, 2024 07:29
Script which downloads all mixamo animations for one character.
// Mixamo Animation downloadeer
//
// Author: Antonio Aloisio <gnuton@gnuton.org>
// Contributions: kriNon
//
// The following script make use of mixamo2 API to download all anims for a single character that you choose.
// The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI.
//
// This script has been written by gnuton@gnuton.org and the author is not responsible of its usage
//
@devoncrouse
devoncrouse / clean_audio.sh
Created May 7, 2013 17:02
Using Sox (http://sox.sourceforge.net) to remove background noise and/or silence from audio files (individually, or in batch).
# Create background noise profile from mp3
/usr/bin/sox noise.mp3 -n noiseprof noise.prof
# Remove noise from mp3 using profile
/usr/bin/sox input.mp3 output.mp3 noisered noise.prof 0.21
# Remove silence from mp3
/usr/bin/sox input.mp3 output.mp3 silence -l 1 0.3 5% -1 2.0 5%
# Remove noise and silence in a single command