Skip to content

Instantly share code, notes, and snippets.

@tysheng
tysheng / compress.py
Created March 14, 2023 02:34 — forked from rayrinaldy/compress.py
Image Compression with Python
#!/usr/bin/env python
# Author: Ray Rinaldy
# pip install Pillow
# put this script in every image folder that wants to be converted
# run python compress.py
#
# This script will works on .jpg, .jpeg & .png (for png files, it will auto convert to have white background)
import os, glob, PIL, sys
@tysheng
tysheng / imu.c
Created February 9, 2023 15:06 — forked from jannson/imu.c
陀螺仪重力传感器融合代码
//=====================================================================================================
// IMU.c
// S.O.H. Madgwick
// 25th September 2010
//=====================================================================================================
// Description:
//
// Quaternion implementation of the 'DCM filter' [Mayhony et al].
//
// User must define 'halfT' as the (sample period / 2), and the filter gains 'Kp' and 'Ki'.