Skip to content

Instantly share code, notes, and snippets.

View csukuangfj's full-sized avatar
👀
I may be slow to respond.

Fangjun Kuang csukuangfj

👀
I may be slow to respond.
  • Xiaomi Corporation
  • Peking
View GitHub Profile
@csukuangfj
csukuangfj / project_1.md
Created October 17, 2017 10:41 — forked from anonymous/project_1.md
Project READMEs - 3D Reconstruction with Computer Vision

Project 1: Panorama stitching

Due: 23 Sept 2014, 11:59pm

In this project, you'll write software that stitches multiple images of a scene together into a panorama automatically. A panorama is a composite image that has a wider field of view than a single image, and can combine images taken at different times for interesting effects.

Your image stitcher will, at a minimum, do the following:

@csukuangfj
csukuangfj / spline.c
Last active July 6, 2019 16:53 — forked from svdamani/spline.c
Natural Cubic Spline Interpolation in C
/** Numerical Analysis 9th ed - Burden, Faires (Ch. 3 Natural Cubic Spline, Pg. 149) */
#include <stdio.h>
int main() {
/** Step 0 */
int n, i, j;
scanf("%d", &n);
n--;
float x[n + 1], a[n + 1], h[n], A[n], l[n + 1],
u[n + 1], z[n + 1], c[n + 1], b[n], d[n];
@csukuangfj
csukuangfj / RNN-notes
Created March 8, 2019 02:10
RNN-notes
- a blog article https://colah.github.io/posts/2015-08-Understanding-LSTMs/
@csukuangfj
csukuangfj / tensorflow-notes.md
Last active March 7, 2019 12:36
useful tensorflow statements
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)
@csukuangfj
csukuangfj / python-notes.md
Last active February 28, 2019 03:25
python-notes.md

swig

TODO

  • protobuf for python
@csukuangfj
csukuangfj / cpp-notes.md
Last active January 11, 2019 01:57
notes about c++ programming