/************************************************************************/ /* */ /* Copyright 1998-2002 by Ullrich Koethe */ /* Cognitive Systems Group, University of Hamburg, Germany */ /* */ /* This file is part of the VIGRA computer vision library. */ /* The VIGRA Website is */ /* http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/ */ /* Please direct questions, bug reports, and contributions to */ /* koethe@informatik.uni-hamburg.de or */ /* vigra@kogs1.informatik.uni-hamburg.de */ /* */ /* Permission is hereby granted, free of charge, to any person */ /* obtaining a copy of this software and associated documentation */ /* files (the "Software"), to deal in the Software without */ /* restriction, including without limitation the rights to use, */ /* copy, modify, merge, publish, distribute, sublicense, and/or */ /* sell copies of the Software, and to permit persons to whom the */ /* Software is furnished to do so, subject to the following */ /* conditions: */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the */ /* Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES */ /* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND */ /* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT */ /* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, */ /* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING */ /* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR */ /* OTHER DEALINGS IN THE SOFTWARE. */ /* */ /************************************************************************/ #ifndef VIGRA_BASICGEOMETRY_HXX #define VIGRA_BASICGEOMETRY_HXX #include "vigra/error.hxx" #include "vigra/stdimage.hxx" #include "vigra/copyimage.hxx" #include namespace vigra { /** \addtogroup GeometricTransformations Geometric Transformations */ //@{ /********************************************************/ /* */ /* rotateImage */ /* */ /********************************************************/ /** \brief Rotate image by a multiple of 90 degrees. This algorithm just copies the pixels in the appropriate new order. It expects the destination image to have the correct shape for the desired rotation. Declarations: pass arguments explicitly: \code namespace vigra { template void rotateImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, int rotation); } \endcode use argument objects in conjunction with \ref ArgumentObjectFactories: \code namespace vigra { template inline void rotateImage(triple src, pair dest, int rotation); } \endcode Usage: \#include "vigra/basicgeometry.hxx"
Namespace: vigra \code Image dest(src.height(), src.width()); // note that width and height are exchanged vigra::rotateImage(srcImageRange(src), destImage(dest), 90); \endcode Required Interface: \code SrcImageIterator src_upperleft, src_lowerright; DestImageIterator dest_upperleft; SrcAccessor src_accessor; dest_accessor.set(src_accessor(src_upperleft), dest_upperleft); \endcode Preconditions: \code src_lowerright.x - src_upperleft.x > 1 src_lowerright.y - src_upperleft.y > 1 \endcode */ template void rotateImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, int rotation) { int x, y; int ws = end.x - is.x; int hs = end.y - is.y; vigra_precondition(rotation % 90 == 0, "rotateImage(): " "This function rotates images only about multiples of 90 degree"); rotation = rotation%360; if (rotation < 0) rotation += 360; switch(rotation) { case 0: copyImage(is, end, as, id, ad); break; case 90: is.x += (ws-1); for(x=0; x != ws; x++, is.x--, id.y++) { typename SrcIterator::column_iterator cs = is.columnIterator(); typename DestIterator::row_iterator rd = id.rowIterator(); for(y=0; y != hs; y++, cs++, rd++) { ad.set(as(cs), rd); } } break; case 180: end.x--; end.y--; for(x=0; x != ws; x++, end.x--, id.x++) { typename SrcIterator::column_iterator cs = end.columnIterator(); typename DestIterator::column_iterator cd = id.columnIterator(); for(y=0; y != hs; y++, cs--, cd++) { ad.set(as(cs), cd); } } break; case 270: is.y += (hs-1); for(x=0; x != ws; x++, is.x++, id.y++) { typename SrcIterator::column_iterator cs = is.columnIterator(); typename DestIterator::row_iterator rd = id.rowIterator(); for(y=0; y != hs; y++, cs--, rd++) { ad.set(as(cs), rd); } } break; default: //not needful, because of the exception handig in if-statement vigra_fail("internal error"); } } template inline void rotateImage(triple src, pair dest, int rotation) { rotateImage(src.first, src.second, src.third, dest.first, dest.second, rotation); } /********************************************************/ /* */ /* reflectImage */ /* */ /********************************************************/ enum Reflect{horizontal = 1, vertical = 2}; /** \brief Reflect image horizontally or vertically. The reflection direction refers to the reflection axis, i.e. horizontal reflection turns the image upside down, vertical reflection changes left for right. The directions are selected by the enum values vigra::horizontal and vigra::vertical. The two directions can also be "or"ed together to perform both reflections simultaneously (see example below) -- this is the same as a 180 degree rotation. Declarations: pass arguments explicitly: \code namespace vigra { template void reflectImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, Reflect axis); } \endcode use argument objects in conjunction with \ref ArgumentObjectFactories: \code namespace vigra { template inline void reflectImage(triple src, pair dest, Reflect axis); } \endcode Usage: \#include "vigra/basicgeometry.hxx"
Namespace: vigra \code Image dest(src.width(), src.height()); vigra::reflectImage(srcImageRange(src), destImage(dest), vigra::horizontal | vigra::vertical); \endcode Required Interface: \code SrcImageIterator src_upperleft, src_lowerright; DestImageIterator dest_upperleft; SrcAccessor src_accessor; dest_accessor.set(src_accessor(src_upperleft), dest_upperleft); \endcode Preconditions: \code src_lowerright.x - src_upperleft.x > 1 src_lowerright.y - src_upperleft.y > 1 \endcode */ template void reflectImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, Reflect reflect) { int ws = end.x - is.x; int hs = end.y - is.y; int x, y; if(reflect == horizontal) {//flipImage is.y += (hs-1); for(x=0; x inline void reflectImage(triple src, pair dest, Reflect reflect) { reflectImage(src.first, src.second, src.third, dest.first, dest.second, reflect); } /********************************************************/ /* */ /* transposeImage */ /* */ /********************************************************/ enum Transpose{major = 1, minor = 2}; /** \brief Transpose an image over the major or minor diagonal. The transposition direction refers to the axis, i.e. major transposition turns the upper right corner into the lower left one, whereas minor transposition changes the upper left corner into the lower right one. The directions are selected by the enum values vigra::major and vigra::minor. The two directions can also be "or"ed together to perform both reflections simultaneously (see example below) -- this is the same as a 180 degree rotation. Declarations: pass arguments explicitly: \code namespace vigra { template void transposeImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, Transpose axis); } \endcode use argument objects in conjunction with \ref ArgumentObjectFactories: \code namespace vigra { template inline void transposeImage(triple src, pair dest, Transpose axis); } \endcode Usage: \#include "vigra/basicgeometry.hxx"
Namespace: vigra \code Image dest(src.width(), src.height()); vigra::transposeImage(srcImageRange(src), destImage(dest), vigra::major | vigra::minor); \endcode Required Interface: \code SrcImageIterator src_upperleft, src_lowerright; DestImageIterator dest_upperleft; SrcAccessor src_accessor; dest_accessor.set(src_accessor(src_upperleft), dest_upperleft); \endcode Preconditions: \code src_lowerright.x - src_upperleft.x > 1 src_lowerright.y - src_upperleft.y > 1 \endcode */ template void transposeImage(SrcIterator is, SrcIterator end, SrcAccessor as, DestIterator id, DestAccessor ad, Transpose transpose) { int ws = end.x - is.x; int hs = end.y - is.y; int x, y; if(transpose == major) {//Die Funktion spiegelt das Bild um (0,0) (1,1) Diagonale for(x=0; x != ws; x++, is.x++, id.y++) { typename SrcIterator::column_iterator cs = is.columnIterator(); typename DestIterator::row_iterator rd = id.rowIterator(); for(y=0; y != hs; y++, cs++, rd++) { ad.set(as(cs), rd); } } } else if(transpose == minor) {//Die Funktion spiegelt das Bild (1,0) (0,1) Diagonale end.x--; end.y--; for(x=0; x != ws; x++, --end.x, ++id.y) { typename SrcIterator::column_iterator cs = end.columnIterator(); typename DestIterator::row_iterator rd = id.rowIterator(); for(y=0; y != hs; y++, --cs, ++rd) { ad.set(as(cs), rd); } } } else if(transpose == (major | minor)) {//flipFlopImage //??? end.x--; end.y--; for(x=0; x != ws; x++, end.x--, id.x++) { typename SrcIterator::column_iterator cs = end.columnIterator(); typename DestIterator::column_iterator cd = id.columnIterator(); for(y=0; y != hs; y++, cs--, cd++) { ad.set(as(cs), cd); } } } else vigra_fail("transposeImage(): " "This function transposes major or minor," " 'and' is included"); } template inline void transposeImage(triple src, pair dest, Transpose transpose) { transposeImage(src.first, src.second, src.third, dest.first, dest.second, transpose); } /********************************************************/ /* */ /* resampleLine */ /* */ /********************************************************/ /* * Vergroessert eine Linie um einen Faktor. * Ist z.B. der Faktor = 4 so werden in der * neuen Linie(Destination) jedes Pixel genau 4 mal * vorkommen, also es findet auch keine Glaetung * statt (NoInterpolation). Als Parameter sollen * der Anfangs-, der Enditerator und der Accessor * der Ausgangslinie (Source line), der Anfangsiterator * und Accessor der Ziellinie (destination line) und * anschliessend der Faktor um den die Linie (Zeile) * vergroessert bzw. verkleinert werden soll. */ template void resampleLine(SrcIterator src_iter, SrcIterator src_iter_end, SrcAccessor src_acc, DestIterator dest_iter, DestAccessor dest_acc, double factor) { // The width of the src line. int src_width = src_iter_end - src_iter; vigra_precondition(src_width > 0, "resampleLine(): input image too small."); vigra_precondition(factor > 0.0, "resampleLine(): factor must be positive."); if (factor >= 1.0) { int int_factor = (int)factor; double dx = factor - int_factor; double saver = dx; for ( ; src_iter != src_iter_end ; ++src_iter, saver += dx) { if (saver >= 1.0) { saver = saver - (int)saver; dest_acc.set(src_acc(src_iter), dest_iter); ++dest_iter; } for(int i = 0 ; i < int_factor ; i++, ++dest_iter) { dest_acc.set(src_acc(src_iter), dest_iter); } } } else { DestIterator dest_end = dest_iter + (int)VIGRA_CSTD::ceil(src_width*factor); factor = 1.0/factor; int int_factor = (int)factor; double dx = factor - int_factor; double saver = dx; src_iter_end -= 1; for ( ; src_iter != src_iter_end && dest_iter != dest_end ; ++dest_iter, src_iter += int_factor, saver += dx) { if (saver >= 1.0) { saver = saver - (int)saver; ++src_iter; } dest_acc.set(src_acc(src_iter), dest_iter); } if (dest_iter != dest_end) { dest_acc.set(src_acc(src_iter_end), dest_iter); } } } inline int sizeForResamplingFactor(int oldsize, double factor) { return (factor < 1.0) ? (int)VIGRA_CSTD::ceil(oldsize * factor) : (int)(oldsize * factor); } /********************************************************/ /* */ /* resampleImage */ /* */ /********************************************************/ /** \brief Resample image by a given factor. This algorithm is very fast and does not require any arithmetic on the pixel types. The input image must have a size of at least 2x2. Destiniation pixels are directly copied from the appropriate source pixels. The size of the result image is the product of factor and the original size, where we round up if factor < 1.0 and down otherwise. This size calculation is the main difference to the convention used in the similar function \ref resizeImageNoInterpolation(): there, the result size is calculated as n*(old_width-1)+1 and n*(old_height-1)+1. This is because \ref resizeImageNoInterpolation() does not replicate the last pixel in every row/column in order to make it compatible with the other functions of the resizeImage... family. It should also be noted that resampleImage() is implemented so that an enlargement followed by the corresponding shrinking reproduces the original image. The function uses accessors. Declarations: pass arguments explicitly: \code namespace vigra { template void resampleImage(SrcIterator is, SrcIterator iend, SrcAccessor sa, DestIterator id, DestAccessor ad, double factor); } \endcode use argument objects in conjunction with \ref ArgumentObjectFactories: \code namespace vigra { template inline void resampleImage(triple src, pair dest, double factor); } \endcode Usage: \#include "vigra/basicgeometry.hxx"
Namespace: vigra \code double factor = 2.0; Image dest((int)(factor*src.width()), (int)(factor*src.height())); vigra::resampleImage(srcImageRange(src), destImage(dest), factor); \endcode Required Interface: \code SrcImageIterator src_upperleft, src_lowerright; DestImageIterator dest_upperleft; SrcAccessor src_accessor; dest_accessor.set(src_accessor(src_upperleft), dest_upperleft); \endcode Preconditions: \code src_lowerright.x - src_upperleft.x > 1 src_lowerright.y - src_upperleft.y > 1 \endcode */ template void resampleImage(SrcIterator is, SrcIterator iend, SrcAccessor sa, DestIterator id, DestAccessor ad, double factor) { int width_old = iend.x - is.x; int height_old = iend.y - is.y; //Bei Verkleinerung muss das dest-Bild ceiling(src*factor), da z.B. //aus 6x6 grossem Bild wird eins 18x18 grosses gemacht bei Vergroesserungsfaktor 3.1 //umgekehrt damit wir vom 18x18 zu 6x6 (und nicht 5x5) bei Vergroesserung von 1/3.1 //muss das kleinste Integer das groesser als 18/3.1 ist genommen werden. int height_new = sizeForResamplingFactor(height_old, factor); int width_new = sizeForResamplingFactor(width_old, factor); vigra_precondition((width_old > 1) && (height_old > 1), "resampleImage(): " "Source image to small.\n"); vigra_precondition((width_new > 1) && (height_new > 1), "resampleImage(): " "Destination image to small.\n"); typedef typename SrcAccessor::value_type SRCVT; typedef BasicImage TmpImage; typedef typename TmpImage::traverser TmpImageIterator; BasicImage tmp(width_old, height_new); int x,y; typename BasicImage::Iterator yt = tmp.upperLeft(); for(x=0; x inline void resampleImage(triple src, pair dest, double factor) { resampleImage(src.first, src.second, src.third, dest.first, dest.second, factor); } //@} } // namespace vigra #endif /* VIGRA_BASICGEOMETRY_HXX */