source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/missing-data/compare_intensity.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 364 bytes
Line 
1function y = compare_intensity(fo, nframes, npoints, sigma, s, n)
2% fo = fraction of points we expect to be self-shadowed. 
3
4num_random_starts = 5;
5
6for j = 1:n
7  [M,INC,ERR] = shad_ints(fo,nframes,npoints,sigma);
8  if rem(j,5)==0
9    y = [y', compare(M,INC,3,ERR,s,num_random_starts)']'
10  else
11    y = [y', compare(M,INC,3,ERR,s,num_random_starts)']';
12  end
13end
Note: See TracBrowser for help on using the repository browser.