/normxcorr/trunk

To get this branch, use:
bzr branch http://suren.me/webbzr/normxcorr/trunk

« back to all changes in this revision

Viewing changes to dict_hw/matlab/normxcorr_hw.cu

  • Committer: Suren A. Chilingaryan
  • Date: 2009-12-13 02:20:05 UTC
  • Revision ID: csa@dside.dyndns.org-20091213022005-m932to8hhihwuw5r
Support for TIFF images in C code and stand-alone console application

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
        corr_size = (int)mxGetScalar(prhs[3]);
272
272
        iprop = (int)mxGetScalar(prhs[4]);
273
273
        
274
 
        err = dictSetup(ps, ncp, corr_size, (int)mxGetScalar(prhs[4]), (iprop>3)?DICT_FLAGS_DEFAULT:DICT_FLAGS_FIXED_FFT_SIZE);
 
274
        err = dictSetup(ps, ncp, corr_size, (int)mxGetScalar(prhs[4]), ((iprop>3)?0:DICT_FLAGS_FIXED_FFT_SIZE)|DICT_FLAGS_MATLAB_MODE);
275
275
 
276
276
        if (!err) {
277
277
            if (coords) mxDestroyArray(coords);