12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <float.h>
- #include <stdlib.h>
- #include <sys/time.h>
- /* for fallback to the otherwise obsolete ftime on windows */
- #if ! HAVE_GETTIMEOFDAY && HAVE_FTIME
- #include <sys/timeb.h>
- #endif
- #include "cholesky.h"
- #include "od_defs.h"
- #include "od_covmat.h"
- #include "od_filter.h"
- #include "od_intra.h"
- #include "image_tools.h"
- #include "stats_tools.h"
- #include "svd.h"
- #define USE_SVD (0)
- #define BITS_SELECT (0)
- #define USE_WEIGHTS (0)
- #define SUBTRACT_DC (0)
- #define POOLED_COV (1)
- #define MAKE_SPARSE (1)
- #define DROP_BY_MAG (0)
- #define TF_MASKING (1)
- #define WRITE_IMAGES (0)
- #define PRINT_PROGRESS (0)
- #define PRINT_BLOCKS (0)
- #define PRINT_COMP (0)
- #define PRINT_DROPS (0)
- #define PRINT_BETAS (0)
- static void od_gettime(struct timeval *tv){
- #if HAVE_GETTIMEOFDAY
- gettimeofday(tv,NULL);
- #elif HAVE_FTIME
- struct timeb ft;
- ftime(&ft);
- tv->tv_sec=ft.time;
- tv->tv_usec=ft.millitm*1000;
- #else
- #error No suitable wall time function available.
- #endif
- }
- typedef struct classify_ctx classify_ctx;
- struct classify_ctx{
- int n;
- intra_stats st;
- intra_stats gb;
- od_covmat pd[OD_INTRA_NMODES];
- image_data img;
- #if WRITE_IMAGES
- image_files files;
- #endif
- double bits;
- };
- static void classify_ctx_init(classify_ctx *_this){
- int i;
- _this->n=0;
- intra_stats_init(&_this->st,B_SZ_LOG);
- intra_stats_init(&_this->gb,B_SZ_LOG);
- for(i=0;i<OD_INTRA_NMODES;i++){
- od_covmat_init(&_this->pd[i],5*B_SZ*B_SZ);
- }
- }
- static void classify_ctx_clear(classify_ctx *_this){
- int i;
- intra_stats_clear(&_this->st);
- intra_stats_clear(&_this->gb);
- for(i=0;i<OD_INTRA_NMODES;i++){
- od_covmat_clear(&_this->pd[i]);
- }
- }
- static void classify_ctx_reset(classify_ctx *_this){
- int i;
- _this->n=0;
- intra_stats_reset(&_this->gb);
- for(i=0;i<OD_INTRA_NMODES;i++){
- od_covmat_reset(&_this->pd[i]);
- }
- _this->bits=0;
- }
- static void classify_ctx_set_image(classify_ctx *_this,const char *_name,
- int _nxblocks,int _nyblocks){
- _this->n++;
- intra_stats_reset(&_this->st);
- image_data_init(&_this->img,_name,B_SZ_LOG,_nxblocks,_nyblocks);
- #if WRITE_IMAGES
- image_files_init(&_this->files,_nxblocks,_nyblocks);
- #endif
- }
- static void classify_ctx_clear_image(classify_ctx *_this){
- image_data_clear(&_this->img);
- #if WRITE_IMAGES
- image_files_clear(&_this->files);
- #endif
- }
- typedef struct prob_ctx prob_ctx;
- struct prob_ctx{
- double *scale;
- double *xtx;
- double *xty;
- const double *mean;
- const double *cov;
- double *ete;
- };
- static void prob_ctx_init(prob_ctx *_this){
- _this->scale=(double *)malloc(sizeof(*_this->scale)*5*B_SZ*B_SZ);
- _this->xtx=(double *)malloc(sizeof(*_this->xtx)*4*B_SZ*B_SZ*4*B_SZ*B_SZ);
- _this->xty=(double *)malloc(sizeof(*_this->xty)*4*B_SZ*B_SZ*B_SZ*B_SZ);
- _this->mean=NULL;
- _this->cov=NULL;
- _this->ete=(double *)malloc(sizeof(*_this->ete)*B_SZ*B_SZ*B_SZ*B_SZ);
- }
- static void prob_ctx_clear(prob_ctx *_this){
- free(_this->scale);
- free(_this->xtx);
- free(_this->xty);
- _this->mean=NULL;
- _this->cov=NULL;
- free(_this->ete);
- }
- static void prob_ctx_load(prob_ctx *_this,od_covmat *_mat){
- int i;
- int j;
- /* compute the scale factors */
- for(i=0;i<5*B_SZ*B_SZ;i++){
- _this->scale[i]=sqrt(_mat->cov[i*5*B_SZ*B_SZ+i]);
- }
- /* normalize X^T*X and X^T*Y */
- for(j=0;j<4*B_SZ*B_SZ;j++){
- for(i=0;i<4*B_SZ*B_SZ;i++){
- _this->xtx[4*B_SZ*B_SZ*j+i]=
- _mat->cov[5*B_SZ*B_SZ*j+i]/(_this->scale[j]*_this->scale[i]);
- }
- for(i=0;i<B_SZ*B_SZ;i++){
- _this->xty[B_SZ*B_SZ*j+i]=_mat->cov[5*B_SZ*B_SZ*j+4*B_SZ*B_SZ+i];
- _this->xty[B_SZ*B_SZ*j+i]/=_this->scale[j]*_this->scale[4*B_SZ*B_SZ+i];
- }
- }
- _this->mean=_mat->mean;
- _this->cov=_mat->cov;
- }
- static void prob_ctx_comp_error(prob_ctx *_this,od_covmat *_mat,double *_beta_1){
- int j;
- int i;
- for(j=0;j<B_SZ*B_SZ;j++){
- for(i=0;i<B_SZ*B_SZ;i++){
- int ji;
- int l;
- int k;
- ji=B_SZ*B_SZ*j+i;
- l=5*B_SZ*B_SZ*(4*B_SZ*B_SZ+j);
- /* E^T*E = Y^T*Y - Y^T*X * beta_1 */
- _this->ete[ji]=_mat->cov[l+4*B_SZ*B_SZ+i];
- for(k=0;k<4*B_SZ*B_SZ;k++){
- _this->ete[ji]-=_mat->cov[l+k]*_beta_1[4*B_SZ*B_SZ*i+k];
- }
- }
- }
- #if PRINT_COMP
- fprintf(stderr,"ete=[");
- for(j=0;j<B_SZ*B_SZ;j++){
- fprintf(stderr,"%s",j!=0?";":"");
- for(i=0;i<B_SZ*B_SZ;i++){
- fprintf(stderr,"%s%- 24.18G",i!=0?",":"",_this->ete[B_SZ*B_SZ*j+i]);
- }
- }
- fprintf(stderr,"];\n");
- #endif
- }
- static void update_diversity(const double *_ete,double _b[B_SZ*B_SZ],
- const double *_scale){
- int v;
- int u;
- for(v=0;v<B_SZ;v++){
- for(u=0;u<B_SZ;u++){
- int i;
- int ii;
- i=B_SZ*v+u;
- ii=B_SZ*B_SZ*i+i;
- _b[i]=sqrt(_scale[v]*_scale[u]*_ete[ii]/2);
- }
- }
- }
- #if PRINT_BETAS && POOLED_COV
- static void print_diversity(FILE *_fp,double _b[B_SZ*B_SZ],
- const double *_scale){
- int j;
- int i;
- fprintf(_fp,"const ogg_int16_t OD_SATD_WEIGHTS_%dx%d[%d*%d] = {\n",B_SZ,B_SZ,B_SZ,B_SZ);
- for(j=0;j<B_SZ;j++){
- for(i=0;i<B_SZ;i++){
- double b;
- b=M_LOG2E/(_b[j*B_SZ+i]/(sqrt(_scale[i]*_scale[j])*INPUT_SCALE));
- fprintf(_fp,"%s%3i%s",
- i>0?" ":" ",(int)(b*256+0.5),j==B_SZ-1&&i==B_SZ-1?"":",");
- }
- fprintf(_fp,"\n");
- }
- fprintf(_fp,"};\n");
- }
- #endif
- typedef struct solve_ctx solve_ctx;
- struct solve_ctx{
- #if USE_SVD
- double *xtx;
- double **xtxp;
- double *s;
- #else
- double *r;
- int *pivot;
- double *tau;
- double *b;
- double *work;
- #endif
- double *beta_0;
- double *beta_1;
- };
- static void solve_ctx_init(solve_ctx *_this){
- #if USE_SVD
- _this->xtx=(double *)malloc(sizeof(*_this->xtx)*2*4*B_SZ*B_SZ*4*B_SZ*B_SZ);
- _this->xtxp=(double **)malloc(sizeof(*_this->xtxp)*2*4*B_SZ*B_SZ);
- _this->s=(double *)malloc(sizeof(*_this->s)*4*B_SZ*B_SZ);
- #else
- _this->r=(double *)malloc(sizeof(*_this->r)*UT_SZ(4*B_SZ*B_SZ,4*B_SZ*B_SZ));
- _this->pivot=(int *)malloc(sizeof(*_this->pivot)*4*B_SZ*B_SZ);
- _this->tau=(double *)malloc(sizeof(*_this->tau)*4*B_SZ*B_SZ);
- _this->b=(double *)malloc(sizeof(*_this->b)*4*B_SZ*B_SZ);
- _this->work=(double *)malloc(sizeof(*_this->work)*4*B_SZ*B_SZ);
- #endif
- _this->beta_0=(double *)malloc(sizeof(*_this->beta_0)*B_SZ*B_SZ);
- _this->beta_1=(double *)malloc(sizeof(*_this->beta_1)*B_SZ*B_SZ*4*B_SZ*B_SZ);
- }
- static void solve_ctx_clear(solve_ctx *_this){
- #if USE_SVD
- free(_this->xtx);
- free(_this->xtxp);
- free(_this->s);
- #else
- free(_this->r);
- free(_this->pivot);
- free(_this->tau);
- free(_this->b);
- free(_this->work);
- #endif
- free(_this->beta_0);
- free(_this->beta_1);
- }
- /* solve for beta_0[_y] and beta_1[_y] */
- static void solve(const prob_ctx *_prob,solve_ctx *_sol,int _y,int *_mask,
- double *_beta_0,double *_beta_1){
- int nmi;
- int mi[4*B_SZ*B_SZ];
- int i;
- int j;
- #if !USE_SVD
- int rank;
- #endif
- nmi=0;
- for(i=0;i<4*B_SZ*B_SZ;i++){
- if(_mask[i]){
- mi[nmi]=i;
- nmi++;
- }
- _beta_1[_y*4*B_SZ*B_SZ+i]=0;
- }
- #if USE_SVD
- for(j=0;j<nmi;j++){
- for(i=0;i<nmi;i++){
- _sol->xtx[4*B_SZ*B_SZ*j+i]=_prob->xtx[4*B_SZ*B_SZ*mi[j]+mi[i]];
- }
- }
- for(i=0;i<2*nmi;i++){
- _sol->xtxp[i]=&_sol->xtx[4*B_SZ*B_SZ*i];
- }
- svd_pseudoinverse(_sol->xtxp,_sol->s,nmi,nmi);
- #else
- for(j=0;j<nmi;j++){
- for(i=j;i<nmi;i++){
- _sol->r[UT_IDX(j,i,nmi)]=_prob->xtx[4*B_SZ*B_SZ*mi[j]+mi[i]];
- }
- _sol->b[j]=_prob->xty[B_SZ*B_SZ*mi[j]+_y];
- }
- rank=cholesky(_sol->r,_sol->pivot,DBL_EPSILON,nmi);
- chdecomp(_sol->r,_sol->tau,rank,nmi);
- chsolve(_sol->r,_sol->pivot,_sol->tau,_sol->b,_sol->b,_sol->work,rank,nmi);
- #endif
- /* compute beta_1 = (X^T*X)^-1 * X^T*Y and beta_0 = Ym - Xm * beta_1 */
- _beta_0[_y]=_prob->mean[4*B_SZ*B_SZ+_y];
- for(j=0;j<nmi;j++){
- int yj;
- yj=_y*4*B_SZ*B_SZ+mi[j];
- #if USE_SVD
- _beta_1[yj]=0;
- for(i=0;i<nmi;i++){
- _beta_1[yj]+=_sol->xtx[4*B_SZ*B_SZ*j+i]*_prob->xty[B_SZ*B_SZ*mi[i]+_y];
- }
- #else
- _beta_1[yj]=_sol->b[j];
- #endif
- _beta_1[yj]*=_prob->scale[4*B_SZ*B_SZ+_y]/_prob->scale[mi[j]];
- _beta_0[_y]-=_prob->mean[mi[j]]*_beta_1[yj];
- }
- }
- static double comp_error(const prob_ctx *_prob,solve_ctx *_sol,int _y,
- int *_mask){
- double err;
- int j;
- int i;
- solve(_prob,_sol,_y,_mask,_sol->beta_0,_sol->beta_1);
- j=4*B_SZ*B_SZ+_y;
- err=_prob->cov[5*B_SZ*B_SZ*j+j];
- for(i=0;i<4*B_SZ*B_SZ;i++){
- if(_mask[i]){
- err-=_prob->cov[5*B_SZ*B_SZ*j+i]*_sol->beta_1[4*B_SZ*B_SZ*_y+i];
- }
- }
- return(err);
- }
- static int comp_delta_pg(const prob_ctx *_prob,solve_ctx _sol[NUM_PROCS],int _y,
- int _mask[4*B_SZ*B_SZ],double *_delta_pg){
- double s;
- int i;
- int j;
- int nmi;
- int mi[4*B_SZ*B_SZ];
- int mask[NUM_PROCS][4*B_SZ*B_SZ];
- double delta_pg[4*B_SZ*B_SZ];
- nmi=0;
- for(i=0;i<4*B_SZ*B_SZ;i++){
- if(_mask[i]){
- mi[nmi]=i;
- nmi++;
- }
- for(j=0;j<NUM_PROCS;j++){
- mask[j][i]=_mask[i];
- }
- }
- s=1/comp_error(_prob,&_sol[0],_y,_mask);
- #pragma omp parallel for schedule(dynamic)
- for(i=0;i<nmi;i++){
- int tid;
- tid=OD_OMP_GET_THREAD;
- mask[tid][mi[i]]=0;
- delta_pg[i]=comp_error(_prob,&_sol[tid],_y,mask[tid])*s;
- mask[tid][mi[i]]=1;
- }
- #if SUBTRACT_DC
- if(_y==0) {
- for(i=0;i<nmi;i++){
- if(mi[i]%(B_SZ*B_SZ)==0){
- delta_pg[i]=UINT_MAX;
- }
- }
- }
- #endif
- j=-1;
- for(i=0;i<nmi;i++){
- if(j==-1||delta_pg[i]<delta_pg[j]){
- j=i;
- }
- }
- if(j==-1){
- return j;
- }
- *_delta_pg=delta_pg[j];
- return(mi[j]);
- }
- static long timing(const struct timeval *_start,const struct timeval *_stop){
- long ms;
- ms=(_stop->tv_sec-_start->tv_sec)*1000;
- ms+=(_stop->tv_usec-_start->tv_usec)/1000;
- return ms;
- }
- static void comp_predictors(const prob_ctx *_prob,solve_ctx _sol[NUM_PROCS],
- int _drop,int _mask[B_SZ*B_SZ*4*B_SZ*B_SZ]){
- int i;
- int j;
- #if PRINT_COMP
- fprintf(stderr,"xtx=[");
- for(j=0;j<4*B_SZ*B_SZ;j++){
- fprintf(stderr,"%s",j!=0?";":"");
- for(i=0;i<4*B_SZ*B_SZ;i++){
- fprintf(stderr,"%s%- 24.18G",i!=0?",":"",_prob->xtx[4*B_SZ*B_SZ*j+i]);
- }
- }
- fprintf(stderr,"];\n");
- fprintf(stderr,"xty=[");
- for(j=0;j<4*B_SZ*B_SZ;j++){
- fprintf(stderr,"%s",j!=0?";":"");
- for(i=0;i<B_SZ*B_SZ;i++){
- fprintf(stderr,"%s%- 24.18G",i!=0?",":"",_prob->xty[B_SZ*B_SZ*j+i]);
- }
- }
- fprintf(stderr,"];\n");
- #endif
- if(_drop>0){
- #if DROP_BY_MAG
- double min[B_SZ*B_SZ];
- int idx[B_SZ*B_SZ];
- #pragma omp parallel for schedule(dynamic)
- for(j=0;j<B_SZ*B_SZ;j++){
- int tid;
- tid=OD_OMP_GET_THREAD;
- solve(_prob,&_sol[tid],j,&_mask[j*4*B_SZ*B_SZ],_sol->beta_0,_sol->beta_1);
- }
- for(j=0;j<B_SZ*B_SZ;j++){
- idx[j]=-1;
- min[j]=UINT_MAX;
- for(i=0;i<4*B_SZ*B_SZ;i++){
- if(_mask[4*B_SZ*B_SZ*j+i]&&fabs(_sol->beta_1[4*B_SZ*B_SZ*j+i])<min[j]){
- idx[j]=i;
- min[j]=fabs(_sol->beta_1[4*B_SZ*B_SZ*j+i]);
- }
- }
- }
- while(_drop-->0){
- j=-1;
- for(i=0;i<B_SZ*B_SZ;i++){
- if(idx[i]!=-1&&(j==-1||min[i]<min[j])){
- j=i;
- }
- }
- #if PRINT_DROPS
- printf("Dropping (%2i,%2i) with beta_1=%g\n",j,idx[j],min[j]);
- fflush(stdout);
- #endif
- _mask[4*B_SZ*B_SZ*j+idx[j]]=0;
- idx[j]=-1;
- min[j]=UINT_MAX;
- for(i=0;i<4*B_SZ*B_SZ;i++){
- if(_mask[4*B_SZ*B_SZ*j+i]&&fabs(_sol->beta_1[4*B_SZ*B_SZ*j+i])<min[j]){
- idx[j]=i;
- min[j]=fabs(_sol->beta_1[4*B_SZ*B_SZ*j+i]);
- }
- }
- }
- #else
- double delta_pg[B_SZ*B_SZ];
- int idx[B_SZ*B_SZ];
- for(j=0;j<B_SZ*B_SZ;j++){
- idx[j]=comp_delta_pg(_prob,_sol,j,&_mask[j*4*B_SZ*B_SZ],&delta_pg[j]);
- }
- while(_drop-->0){
- j=-1;
- for(i=0;i<B_SZ*B_SZ;i++){
- if(idx[i]!=-1&&(j==-1||delta_pg[i]<delta_pg[j])){
- j=i;
- }
- }
- #if PRINT_DROPS
- printf("Dropping (%2i,%2i) cost Pg=%g\n",j,idx[j],10*log10(delta_pg[j]));
- fflush(stdout);
- #endif
- _mask[j*4*B_SZ*B_SZ+idx[j]]=0;
- idx[j]=comp_delta_pg(_prob,_sol,j,&_mask[j*4*B_SZ*B_SZ],&delta_pg[j]);
- }
- #endif
- }
- #pragma omp parallel for schedule(dynamic)
- for(j=0;j<B_SZ*B_SZ;j++){
- int tid;
- tid=OD_OMP_GET_THREAD;
- solve(_prob,&_sol[tid],j,&_mask[j*4*B_SZ*B_SZ],_sol->beta_0,_sol->beta_1);
- }
- #if PRINT_COMP
- fprintf(stderr,"beta_1=[");
- for(j=0;j<4*B_SZ*B_SZ;j++){
- fprintf(stderr,"%s",j!=0?";":"");
- for(i=0;i<B_SZ*B_SZ;i++){
- fprintf(stderr,"%s%- 24.18G",i!=0?",":"",_sol->beta_1[4*B_SZ*B_SZ*i+j]);
- }
- }
- fprintf(stderr,"];\n");
- fprintf(stderr,"beta_0=[");
- for(i=0;i<B_SZ*B_SZ;i++){
- fprintf(stderr,"%s%- 24.18G",i!=0?",":"",_sol->beta_0[i]);
- }
- fprintf(stderr,"];\n");
- #endif
- }
- #if PRINT_PROGRESS
- static void print_progress(FILE *_fp,const char *_proc){
- int tid;
- tid=OD_OMP_GET_THREAD;
- fprintf(_fp,"thread %i in %s\n",tid,_proc);
- }
- #endif
- #if MASK_BLOCKS
- static void ip_mask_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_mask_block");
- }
- #endif
- if(_bi==0&&_bj==0){
- classify_ctx *ctx;
- ctx=(classify_ctx *)_ctx;
- image_data_mask(&ctx->img,_data,_stride);
- }
- }
- #endif
- static void ip_pre_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_pre_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_pre_block(&ctx->img,_data,_stride,_bi,_bj);
- }
- static void ip_fdct_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_fdct_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_fdct_block(&ctx->img,_bi,_bj);
- }
- #if TF_BLOCKS
- static void ip_tf_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_tf_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_tf_block(&ctx->img,_bi,_bj);
- }
- #endif
- static void ip_add_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- od_coeff *block;
- int by;
- int bx;
- int j;
- int i;
- double buf[5*B_SZ*B_SZ];
- int mode;
- double weight;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_add_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- #if MASK_BLOCKS
- if(!ctx->img.mask[ctx->img.nxblocks*_bj+_bi]){
- return;
- }
- #endif
- for(by=0;by<=1;by++){
- for(bx=0;bx<=(1-by)<<1;bx++){
- #if TF_BLOCKS
- block=&ctx->img.tf[ctx->img.fdct_stride*B_SZ*(_bj+by)+B_SZ*(_bi+bx)];
- #else
- block=&ctx->img.fdct[ctx->img.fdct_stride*B_SZ*(_bj+by)+B_SZ*(_bi+bx)];
- #endif
- for(j=0;j<B_SZ;j++){
- for(i=0;i<B_SZ;i++){
- buf[B_SZ*B_SZ*(3*by+bx)+j*B_SZ+i]=block[ctx->img.fdct_stride*j+i];
- }
- }
- }
- }
- block=&ctx->img.fdct[ctx->img.fdct_stride*B_SZ*(_bj+1)+B_SZ*(_bi+1)];
- for(j=0;j<B_SZ;j++){
- for(i=0;i<B_SZ;i++){
- buf[B_SZ*B_SZ*4+j*B_SZ+i]=block[ctx->img.fdct_stride*j+i];
- }
- }
- #if SUBTRACT_DC
- for(i=0;i<4;i++){
- buf[4*B_SZ*B_SZ]-=0.25*buf[i*B_SZ*B_SZ];
- }
- #endif
- mode=ctx->img.mode[ctx->img.nxblocks*_bj+_bi];
- weight=ctx->img.weight[ctx->img.nxblocks*_bj+_bi];
- od_covmat_add(&ctx->pd[mode],buf,weight);
- }
- #if PRINT_BLOCKS
- static void ip_print_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_print_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_print_block(&ctx->img,_bi,_bj,stderr);
- }
- #endif
- static void ip_pred_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress("ip_pred_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_pred_block(&ctx->img,_bi,_bj);
- }
- static void ip_idct_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress("ip_idct_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_idct_block(&ctx->img,_bi,_bj);
- }
- static void ip_post_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress("ip_post_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_post_block(&ctx->img,_bi,_bj);
- }
- double b[OD_INTRA_NMODES][B_SZ*B_SZ];
- static void ip_stats_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress("ip_stats_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- #if MASK_BLOCKS
- if(!ctx->img.mask[ctx->img.nxblocks*_bj+_bi]){
- return;
- }
- #endif
- image_data_stats_block(&ctx->img,_data,_stride,_bi,_bj,&ctx->st);
- {
- od_coeff *block;
- int bstride;
- double *pred;
- int pstride;
- int mode;
- double *od_scale;
- int j;
- int i;
- block=&ctx->img.fdct[ctx->img.fdct_stride*B_SZ*(_bj+1)+B_SZ*(_bi+1)];
- bstride=ctx->img.fdct_stride;
- pred=&ctx->img.pred[ctx->img.pred_stride*B_SZ*_bj+B_SZ*_bi];
- pstride=ctx->img.pred_stride;
- mode=ctx->img.mode[ctx->img.nxblocks*_bj+_bi];
- od_scale=OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0];
- for(j=0;j<B_SZ;j++){
- for(i=0;i<B_SZ;i++){
- double res;
- res=sqrt(od_scale[j]*od_scale[i])*
- abs(block[bstride*j+i]-(od_coeff)floor(pred[pstride*j+i]+0.5));
- ctx->bits+=1+OD_LOG2(b[mode][j*B_SZ+i])+M_LOG2E/b[mode][j*B_SZ+i]*res;
- }
- }
- }
- }
- #if WRITE_IMAGES
- static void ip_files_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_files_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- image_data_files_block(&ctx->img,_data,_stride,_bi,_bj,&ctx->files);
- }
- #endif
- int step;
- static void vp8_mode_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- unsigned char *mode;
- double *weight;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress(stdout,"ip_vp8_mode_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- mode=&ctx->img.mode[ctx->img.nxblocks*_bj+_bi];
- weight=&ctx->img.weight[ctx->img.nxblocks*_bj+_bi];
- *mode=vp8_select_mode(_data,_stride,weight);
- #if USE_WEIGHTS
- if(*mode==0){
- *weight=1;
- }
- #else
- *weight=1;
- #endif
- }
- static void od_mode_block(void *_ctx,const unsigned char *_data,int _stride,
- int _bi,int _bj){
- classify_ctx *ctx;
- unsigned char *mode;
- od_coeff block[5*B_SZ*B_SZ];
- double *weight;
- (void)_data;
- (void)_stride;
- #if PRINT_PROGRESS
- if(_bi==0&&_bj==0){
- print_progress("od_mode_block");
- }
- #endif
- ctx=(classify_ctx *)_ctx;
- mode=&ctx->img.mode[ctx->img.nxblocks*_bj+_bi];
- image_data_load_block(&ctx->img,_bi,_bj,block);
- weight=&ctx->img.weight[ctx->img.nxblocks*_bj+_bi];
- #if BITS_SELECT
- if(step==1){
- *mode=od_select_mode_satd(block,weight,ctx->img.b_sz_log);
- }
- else{
- *mode=od_select_mode_bits(block,weight,b);
- }
- #else
- *mode=od_select_mode_satd(block,weight,ctx->img.b_sz_log);
- #endif
- #if USE_WEIGHTS
- if(*mode==0){
- *weight=1;
- }
- #else
- *weight=1;
- #endif
- }
- static int init_start(void *_ctx,const char *_name,
- const video_input_info *_info,int _pli,int _nxblocks,int _nyblocks){
- classify_ctx *ctx;
- (void)_info;
- (void)_pli;
- #if PRINT_PROGRESS
- print_progress(stdout,"init_start");
- #endif
- fprintf(stdout,"%s\n",_name);
- fflush(stdout);
- ctx=(classify_ctx *)_ctx;
- classify_ctx_set_image(ctx,_name,_nxblocks,_nyblocks);
- return EXIT_SUCCESS;
- }
- static int init_finish(void *_ctx){
- classify_ctx *ctx;
- #if PRINT_PROGRESS
- print_progress(stdout,"init_finish");
- #endif
- ctx=(classify_ctx *)_ctx;
- /*intra_stats_combine(&ctx->gb,&ctx->st);
- intra_stats_correct(&ctx->st);
- fprintf(stdout,"%s\n",ctx->img.name);
- intra_stats_print(&ctx->st,"Daala Intra Predictors",OD_SCALE);
- fflush(stdout);*/
- image_data_save_map(&ctx->img);
- classify_ctx_clear_image(ctx);
- return EXIT_SUCCESS;
- }
- const block_func INIT[]={
- #if MASK_BLOCKS
- ip_mask_block,
- #endif
- ip_pre_block,
- ip_fdct_block,
- #if TF_BLOCKS
- ip_tf_block,
- #endif
- vp8_mode_block,
- ip_add_block,
- #if PRINT_BLOCKS
- ip_print_block,
- #endif
- };
- const int NINIT=sizeof(INIT)/sizeof(*INIT);
- static int pred_start(void *_ctx,const char *_name,
- const video_input_info *_info,int _pli,int _nxblocks,int _nyblocks){
- classify_ctx *ctx;
- (void)_info;
- (void)_pli;
- #if PRINT_PROGRESS
- print_progress(stdout,"pred_start");
- #endif
- ctx=(classify_ctx *)_ctx;
- classify_ctx_set_image(ctx,_name,_nxblocks,_nyblocks);
- image_data_load_map(&ctx->img);
- return EXIT_SUCCESS;
- }
- static int pred_finish(void *_ctx){
- classify_ctx *ctx;
- #if WRITE_IMAGES
- char suffix[16];
- #endif
- #if PRINT_PROGRESS
- print_progress(stdout,"pred_finish");
- #endif
- ctx=(classify_ctx *)_ctx;
- intra_stats_combine(&ctx->gb,&ctx->st);
- intra_stats_correct(&ctx->st);
- fprintf(stdout,"%s\n",ctx->img.name);
- intra_stats_print(&ctx->st,"Daala Intra Predictors",
- OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0]);
- fflush(stdout);
- #if WRITE_IMAGES
- sprintf(suffix,"-step%02i",step);
- image_files_write(&ctx->files,ctx->img.name,suffix);
- #endif
- image_data_save_map(&ctx->img);
- classify_ctx_clear_image(ctx);
- return EXIT_SUCCESS;
- }
- const block_func PRED[]={
- #if MASK_BLOCKS
- ip_mask_block,
- #endif
- ip_pre_block,
- ip_fdct_block,
- #if TF_BLOCKS
- ip_tf_block,
- #endif
- od_mode_block,
- ip_add_block,
- ip_pred_block,
- ip_stats_block,
- ip_idct_block,
- ip_post_block,
- #if WRITE_IMAGES
- ip_files_block,
- #endif
- };
- const int NPRED=sizeof(PRED)/sizeof(*PRED);
- #define PADDING (4*B_SZ)
- #if PADDING<3*B_SZ
- # error "PADDING must be at least 3*B_SZ"
- #endif
- #define INIT_STEPS (10)
- #if B_SZ==4
- # define DROPS_PER_STEP (16)
- #elif B_SZ==8
- # define DROPS_PER_STEP (64)
- #elif B_SZ==16
- # define DROPS_PER_STEP (256)
- #else
- # error "Unsupported block size."
- #endif
- int main(int _argc,const char *_argv[]){
- classify_ctx *cls;
- int i;
- int j;
- ne_filter_params_init();
- vp8_scale_init(VP8_SCALE[B_SZ_LOG-OD_LOG_BSIZE0],B_SZ_LOG);
- od_scale_init(OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0],B_SZ_LOG);
- #if WRITE_IMAGES
- intra_map_colors(COLORS,OD_INTRA_NMODES);
- #endif
- cls=(classify_ctx *)malloc(sizeof(*cls)*NUM_PROCS);
- for(i=0;i<NUM_PROCS;i++){
- classify_ctx_init(&cls[i]);
- }
- od_intra_init();
- OD_OMP_SET_THREADS(NUM_PROCS);
- /* First pass across images uses VP8 mode selection. */
- ne_apply_to_blocks(cls,sizeof(*cls),0x1,PADDING,init_start,NINIT,INIT,
- init_finish,_argc,_argv);
- for(i=1;i<NUM_PROCS;i++){
- cls[0].n+=cls[i].n;
- }
- if(cls[0].n>0){
- prob_ctx prob;
- solve_ctx sol[NUM_PROCS];
- od_covmat ete;
- int *mask;
- struct timeval start;
- struct timeval stop;
- prob_ctx_init(&prob);
- for(i=0;i<NUM_PROCS;i++){
- solve_ctx_init(&sol[i]);
- }
- od_covmat_init(&ete,B_SZ*B_SZ);
- mask=(int *)malloc(sizeof(*mask)*OD_INTRA_NMODES*B_SZ*B_SZ*4*B_SZ*B_SZ);
- #if TF_BLOCKS && TF_MASKING
- for(j=0;j<OD_INTRA_NMODES;j++){
- int *mode_mask;
- int *coeff_mask;
- int u;
- int v;
- mode_mask=&mask[B_SZ*B_SZ*4*B_SZ*B_SZ*j];
- for(i=0;i<B_SZ*B_SZ;i++){
- coeff_mask=&mode_mask[4*B_SZ*B_SZ*i];
- for(v=0;v<B_SZ;v++){
- for(u=0;u<B_SZ;u++){
- /* UL */
- coeff_mask[0*B_SZ*B_SZ+B_SZ*v+u]=v>=B_SZ-4&&u>=B_SZ-4;
- /* U */
- coeff_mask[1*B_SZ*B_SZ+B_SZ*v+u]=v>=B_SZ-4;
- /* UR */
- coeff_mask[2*B_SZ*B_SZ+B_SZ*v+u]=v>=B_SZ-4;
- /* L */
- coeff_mask[3*B_SZ*B_SZ+B_SZ*v+u]=u>=B_SZ-4;
- }
- }
- }
- }
- #else
- for(i=0;i<OD_INTRA_NMODES*B_SZ*B_SZ*4*B_SZ*B_SZ;i++){
- mask[i]=1;
- }
- #endif
- od_gettime(&start);
- /* Each k-means step uses Daala mode selection. */
- for(step=1;;step++){
- int mults;
- int drops;
- #if TF_BLOCKS && TF_MASKING
- mults=(B_SZ/4*3+1)*16*B_SZ*B_SZ;
- #else
- mults=B_SZ*B_SZ*4*B_SZ*B_SZ;
- #endif
- drops=0;
- if(step>INIT_STEPS){
- #if !MAKE_SPARSE
- break;
- #endif
- mults-=DROPS_PER_STEP*(step-INIT_STEPS);
- drops=DROPS_PER_STEP;
- }
- printf("Starting Step %02i (%i mults / block)\n",step,mults);
- for(j=0;j<OD_INTRA_NMODES;j++){
- int *mode_mask;
- /* Combine the gathered prediction data. */
- for(i=1;i<NUM_PROCS;i++){
- od_covmat_combine(&cls[0].pd[j],&cls[i].pd[j]);
- }
- prob_ctx_load(&prob,&cls[0].pd[j]);
- /* Update predictor model based on mults and drops. */
- #if PRINT_DROPS
- if(drops>0){
- printf("Mode %i\n",j);
- fflush(stdout);
- }
- #endif
- mode_mask=&mask[B_SZ*B_SZ*4*B_SZ*B_SZ*j];
- comp_predictors(&prob,sol,drops,mode_mask);
- /* Compute residual covariance for each mode. */
- prob_ctx_comp_error(&prob,&cls[0].pd[j],sol->beta_1);
- #if ZERO_MEAN
- {
- double mean[B_SZ*B_SZ];
- for(i=0;i<B_SZ*B_SZ;i++){
- mean[i]=0;
- }
- od_covmat_update(&ete,prob.ete,mean,cls[0].pd[j].w);
- }
- #else
- od_covmat_update(&ete,prob.ete,sol->beta_0,cls[0].pd[j].w);
- #endif
- #if !POOLED_COV
- od_covmat_correct(&ete);
- update_diversity(ete.cov,b[j],OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0]);
- od_covmat_reset(&ete);
- #endif
- #if SUBTRACT_DC
- for(i=0;i<4;i++){
- OD_ASSERT(mode_mask[i*B_SZ*B_SZ]);
- sol->beta_1[i*B_SZ*B_SZ]+=0.25;
- }
- #endif
- update_predictors(j,sol->beta_0,sol->beta_1,mode_mask);
- }
- #if POOLED_COV
- od_covmat_correct(&ete);
- for(j=0;j<OD_INTRA_NMODES;j++){
- update_diversity(ete.cov,b[j],OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0]);
- }
- od_covmat_reset(&ete);
- #endif
- #if PRINT_BETAS
- fprintf(stderr,"Finished Step %02i\n",step);
- print_predictors(stderr);
- #if POOLED_COV
- print_diversity(stderr,b[0],OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0]);
- #endif
- #endif
- /* Reset the prediction data. */
- for(i=0;i<NUM_PROCS;i++){
- classify_ctx_reset(&cls[i]);
- }
- /* Reclassify based on the new model. */
- ne_apply_to_blocks(cls,sizeof(*cls),0x1,PADDING,pred_start,NPRED,PRED,
- pred_finish,_argc,_argv);
- od_gettime(&stop);
- printf("Finished Step %02i (%lims)\n",step,timing(&start,&stop));
- start=stop;
- /* Combine the gathered intra stats. */
- for(i=1;i<NUM_PROCS;i++){
- intra_stats_combine(&cls[0].gb,&cls[i].gb);
- cls[0].bits+=cls[i].bits;
- }
- printf("Step %02i Total Bits %-24.18G\n",step,cls[0].bits);
- intra_stats_correct(&cls[0].gb);
- intra_stats_print(&cls[0].gb,"Daala Intra Predictors",
- OD_SCALE[B_SZ_LOG-OD_LOG_BSIZE0]);
- if (mults==4*B_SZ*B_SZ) {
- break;
- }
- }
- prob_ctx_clear(&prob);
- for(i=0;i<NUM_PROCS;i++){
- solve_ctx_clear(&sol[i]);
- }
- od_covmat_clear(&ete);
- free(mask);
- }
- for(i=0;i<NUM_PROCS;i++){
- classify_ctx_clear(&cls[i]);
- }
- free(cls);
- od_intra_clear();
- return EXIT_SUCCESS;
- }
|