There have been lots of cleanups, fixes of compiler warnings, bugfixes, and
general refactoring since 2.9.18, plus we have some new features:
* There are new Tpy and Tpr parameters, these allow the 'mosaic mode'
projection plane to be rotated relative to the panorama view.
* Added Hammer output projection, see: https://en.wikipedia.org/wiki/Hammer_projection
* Updated PSD functions to write PSB (large file) format too, note that this
functionality is part of the PTmender tool and not available to Hugin/nona
directly.
* Various bugs have been fixed in these projections: triplane output,
architectural output, orthographic output and Thoby input.
* Other bugfixes that may be noticed are: a check for invalid resolutions in
TIFF files, formating sequence for x86_64, cropping images that go outside the
image boundary, and PSD and PICT image format improvements.
* There have been fixes for building on various platforms: OS X 10.6/10.8,
automake 1.12, MinGW, cmake, Visual Studio 2010 and Visual Studio 2012+
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done
Also included are:
* PTOptimizer, a utility for optimising control points.
* panoinfo a utility for querying the library version.
* PTmender a replacement for PTStitcher.
* PTblender implements just the colour and brightness correction of PTmender.
* PTtiff2psd Converts a set of TIFF files into a PSD file.
* PTuncrop Converts 'cropped TIFF' files into 'normal' TIFF files.