Add mechanism to check validity of stored environment pointers in ui::input::environment.
[Ale.git] / Changelog
blobe29703aae507a28a49028cbb5c0586126da4dce2
1 0.8.5 Prerelease
3 o       Move input interface details, including option handling, messages,
4         and help information, to the ui/ subdirectory.
6 o       In d3::scene, always use filler spaces when --pc all is specified.
8 0.8.4 2006-May-14
10 o       Fix build error noted by Gregory Maxwell and re-tag version.
12 o       Add fine-grain UI updates for 3D operations when using ui=tty.  Reduce
13         tty UI status update frequency to at most once per second.
15 o       Modify --3dpx to affect scene geometry rather than rendered
16         pixels.  In certain cases, this change should allow removal of objects
17         close to the camera, hence revealing objects further away.
19 o       Add to the Makefile a HASH_MAP option that can be used to assign the
20         3D spatial info structure a hash map type instead of the standard STL
21         map type.  As this is likely to break things, it is currently
22         undocumented.  HASH_MAP=GNU seems to compile with g++ 4.0.x but
23         has not otherwise been tested.
25 o       Add support for synthetic focus via the --focus option, including
26         focus with horizontal and vertical tilt.  Adding simulated focus
27         effects, including tilted and swung focal planes, was suggested by
28         Gregory Maxwell.
30 o       Add support for filtering 3D output with --3d-filter.  This
31         is now the default behavior.  Add an option --3d-chain for selecting
32         the filter chain used for 3D output.  (See --hl and --hq for details.)
34 o       Fix dimension comparison bug in d3::space::traverse::get_next_split().
36 o       Implement an experimental approach to 3D subspace candidate selection;
37         this seems to perform poorly in most cases due to parallax effects.
38         See the source code for details.  (Option --subspace-traverse)
40 o       Add adaptive weight decomposition to 3D occupancy algorithms.
42 o       Move low-level code concerning scale and level-of-detail from
43         d3::scene to d3::pt.
45 o       Move code concerning the nature of space from d3::scene to 
46         d3::space.
48 o       Interpolate to generate smooth 3D depth output.
50 o       Remove older 3D rendering code. 
52 o       Add decimation options --di-upper, --di-lower, and --do-try for
53         reducing the complexity of 3D scene geometry, hence reducing the
54         number of operations required for occupancy updating.
56 o       Add a script 'transform' for applying an inverse projective
57         transformation.  Recalculation of transformations was suggested by Rob
58         Stewart (ALE mailing list message, 2005-Dec-28).
60 o       Add dates to the Changelog, using dates in comments in the download
61         page on the website for versions prior to 0.8.0, and using dates from
62         the darcs repository for versions 0.8.0 and later.
65 0.8.3 2005-Dec-23
67 o       Add option --3dpx to specify 3D regions to exclude during final
68         rendering, using a single depth for each pixel in each frame of
69         rendered output.  (Evaluates at the depth used in depth-rendering.)
71 o       Add option --pc to specify which pairwise comparisons should be
72         performed.
74 o       Add --et option to specify encounter thresholds.
76 o       Clean up d3::scene to remove triangle-mesh code.
78 o       Add an option --def-nn to allow definition of pixels in output images
79         to take values from neighboring pixels within a certain radius, in
80         cases where they would not otherwise be defined.
82 o       Modify representation of 3D subspaces so that refined subspaces
83         are roughly cubical, and to allow refinements at multiple
84         resolutions.
86 o       Fix bugs in 3D color and occupancy updating caused by bounding
87         box miscalculation.
89 o       Add option --pa to set the number of point candidates accepted
90         for each pair of cameras (pairwise ambiguity).  The default
91         of 3 preserves existing default behavior.
93 o       Add option --oui for determining occupancy update iterations.
94         The new default is 10, halving the previous default of 20.
96 o       Add option --tcem for scoring point candidates by third-camera
97         views.  The default of 0 preserves existing default behavior.
100 0.8.2 2005-Nov-22
102 o       Add magical file 'dump:' for listing color values numerically
103         to stderr.
105 o       Transition from a subdivisible triangle model to a subdivisible 
106         space model, using a rudimentary implementation of Hans Moravec's 
107         notion of occupancy.
109 o       Add support for view and depth output from arbitrary cameras.
111 o       Add clipping plane options for 3D modeling.
113 o       Fix various bugs in control-point alignment reported by Gregory
114         Maxwell.
117 0.8.1 2005-May-6
119 o       Modify --q1 to use median-value incremental rendering.
121 o       Add support for median-value incremental and Irani-Peleg rendering.
122         Using a statistic other than the mean was suggested by Scott Scriven
123         as a means of eliminating non-uniform artifacts.  Using the median
124         seems to improve performance on Scott Scriven's example sequences, as
125         well as on the scaled output of fine:sinc*lanc for sparse inputs.
127 o       Move ale-psf-calibrate to a new scripts directory.
129 o       Add support for using control points in 2D and 3D alignment, as well
130         as in 3D model construction.  New options include '--gs points',
131         '--cpf-load=', '--cpp-upper=', '--cpp-lower=', '--va-upper=', and
132         '--st'.
134 o       Fix enumerator compile bugs noted by Gregory Maxwell to cause 
135         compilation failure under GCC 3.4.
137 o       Add average magnitude comments to transformation data file output.
139 o       Add a color adjustment option --exp-mult=.
141 o       For 3D scene reconstruction, use a new unified surface model in place
142         of the depth-based multi-model approach used in 0.8.0.  The new model
143         is adjusted on the basis of edge, angle, and color measures.
146 0.8.0 2005-Jan-12
148 o       Add a flag --exp-meta-only which causes tonal registration to be
149         performed only on the basis of exposure metadata (e.g., data encoded
150         as EPPM extended attributes).  This approach was suggested by Gregory
151         Maxwell.
153 o       Set image offsets in d2/render/combine.h.  This allows Irani-Peleg
154         rendering to work with --crop when the default rendering chain
155         includes more than one rendering invariant.
157 o       Perform Irani-Peleg updating separately by channel instead of
158         using vector operations.  This allows divide-by-zero and other
159         conditions to be localized to particular channels.
161 o       Modify the Irani-Peleg renderer to use estimate-based certainty.  This
162         seems to improve noise characteristics significantly.
164 o       Write the results of tonal registration as a comment in the 
165         transformation data file.
167 o       Add support for PPM with extended attributes (EPPM).  Attributes
168         handled specially include black level, shutter speed, aperture, and
169         ISO (or gain).
171 o       Add experimental cost calculation routines to d3/scene.h.
173 o       Modify euclidean alignment so that perturb-upper and perturb-lower
174         apply to rotational arclength.
176 o       Fix an index variable bug in d2::image_bayer_ale_real::trigger().
178 o       Modify d2::exposure one-sided certainty so that the 'one-sided'
179         condition only applies to bright (>50%) areas.  Applying it to dark
180         areas has no clear benefit, and an experiment by Gregory Maxwell
181         demonstrates that doing so can exacerbate noise.
183 o       Modify d2::align to use unscaled input images when the scale factor
184         is larger than 1.0, or when a scaled_filter interpolant is being used.
186 o       Modify d2::image::scale() to allow scale factors in the interval 
187         (0, 1), and modify the command-line interface and help text to reflect
188         this change.  --scale= now accepts all finite positive values.
190 o       Add user interface options --ui=stream and --ui=tty.  The latter
191         includes more detailed status output when terminal width information
192         can be obtained (esp. when IOCTL=1 is set at compile time), and is the
193         new default.
195 o       Move certain user interface elements to the source subdirectory ui/.
197 o       Modify d2::render::ipc::_ip_frame_correct() so that exposure
198         re-estimation uses a ratio of weighted sums instead of a weighted
199         average of ratios.
201 o       Modify d2::align::set_exposure_ratio() so that alignment 
202         weights and certainty values are taken into consideration.  
204 o       Add a --cw option to weight alignment error by certainty values,
205         as suggested by Gregory Maxwell.  This allows the contributions of
206         pixels at maxval to be diminished, which can increase alignment
207         success in certain cases.
209 o       Replace functions d2::incremental::{increase,decrease}_extents()
210         with new functions that take exclusion regions into account.  The new
211         functions should also fix a boundary-calculation bug reported by
212         Gregory Maxwell.
214 o       Modify d2/render/ipc.h to handle exclusion regions more effectively.
216 o       Add --crop argument, which excludes the spatial complement of a
217         specified area over a specified set of frames.  Gregory Maxwell notes
218         several advantages of internal over external crops, including
219         preserving knowledge of position in the uncropped frame, which among
220         other benefits allows natural handling of Bayer patterns.
222 o       Modify rx_parameters in d2/render.h to use the ale_pos data type
223         instead of int.  This should allow exclusion regions to be calculated
224         more accurately.
227 0.7.3 2004-Dec-1
229 o       Add incremental 3D reconstruction output.
231 o       Remove the reference to a non-existent web page in
232         unsupported::fornow().
234 o       Allow device-specific bayer patterns to be overridden by the --bayer
235         option.
237 o       Add an option for explicitly setting the camera view angle.  Make the 
238         default view angle 43.7 degrees.
240 o       Implement optimizations that reduce the memory footprint when 3D
241         options are used.
243 o       Modify the 3D cost reduction algorithm.  The new algorithm seems to
244         offer better results than the old in cases tested thus far, and does
245         not require that spatial extension be enabled.
247 o       Add support for the Canon 300D with a 50mm f/1.4 lens (specifying view
248         angle), as well as experimental support for the 50mm f/1.4 lens at 1.4
249         (specifying a linear PSF).  Also add support for 50mm f/1.8 and 85mm
250         f/1.8 lenses, specifying view angles as specified in the chart at
251         http://www.acapixus.dk/photography/angle_of_view.htm
253 o       Don't output final data when --psf-match is specified.  Doing so
254         would be useless anyway, and apparently causes a segfault.
256 o       For cases where --psf-match is specified, modify the exposure settings
257         for the final input image (i.e., reference image) so that default
258         exposure is used, and modify the bayer pattern settings so that no
259         bayer pattern is used.  (The first of these modifications requires
260         changes in the way that the array of input exposures is stored.)
262 o       Optionally (when OPTIMIZATIONS == 1) use the output of the default
263         rendering chain directly as the Irani-Peleg initial approximation,
264         instead of copying it.
266 o       Add support for PSF convolution and scalar multiplication.
268 o       Move all PSF parsing logic to a new file: d2/render/psf/psf_parse.h
270 o       Modify help argument processing so that several help arguments can be
271         specified at a time.  Change the usage text to reflect this.
273 o       Fix concatenated help output; outputs from all help options are now
274         represented.  (3D help had been omitted in 0.7.2.)
276 o       Add a check to ensure that at most one --q* option is specified.
277         The issue of multiple --q* options being specified was raised on the
278         ALE mailing list by Viktors Rotanovs.  As there is currently no
279         support for this, generating an error message is appropriate.
282 0.7.2 2004-Oct-26
284 o       Add cost-minimizing code to reconstruct 3D scenes from 2D inputs.
285         (This code is currently very experimental.)
287 o       Add rudimentary device support for raw, linear files from the Canon
288         EOS 300D (Digital Rebel) SLR.  CRW files may not be directly usable
289         under all configurations; in cases where they are not, Dave Coffin's
290         dcraw program, with arguments -d -4, will produce a raw, linear PPM
291         file.  See http://www.cybercom.net/~dcoffin/dcraw/
293 o       Add a new option --gs-mo to establish a minimum overlap area for
294         global searches.  This may allow more of Derrick Brashear's historical
295         USGS contour map image sets to align successfully.  (from
296         0.7.1-patch2)
298 o       Allow the scale factor to be explicitly set to one. (from
299         0.7.1-patch2)
301 o       Print version information to stdout instead of stderr. (from
302         0.7.1-patch2)
304 o       Add a rudimentary test suite. (from 0.7.1-patch2)
306 o       Add support for --perturb-{upper,lower}=x%, where the value x% is
307         specified as a percentage of the smallest image dimension.  Use of
308         percentages to specify bounds was suggested by Jeff Epler. (from 
309         0.7.1-patch1)
311 o       In render::is_excluded(), add the offset before checking exclusion
312         regions. (from 0.7.1-patch1)
314 o       Add code to shrink the accumulated image in d2/render/incremental.h,
315         so that superfluously large undefined areas are never present.  This
316         may improve operation of '--gs inner' in some cases. (from
317         0.7.1-patch1)
319 o       In d2::align::_align(), rescale default_initial_alignment in parallel
320         with the current transformation, so that it can be used again, if
321         necessary. (from 0.7.1-patch1)
323 o       Add experimental options --perturb-source and --perturb-output, which
324         allow some refinement of the manner in which perturbation occurs.
325         (from 0.7.1-patch1)
328 0.7.1 2004-Aug-27
330 o       Fix --visp segfault when not using last: filters.
332 o       Add help mode --hA to display all help pages.
334 o       Add circular point-spread function option "circle=<diameter>".
336 o       Add support for the ov7620 sensor (raw, linear modes only).  (Updated
337         from 0.7.0-patch1 to specify a linear PSF.)
339 o       Add global search option --gs to fix an alignment problem reported by
340         Bert Douglas.  (Also included in 0.7.0-patch1.)
342 o       Change transformation::eu_{get,set,modify}() so that externally
343         visible values are interpreted in the context of transformations
344         between scaled images, while internal values represent transformations
345         between unscaled images.  (Bugfix for 0.7.0.  Also included in
346         0.7.0-patch1.)
348 o       d2/tfile.h: Ensure that eu[] parameters are properly scaled when read
349         and written.  (Bugfix for 0.7.0. Also included in 0.7.0-patch1.)
351 o       Fix order-of-operations bug in d2::image::scale_by_half().  (Bugfix
352         for 0.7.0 and earlier versions.  Also included in 0.7.0-patch1.)
354 o       Scale alignment weights for reduced level-of-detail in d2::align().
355         (Also included in 0.7.0-patch1.)
357 o       For reduced level-of-detail alignment reference images, filter
358         using alignment weights.  (Also included in 0.7.0-patch1.)
360 o       Add speed optimizations for filtering in the Euclidean case, but
361         leave these disabled, since they are not safe.  (Also included
362         in 0.7.0-patch1.)
365 0.7.0 2004-Aug-06
367 o       Add support for algorithmic alignment weights.  This requires 
368         POSIX fork() and execlp(), so add a Makefile variable for POSIX.
370 o       Add support for frequency-based alignment weights.  Angelo Pesce
371         had initially suggested the related (or more general) idea of
372         edge-based alignment.  Frequencies were chosen because of their
373         conceptual simplicity.  This option requires that FFTW be linked.
375 o       Add support for specifying per-pixel and per-channel alignment weights
376         by providing an additional weight-map image, as suggested by Bert
377         Douglas.
379 o       Remove support for USM.
381 o       Add multiple default settings: q0, q1, q2, qn, qr.
383 o       Partition help into sections, and add a section for transformation
384         data file help.
386 o       Add a device type for the XVP610 camera in 640x480 mode.
388 o       Modify the divisor in d2/render/ipc.h to ensure convergence when
389         using multiple varieties.
391 o       Add experimental handling for Bayer patterns.
393 o       Add experimental video stabilization options.
395 o       Add options to control output range.  By default, use the range of the
396         original frame.
398 o       For incremental rendering, add general filtering options.  Drizzling
399         options are no longer supported as such, but the help output offers
400         examples of how to emulate old drizzling/merging techniques (roughly).
402 o       Add options --fail-default and --fail-optimal to select the desired
403         failure mode.  --fail-default uses the default alignment in the case
404         of failure.
405         
406 o       Add option --ex, to support exclusion volumes.  Region exclusion was
407         first suggested to the author by Dewayne VanHoozer as a means of
408         solving the 'closed eye problem' in group photography.
410 o       Add a barrel distortion adjustment multiplier and rate options.
412 o       In d2/transformation.h, add parameters for barrel distortion correction.
413         In d2/tfile.h, add new barrel distortion command 'B'.  The approach
414         taken is based on that of Helmut Dersch's PanoTools.  (i.e., a
415         polynomial in radial distance is used.)
417 o       Increment the latest supported transformation file syntax to version
418         3.  This version supports transformation of the original frame, as
419         well as other new features described above.
421 o       Move d2/gpt.h to d2/transformation.h.
423 o       In d2::align, add support for original frame transformations.
425 o       In d2::align::diff() and d2::align::set_exposure_ratio(), treat cases
426         with and without extension identically.
428 o       Report unrecognized transformation file commands as errors instead of
429         warnings.
431 o       In the transformation data file handler, report incompatible
432         transformation types as an error instead of as a warning.
435 0.6.0 2004-Feb-10
437 o       Add a generalized, but rudimentary, implementation of Steve Mann's
438         notion of 'certainty'.  For more details, see
439         http://wearcam.org/comparametrics.pdf
441 o       Make stdin filter height and width independent of each other.
443 o       In the Irani-Peleg renderer, skip frames that fail to reach the match
444         threshold.
446 o       Convert some operations on pixels and points into vector syntax 
447         through C++ operator overloading.
449 o       Add command-line options to select plain or raw PNM/PPM formats.  Remove
450         makefile variable PLAIN.
452 o       Add command-line options to select 8/16 bits per channel.  Remove
453         makefile variable BITS.
455 o       Revise the device configuration xvp610_320x240 to use a new
456         filter, reflecting driver updates (see the relevant web page
457         http://auricle.dyndns.org/xvp610/ ) and support for non-linear
458         colorspace point-spread functions.
460 o       In the Irani-Peleg renderer, use a discrete Fourier transform to
461         ensure that each (point-spread function, backprojection kernel) pair
462         satisfies condition (9) from theorem 4.1 in the source paper.
464 o       Add a point-spread function rasterizer.  
466 o       Extend the --replace option to support drizzling.
468 o       Add support for exposure registration (i.e., matching of exposure
469         between different frames).
471 o       Change -Os to -O2 in the Makefile, since -Os no longer achieves speedup
472         in the most critical codepaths.
474 o       Add command-line support for summation of point-spread functions.
476 o       Add a polymorphic point-spread function type psf and convert all
477         external interfaces of ipc.h and usm.h (formerly hf-enhance.h) to use
478         this type.  
480 o       Fix memory leak in d2/render/combine.h:get_image().  (This fix is also
481         included in a patch for 0.5.1.)
483 o       Modify the USM renderer to write output when incremental output is
484         enabled.
486 o       In the USM renderer, now only defined pixel values contribute to the
487         mask.  Also, undefined values are no longer masked.
489 o       Update e-mail address information.
491 o       Modify the Irani-Peleg calibration script into a general point-spread
492         function calibration script, using a new built-in point-spread function
493         evaluation module to rate candidates.
495 o       Irani-Peleg and USM (High-frequency enhancement) renderers now
496         use the same point-spread function configurations.  New options --ips,
497         --usm, --lpsf, --nlpsf, and --device subsume and extend the
498         functionality provided by options --ip, --ipc, and --hf-enhance.
500 o       Add support for convolutions in non-linear colorspace.  This feature
501         is enabled and configured by the command-line option --nlpsf.  (See
502         also the item above.)
504 o       Linearize channel values within internal data structures so that most 
505         ALE operations are performed on linear data.  Steve Mann discusses the
506         use of linear representations in image processing, e.g. in his paper
507         http://wearcam.org/comparametrics.pdf .  We assume a simple power-law
508         response by default.
510 o       Modify the image class to use a floating-point data type for 
511         storing pixels.
513 o       Modify the README to remove information covered in the User Manual.
515 o       Revise identifiers and comments in d2/render/ipc.h to better reflect
516         the terminology used in the source paper by Irani and Peleg.
518 o       Consoldiate code for computing the position and dimensions of a pixel in a
519         new coordinate system, and use this new abstraction to reduce the code
520         size of d2/render/ipc.h and d2/render/drizzle.h (Irani-Peleg and
521         drizzling code, respectively).
523 o       Change several instances of 'double', 'float', and 'my_real' to
524         specialized floating-point types 'ale_real', 'ale_pos', 'ale_sreal',
525         and 'ale_accum'.
527 o       Fix offset calculation in d2/render/ipc.h.  This is necessary for
528         Irani-Peleg rendering of image mosaics extending upwards or to the
529         left of the original frame.  (This fix is also included in a patch for
530         0.5.1.)
532 o       Move classes treating snapshots as two-dimensional data to directory
533         'd2' and create an associated C++ namespace.  We can't use '2d' to
534         label the namespace, because the C++ grammar won't allow it.
537 0.5.1 2003-Nov-19
539 o       Several of the changes below are based on a suggestion by Bert
540         Douglas regarding support for 16-bit-per-channel color.  See the README
541         for more information about relevant compilation options.
543 o       Add information to the README regarding new compilation options.
545 o       Modify the makefile to accept a variable BITS, and differentiate between
546         values BITS=8 and BITS=16.  The latter option causes the macro BITS_16
547         to be defined during compilation.
548         
549 o       Modify image_rw.h to handle 16-bit data when BITS_16 is defined.  Also,
550         differentiate between 8-bit and 16-bit ImageMagick builds by checking
551         MaxRGB.
553 o       In ppm.h, add carriage returns to the set of recognized whitespace
554         characters.
556 o       Modify ppm.h to read 16-bit binary PPM files (added to the PPM format
557         spec in April 2000).  
559 o       Modify ppm.h to read plain (ASCII) as well as raw (binary) PPM files.  
561 o       Add a Makefile option for writing plain (ASCII) PPM files instead of
562         raw (binary).  This option causes the macro PPM_PLAIN to be defined
563         during compilation.
564         
565 o       Modify ppm.h to write plain (ASCII) PPM files when PPM_PLAIN is defined.
567 o       Modify ppm.h to output 16-bit PPM files when BITS_16 is defined.
569 o       Modify ppm.h to scale input intensity values based on the internal
570         representation depth (8 or 16 bits per channel).
572 o       Add a file 'channel.h' to describe the color channel data type and
573         valid range, both being dependent on whether BITS_16 is defined.  Use
574         these generic values, where appropriate, throughout the ALE codebase.
577 0.5.0 2003-Nov-02
579 o       Remove certain cloning operations from align.h, but since cursory tests
580         indicate that scaling with --scale is much more expensive than cloning,
581         allow cloning to occur when scaling occurs.
583 o       Add more comment documentation to header files.
585 o       Emit a more informative error message when the PPM file handler
586         encounters a file that is not a well-formed PPM binary file.
588 o       Move rendering implementations to subdirectory 'render/'.
590 o       Modify semantics of alignment following by applying to file-loaded
591         initial transformations a delta transformation D = AB^-1, where B is
592         the previous frame's (unmodified) initial transformation, A is the
593         previous frame's final transformation, and ^-1 is the inverse operator.
594         Using --follow with --trans-load can now improve alignment success when
595         working with panoramic image mosaics.
597 o       We're not using simulated annealing, so remove comments that claim
598         otherwise.
600 o       Remove certain unsafe assumptions from ipc/* (now render/ipc/*); this
601         change includes a modification to ipc.h (now render/ipc.h).  Limits of
602         the rectangle used as an argument to the <type>::response() function
603         are now explicitly given rather than implied.
605 o       Change documentation for --replace.
608 0.4.8 2003-Aug-01
610 o       Modify Irani-Peleg renderer to produce incremental output.
612 o       Modify Monte Carlo alignment so that the same set of accumulated image
613         pixels is examined when comparing two transformations.
615 o       Add an option for additional upper-bound constraint of rotational
616         perturbation.  Jeff Epler had noted that the
617         perturb-upper/perturb-lower options alone may not be suited to working
618         with sets of higher-resolution images.  
620 o       Resolve a bug introduced in version 0.1.1 which had limited rotational
621         perturbation to 2 degrees.
623 o       Add an option to adjust the maximum level of detail used.  The default
624         maximum is 2/perturb, which matches the default for previous versions
625         of ALE.
627 o       Modify names of temporary files used in the calibration script.
630 0.4.7 2003-Jul-27
632 o       Add a replacement option suggested by Jeff Treece.  This option can
633         be used to facilitate video stabilization.
635 o       Irani-Peleg: add support for configurable modules, including 
636         a module that reads its configuration data from standard input
637         and a module calibrated for an IBM (Xirlink) XVP610 in 320x240
638         mode.  A rudimentary script for calibrating devices with unknown
639         projection functions has been included as ipc/ale-calibrate.
641 o       Irani-Peleg: don't truncate correction values in backprojection.
643 o       Irani-Peleg: don't multiply the weight function by a scale correction
644         factor in backprojection.
646 o       Rename render::operator()() to render::sync().  Update subclasses
647         accordingly.
650 0.4.6 2003-Jul-01
652 o       Allow --ip and --hf-enhance to be used together.  [Modify
653         ip::operator() and hf_filter::operator() so that multiple
654         post-processing filters can be used.]
656 o       Initialize the drizzled image to be uniformly black.  This fixes
657         a bug introduced in 0.4.2.
659 o       Allocate the correct size image for drizzling.  This fixes a bug
660         introduced in 0.4.5.
663 0.4.5 2003-Jun-23
665 o       Ensure correct transformation scaling and difference calculation after
666         alignment is complete, even if alignment terminates with a reduced
667         level of detail (i.e. perturb-lower > 2).
669 o       Separate the scale() function into two cases: scale() is reserved for
670         scale factors greater than or equal to one, as in user-specified
671         scaling; and scale_by_half() is used for the scale factor 0.5, needed
672         to provide multiple levels of detail in alignment.  Modify the
673         scale_by_half() case to reflect source pixel values more fairly.  (This
674         change affects alignment behavior at reduced levels of detail.)
676 o       Reduce whitespace in usage() message.
678 o       Modify align::diff() to use correctly scaled image offset values.
679         (Bugfix for alignment with --extend.)
681 o       Modify align.h so that the image definition array is correctly scaled
682         for all levels of detail.  (Bugfix for alignment with --extend.)
684 o       Modify image.h to correctly handle image offset values.  (Bugfix
685         for --extend operation.)
687 o       Remove call to stat() in image_rw.h.  This improves OS independence,
688         and apparently also allows URL-specification of images when compiled
689         with ImageMagick support.
691 o       Modify image file handler interface so that input files are not scaled.
692         Perform scaling, when necessary, outside of the file handler.  Since
693         unscaled data is needed by the drizzling and Irani-Peleg code, this
694         fixes bugs in those modules.  
697 0.4.4 2003-Jun-06
699 o       Modify the Monte Carlo pixel selection algorithm so that the expected
700         number of sampled pixels more closely matches the specified number in
701         typical cases.
703 o       Specify the binary mode flag to fopen() calls in the PPM file handler.
704         This change resolves a bug discovered by Benjamin Hill.
707 0.4.3 2003-May-30
709 o       Add support for Monte Carlo alignment of images, in which only a
710         random subset of pixels is sampled.
712 o       Add an option to disable incremental image output.
715 0.4.2 2003-May-23
717 o       Implement an image reconstruction option based on the work of Irani and
718         Peleg.
720 o       Clean up source; move rendering and alignment functions into separate
721         files.
723 o       Change valid drizzling diameter interval to (0,1].
725 o       Modify PPM file reader to correctly handle comments in PPM files; this
726         resolves a bug pointed out by Benjamin Hill.
728 o       Add missing typecast to resolve compile warning under GCC 3.2.
730 o       Make changes to gpt.h that may reduce the Euclidean alignment time.
732 o       Move ale.c to ale.cc to follow one of the many C++ naming conventions.
735 0.4.1 2003-Apr-28
737 o       Change language to C++.
739 o       Code cleanup in ale.c, image.h, and gpt.h.
741 o       Separate into a number of subsections the option descriptions in the
742         README 
744 o       Add URL information to README
746 o       Add an experimental drizzling implementation.  Research on drizzling
747         by Richard Hook and Andrew Fruchter was brought to the attention of 
748         the author by Dan Kaminsky.
750 o       Add an option to use the previous frame's final transformation as the
751         default alignment.
753 o       Change pixel weight data type so that more than 255 images can
754         be merged.
756 o       Add support for increased spatial extents.  Research on increased
757         spatial extents by Steve Mann was brought to the attention of the
758         author by Dan Egnor.
760 o       Modify the transformation algorithm to use transformations from the
761         domain of the input image to the range of the target image.  This
762         change is reflected in transformation files.  Maintain support for
763         old transformation file versions, however.
765 o       Add version information to transformation files and update the version
766         from 0 to 2.
769 0.4.0p1 2003-Apr-04
771 o       Merge a bugfix from Debian ALE package version 0.4.0-1.  Without this
772         fix, an assertion failure can occur when ImageMagick support is
773         enabled.  Original fix implemented by Nick Rusnov.  
776 0.4.0 2003-Mar-30
778 o       Add support for general scaling parameters (i.e. all scale 
779         factors >= 1.0).  --scale2, --scale4, and --scale8 are now deprecated, 
780         and replaced with a more general --scale=x argument.
782 o       Support enhancement of high frequencies even when the scale factor is 
783         1.0.
785 o       Modify the high-frequency filter algorithm to support filtering near
786         the border of an image.
788 o       Modify the high-frequency filter function so that the response is now
789         (4/n)^2 times what it used to be, where n is the scale factor.  
792 0.3.2 2003-Mar-26
794 o       Don't filter high frequencies if we're not enhancing them.  This 
795         improves efficiency, but should not affect output.
799 0.3.1 2003-Mar-25
801 o       Output average match statistic.
803 o       Update informational output to transformation files to include original 
804         frame.
806 o       Add support for post-enhancement of high-frequency details.
809 0.3.0 2003-Jan-17
811 o       Add support for loading and saving transformation data.
813 o       Add an option to set the upper bound on correction steps.
815 o       Modify Makefile to compile with size optimization, since this 
816         appears to improve speed characteristics in some cases.
818 o       Move transformation data structure and related functions to 
819         a separate header file.
822 0.2.0 2003-Jan-01
824 o       Add support for general projective transformations, and change/add
825         options as follows:
827                 '--translation' used to be      '--no-rotate'
828                 '--euclidean'   used to be      '--rotate'
829                 '--projective'  is a new option
832 0.1.2 2002-Dec-13
834 o       Add optional support for .jpg, .png, .tiff, and other file formats
835         through ImageMagick.  Translation using ImageMagick was suggested by
836         Nick Rusnov.
838 o       Don't segfault if a file can't be opened.
841 0.1.1 2002-Dec-09
843 o       Use reduced levels of detail in coarser alignment steps to increase
844         speed.
846 o       Change perturbation step lower-bound check from less-than ('<') to 
847         less-than-or-equal-to ('<=').  Change default lower bound
848         to .125 from .1 (the behavior is the same, but the value
849         makes more sense).
851 o       Change perturbation initial value to 32 pixels from
852         16 pixels, since coarse alignment is now less expensive.
854 o       Modify scale function so that the borders aren't 
855         corrupted (too badly).
858 0.1.0 2002-Nov-26
860 o       Add support for correction of rotation about the lens axis.
862 o       Add an optional match criterion for merging.
864 o       Add an option to adjust minimum step-size.
866 o       Add flags to specify which channels to use for alignment.  Use
867         a summation of all channels by default.
869 o       Add an option to modify the error metric exponent, and change
870         the default value from 1 to 2. 
872 o       Display information about how well a new image matches
873         the accumulated image.
875 o       Add a rule for ale.exe to the Makefile.  
878 0.0.0 2002-Oct-11
880 o       Initial release.