/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 automate_image.m

  • Committer: Suren A. Chilingaryan
  • Date: 2010-08-17 01:41:15 UTC
  • Revision ID: csa@dside.dyndns.org-20100817014115-xbh0h6086nz5sj2o
Synchronize with Chris version, set precision to 1, initial implementation of labview wrapper

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
% cards.
41
41
% OPTIMIZE parameter is controlling which optimizations should be used. 
42
42
%  0 - The original version, no optimizations
43
 
%  1 - The modified sources from images toolkit are used
44
 
%  2 - The CUDA matlab plugin is used to compute FFT's
 
43
%  1 - The modified sources from images toolkit, multicore if 'matlabpool' is executed
 
44
%  2 - The CUDA matlab plugin is used to compute FFT's (not recomended)
45
45
%  3 - Most of computations are performed on NVidia card
46
 
%  4 - Optimize FFT sizes for better performance (affects precision)
 
46
%  4 - Optimize FFT sizes for better performance (slightly affects precision)
47
47
%  5 - Load images in C code
48
 
% You can safely set an optimization level to 3. If NVidia card is not available
 
48
% You can safely set an optimization level to 3-5. If NVidia card is not available
49
49
% the level will be automatically reduced to 1.
50
50
%
51
51
% SAVEDATA controls if data is saved per iteration or at the end
54
54
 
55
55
OPTIMIZE = 4;
56
56
CORRSIZE = 15;  
57
 
PRECISION = 1000;
 
57
PRECISION = 1;
58
58
SILENT = 1;
59
59
SAVEDATA = 0;
60
60