Move colorchord2 into its own folder, since colorchord embedded is its own thing.

This commit is contained in:
cnlohr 2015-07-27 03:39:16 -04:00
parent 24b606988f
commit ed15ea49b9
56 changed files with 1 additions and 12 deletions

12
colorchord2/decompose.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef _DECOMPOSE_H
#define _DECOMPOSE_H
//Decompose a histogram into a series of normal distributions.
int DecomposeHistogram( float * histogram, int bins, float * out_means, float * out_amps, float * out_sigmas, int max_dists, double default_sigma, int iterations );
float CalcHistAt( float pt, int bins, float * out_means, float * out_amps, float * out_sigmas, int cur_dists );
#define TURBO_DECOMPOSE
#endif