head 1.4; access; symbols pkgsrc-2016Q3:1.3.0.4 pkgsrc-2016Q3-base:1.3 pkgsrc-2016Q2:1.3.0.2 pkgsrc-2016Q2-base:1.3 pkgsrc-2016Q1:1.2.0.4 pkgsrc-2016Q1-base:1.2 pkgsrc-2015Q4:1.2.0.2 pkgsrc-2015Q4-base:1.2 pkgsrc-2015Q3:1.1.0.20 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.18 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.16 pkgsrc-2015Q1-base:1.1 pkgsrc-2014Q4:1.1.0.14 pkgsrc-2014Q4-base:1.1 pkgsrc-2014Q3:1.1.0.12 pkgsrc-2014Q3-base:1.1 pkgsrc-2014Q2:1.1.0.10 pkgsrc-2014Q2-base:1.1 pkgsrc-2014Q1:1.1.0.8 pkgsrc-2014Q1-base:1.1 pkgsrc-2013Q4:1.1.0.6 pkgsrc-2013Q4-base:1.1 pkgsrc-2013Q3:1.1.0.4 pkgsrc-2013Q3-base:1.1 pkgsrc-2013Q2:1.1.0.2 pkgsrc-2013Q2-base:1.1; locks; strict; comment @// @; 1.4 date 2016.11.06.16.08.00; author adam; state dead; branches; next 1.3; commitid mi3UbNw8bT4vl5tz; 1.3 date 2016.04.07.19.23.26; author adam; state Exp; branches; next 1.2; commitid Gtsy7g8viGP3hJ1z; 1.2 date 2015.10.18.15.56.56; author adam; state Exp; branches; next 1.1; commitid h5cx3zPziqAXEBFy; 1.1 date 2013.06.27.15.51.49; author joerg; state Exp; branches; next ; commitid gNPAZcv6EupQIgVw; desc @@ 1.4 log @Hugin 2016.2 * Allow reading of image positions from Papywizard XML files. * Internal blender and verdandi got the possibility to blend seams as alternative to current hard seam. * The display of the control point error (after optimizing and in fast preview window) and the control point list window can now limited to take only control points in active images into account (menu Edit>Optimize only active images, connected with the setting on the optimizer tab). * Improvements to mask tab in Hugin (edit crop of all images of the same lens at once) and find panorama dialog in PTBatcherGUI (remove images from found panoramas, split found panorama into two). * Several improvements for Mac OS. * Fixes several issues with fast preview window which could result in random crashes (uninitialized variables, memory leaks). @ text @$NetBSD: patch-src_hugin1_icpfind_AutoCtrlPointCreator.cpp,v 1.3 2016/04/07 19:23:26 adam Exp $ Fix building with Clang. --- src/hugin1/icpfind/AutoCtrlPointCreator.cpp.orig 2016-02-19 22:03:11.000000000 +0000 +++ src/hugin1/icpfind/AutoCtrlPointCreator.cpp @@@@ -28,7 +28,7 @@@@ #include "panoinc.h" #include -#if defined (__GNUC__) && !defined (__FreeBSD__) +#if defined(__GNUC__) && !defined(__FreeBSD__) && !defined(__clang__) #include #endif @ 1.3 log @Changes 2016.0.0: The first improvement concerns icc color profiles: Hugin has already copied the icc profile into the output file when stitching panoramas. Now also the display in the GUIs takes the icc profile into account. Celeste_standalone and cpfind read now also the icc profile and use it during its processings. Beside the known output options Hugin now includes a user defined output sequence. With this option the user can create more flexible variants for the output. As an example a zero-noise output sequence is delivered with Hugin 2016.0. Some buttons in the Hugin GUI now have a context menu for easier access to some function: Show all in the fast preview window to allow better interaction with stacked projects. Celeste button in the cp tab (panorama editor): the button can now be used to create control points or to clean control points with celeste or statistical methods. The identify tool in the fast preview window now also shows the image numbers on top of the images. (This can be suppressed by pressing the alt button). @ text @d1 1 a1 1 $NetBSD: patch-src_hugin1_icpfind_AutoCtrlPointCreator.cpp,v 1.2 2015/10/18 15:56:56 adam Exp $ @ 1.2 log @Changes 2015.0.0: Hugin 2015.0 has a number of new features. Most of the changes are under the hood to improve stability, allow easier maintenance and easier addition of new features. The makefile based stitching engine has been replaced with direct calls to the underlying programs. This should reduce the overhead of calling the same program too often and so speed up the whole process. Hopefully this also allows the usage of more unusual characters in the filename. Instead of pto2mk and make we now have hugin_executor which can also be used for running the assistant from the command line. Hugin now has it's own blender, verdandi, based on a watershed algorithm, which has been included in 'nona'. verdandi can be chosen as the blender by choosing "builtin" in the stitcher tab, and can also be set in the Preferences. verdandi can also be called as a command line tool. The lensfun library has been removed as it did not fulfill our expectations. It has been replaced with our own camera and lens database which uses a data mining approach and operates automatically without user intervention. Geometric distortion and vignetting data have to be loaded manually. The fast preview window has a new tool to add or remove control points to selected areas in the output projection. Automatic exposure stack detection is now applied when loading images, and an option has been added to unlink image position when adding stacks. The fine-tune and auto-estimate functions in the control point tab have been made projection aware. It should now work also with images with different fov or different projections. The fine-tune feature has had a significant speed up when Hugin is compiled with the libfftw3 library (optional). PTBatcherGUI has more choice for the end of the process: depending on the operating system the PTBatcherGUI can be closed, the computer can be shut down or send to the hibernate mode. PTBatcherGUI now shows the thumbnails when searching for images in directories. Many of the underlying tools in hugin are now able to use available cpu cores. @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- src/hugin1/icpfind/AutoCtrlPointCreator.cpp.orig 2014-06-14 11:02:49.000000000 +0000 d11 2 a12 2 -#ifdef __GNUC__ +#if defined(__GNUC__) && !defined(__clang__) @ 1.1 log @Don't include libstdc++ extension that isn't really used. Don't declare a function void if it returns values. Fix template lookup. Always use correct C++ syntax. Add missing header. @ text @d3 3 a5 1 --- src/hugin1/icpfind/AutoCtrlPointCreator.cpp.orig 2013-06-25 22:01:10.000000000 +0000 d7 1 a7 1 @@@@ -28,9 +28,6 @@@@ d12 3 a14 2 -#include -#endif a15 2 #include "PT/Panorama.h" #include "PT/ImageGraph.h" @