From 3a743006a03238ec80b356da5c794e8b5b379e20 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Fri, 8 Jun 2012 13:45:00 +0000 Subject: Upgrade graphics/vigra from 1.7.1 to 1.8.0 PR: ports/168833 Submitted by: fluffy@ --- graphics/lprof-devel/Makefile | 4 +- graphics/vigra/Makefile | 15 +- graphics/vigra/distinfo | 4 +- .../vigra/files/patch-include__vigra__mathutil.hxx | 24 ++ graphics/vigra/files/patch-png.cxx | 20 - graphics/vigra/pkg-plist | 444 +++++++++++---------- 6 files changed, 284 insertions(+), 227 deletions(-) create mode 100644 graphics/vigra/files/patch-include__vigra__mathutil.hxx delete mode 100644 graphics/vigra/files/patch-png.cxx (limited to 'graphics') diff --git a/graphics/lprof-devel/Makefile b/graphics/lprof-devel/Makefile index 56f8e86c77de..c874e7ee07e1 100644 --- a/graphics/lprof-devel/Makefile +++ b/graphics/lprof-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= lprof PORTVERSION= 20080514 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ \ ${MASTER_SITE_LOCAL:S|%SUBDIR%|amdmi3|} @@ -19,7 +19,7 @@ COMMENT= Open source color profiler LIB_DEPENDS= lcms.1:${PORTSDIR}/graphics/lcms \ jpeg.11:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff \ - vigraimpex.3:${PORTSDIR}/graphics/vigra + vigraimpex.4:${PORTSDIR}/graphics/vigra USE_BZIP2= yes USE_XORG= x11 xext sm ice xxf86vm diff --git a/graphics/vigra/Makefile b/graphics/vigra/Makefile index 7667d459e02f..415953f0aca1 100644 --- a/graphics/vigra/Makefile +++ b/graphics/vigra/Makefile @@ -10,8 +10,7 @@ # The hugin port is a gui interface to interact with panorama tools. PORTNAME= vigra -PORTVERSION= 1.7.1 -PORTREVISION= 4 +PORTVERSION= 1.8.0 CATEGORIES= graphics MASTER_SITES= http://hci.iwr.uni-heidelberg.de/vigra/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -55,8 +54,20 @@ LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3 .endif +.if !defined(WITHOUT_VIGRA_FFTWF) +LIB_DEPENDS+= fftw3f:${PORTSDIR}/math/fftw3-float +.endif + .if !defined(WITHOUT_VIGRA_HDF5) LIB_DEPENDS+= hdf5.7:${PORTSDIR}/science/hdf5-18 .endif +.if !defined(WITHOUT_VIGRA_OPENEXR) +LIB_DEPENDS+= IlmImf.6:${PORTSDIR}/graphics/OpenEXR +.endif + +post-patch: +# FIXME: This is ugly + @${RM} ${WRKSRC}/include/vigra/*.orig + .include diff --git a/graphics/vigra/distinfo b/graphics/vigra/distinfo index 15d4839829fe..b6e660007ea8 100644 --- a/graphics/vigra/distinfo +++ b/graphics/vigra/distinfo @@ -1,2 +1,2 @@ -SHA256 (vigra-1.7.1-src.tar.gz) = 4fe9052085330300f8c8564021b67fc2c5d534132ef29e781d839feb5d5c0ec2 -SIZE (vigra-1.7.1-src.tar.gz) = 28481160 +SHA256 (vigra-1.8.0-src.tar.gz) = fc3a87d220ce23e79d163c58dd280fd534b81a870d2b140f1d072bbc82c78214 +SIZE (vigra-1.8.0-src.tar.gz) = 29814914 diff --git a/graphics/vigra/files/patch-include__vigra__mathutil.hxx b/graphics/vigra/files/patch-include__vigra__mathutil.hxx new file mode 100644 index 000000000000..7e2b1bf613a6 --- /dev/null +++ b/graphics/vigra/files/patch-include__vigra__mathutil.hxx @@ -0,0 +1,24 @@ +--- include/vigra/mathutil.hxx.orig 2011-09-20 18:38:36.000000000 +0000 ++++ include/vigra/mathutil.hxx +@@ -149,7 +149,7 @@ VIGRA_DEFINE_UNSIGNED_ABS(unsigned long + VIGRA_DEFINE_MISSING_ABS(signed char) + VIGRA_DEFINE_MISSING_ABS(signed short) + +-#if defined(_MSC_VER) && _MSC_VER < 1600 ++#if defined(_MSC_VER) && _MSC_VER < 1600 || defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 2) || defined(__clang__) + VIGRA_DEFINE_MISSING_ABS(signed long long) + #endif + +@@ -553,7 +553,12 @@ VIGRA_DEFINE_NORM(int) + VIGRA_DEFINE_NORM(unsigned int) + VIGRA_DEFINE_NORM(long) + VIGRA_DEFINE_NORM(unsigned long) ++#if defined(__FreeBSD__) || defined(__DragonFly__) ++inline NormTraits::SquaredNormType squaredNorm(long long t) { return sq((long int) t); } ++inline NormTraits::NormType norm(long long t) { return abs((long int) t); } ++#else + VIGRA_DEFINE_NORM(long long) ++#endif + VIGRA_DEFINE_NORM(unsigned long long) + VIGRA_DEFINE_NORM(float) + VIGRA_DEFINE_NORM(double) diff --git a/graphics/vigra/files/patch-png.cxx b/graphics/vigra/files/patch-png.cxx deleted file mode 100644 index d6fd4f212143..000000000000 --- a/graphics/vigra/files/patch-png.cxx +++ /dev/null @@ -1,20 +0,0 @@ ---- src/impex/png.cxx.orig 2010-12-03 18:40:34.000000000 +0100 -+++ src/impex/png.cxx 2012-05-05 07:53:39.000000000 +0200 -@@ -320,7 +320,7 @@ - #if (PNG_LIBPNG_VER > 10008) && defined(PNG_READ_iCCP_SUPPORTED) - char * dummyName; - int dummyCompType; -- char * profilePtr; -+ png_byte * profilePtr; - png_uint_32 profileLen; - if (png_get_valid( png, info, PNG_INFO_iCCP )) { - png_get_iCCP(png, info, &dummyName, &dummyCompType, &profilePtr, &profileLen) ; -@@ -592,7 +592,7 @@ - // set icc profile - if (iccProfile.size() > 0) { - png_set_iCCP(png, info, (png_charp)("icc"), 0, -- (png_charp)iccProfile.begin(), (png_uint_32)iccProfile.size()); -+ (const png_byte *)iccProfile.begin(), (png_uint_32)iccProfile.size()); - } - #endif - diff --git a/graphics/vigra/pkg-plist b/graphics/vigra/pkg-plist index be004e39b221..fac940a33f33 100644 --- a/graphics/vigra/pkg-plist +++ b/graphics/vigra/pkg-plist @@ -2,15 +2,20 @@ bin/vigra-config include/vigra/accessor.hxx include/vigra/affine_registration.hxx include/vigra/affinegeometry.hxx +include/vigra/algorithm.hxx include/vigra/array_vector.hxx +include/vigra/axistags.hxx include/vigra/basicgeometry.hxx include/vigra/basicimage.hxx include/vigra/basicimageview.hxx +include/vigra/bessel.hxx include/vigra/bordertreatment.hxx include/vigra/boundarytensor.hxx include/vigra/box.hxx +include/vigra/bucket_queue.hxx include/vigra/cellconfigurations.hxx include/vigra/cellimage.hxx +include/vigra/clebsch-gordan.hxx include/vigra/codec.hxx include/vigra/colorconversions.hxx include/vigra/combineimages.hxx @@ -43,6 +48,7 @@ include/vigra/impex.hxx include/vigra/initimage.hxx include/vigra/inspectimage.hxx include/vigra/interpolating_accessor.hxx +include/vigra/invariant_features3D.hxx include/vigra/iteratoradapter.hxx include/vigra/iteratortags.hxx include/vigra/iteratortraits.hxx @@ -61,9 +67,13 @@ include/vigra/metaprogramming.hxx include/vigra/multi_array.hxx include/vigra/multi_convolution.hxx include/vigra/multi_distance.hxx +include/vigra/multi_fft.hxx include/vigra/multi_impex.hxx include/vigra/multi_iterator.hxx +include/vigra/multi_localminmax.hxx +include/vigra/multi_math.hxx include/vigra/multi_morphology.hxx +include/vigra/multi_opencl.hxx include/vigra/multi_pointoperators.hxx include/vigra/multi_resize.hxx include/vigra/multi_tensorutilities.hxx @@ -73,6 +83,8 @@ include/vigra/nonlineardiffusion.hxx include/vigra/numerictraits.hxx include/vigra/numpy_array.hxx include/vigra/numpy_array_converters.hxx +include/vigra/numpy_array_taggedshape.hxx +include/vigra/numpy_array_traits.hxx include/vigra/orientedtensorfilters.hxx include/vigra/pixelneighborhood.hxx include/vigra/polygon.hxx @@ -81,6 +93,7 @@ include/vigra/promote_traits.hxx include/vigra/promote_traits.hxx.py include/vigra/python_utility.hxx include/vigra/quadprog.hxx +include/vigra/quaternion.hxx include/vigra/random.hxx include/vigra/random_forest.hxx include/vigra/random_forest/features.hxx @@ -127,18 +140,20 @@ include/vigra/tinyvector.hxx include/vigra/transformimage.hxx include/vigra/tuple.hxx include/vigra/union_find.hxx +include/vigra/unsupervised_decomposition.hxx include/vigra/utilities.hxx include/vigra/voxelneighborhood.hxx include/vigra/watersheds.hxx include/vigra/watersheds3d.hxx +include/vigra/wigner-matrix.hxx include/vigra/windows.h -lib/vigra/vigra-targets.cmake -lib/vigra/vigra-targets-release.cmake +lib/libvigraimpex.so +lib/libvigraimpex.so.4 +lib/libvigraimpex.so.4.180 lib/vigra/VigraConfig.cmake lib/vigra/VigraConfigVersion.cmake -lib/libvigraimpex.so.3.171 -lib/libvigraimpex.so.3 -lib/libvigraimpex.so +lib/vigra/vigra-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/vigra/vigra-targets.cmake %%DOCSDIR%%/vigra/AlgebraicConcepts.html %%DOCSDIR%%/vigra/ArgumentObjectFactories.html %%DOCSDIR%%/vigra/BorderTreatmentMode.html @@ -172,25 +187,32 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/RGBValueTraits.html %%DOCSDIR%%/vigra/RationalTraits.html %%DOCSDIR%%/vigra/SquareRootTraits.html +%%DOCSDIR%%/vigra/TimingMacros.html %%DOCSDIR%%/vigra/TinyVectorTraits.html %%DOCSDIR%%/vigra/TupleTypes.html %%DOCSDIR%%/vigra/Utilities.html %%DOCSDIR%%/vigra/VigraMatlab.html -%%DOCSDIR%%/vigra/accessor_8hxx-source.html -%%DOCSDIR%%/vigra/affine__registration_8hxx-source.html -%%DOCSDIR%%/vigra/affinegeometry_8hxx-source.html +%%DOCSDIR%%/vigra/accessor_8hxx_source.html +%%DOCSDIR%%/vigra/affine__registration_8hxx_source.html +%%DOCSDIR%%/vigra/affinegeometry_8hxx_source.html +%%DOCSDIR%%/vigra/algorithm_8hxx_source.html %%DOCSDIR%%/vigra/annotated.html -%%DOCSDIR%%/vigra/array__vector_8hxx-source.html -%%DOCSDIR%%/vigra/basicgeometry_8hxx-source.html -%%DOCSDIR%%/vigra/basicimage_8hxx-source.html -%%DOCSDIR%%/vigra/basicimageview_8hxx-source.html -%%DOCSDIR%%/vigra/binary_8hxx-source.html -%%DOCSDIR%%/vigra/bordertreatment_8hxx-source.html -%%DOCSDIR%%/vigra/boundarytensor_8cxx-example.html -%%DOCSDIR%%/vigra/boundarytensor_8hxx-source.html -%%DOCSDIR%%/vigra/box_8hxx-source.html -%%DOCSDIR%%/vigra/cellconfigurations_8hxx-source.html -%%DOCSDIR%%/vigra/cellimage_8hxx-source.html +%%DOCSDIR%%/vigra/array__vector_8hxx_source.html +%%DOCSDIR%%/vigra/axistags_8hxx_source.html +%%DOCSDIR%%/vigra/basicgeometry_8hxx_source.html +%%DOCSDIR%%/vigra/basicimage_8hxx_source.html +%%DOCSDIR%%/vigra/basicimageview_8hxx_source.html +%%DOCSDIR%%/vigra/bessel_8hxx_source.html +%%DOCSDIR%%/vigra/bordertreatment_8hxx_source.html +%%DOCSDIR%%/vigra/boundarytensor.cxx-example.html +%%DOCSDIR%%/vigra/boundarytensor_8hxx_source.html +%%DOCSDIR%%/vigra/box_8hxx_source.html +%%DOCSDIR%%/vigra/bucket__queue_8hxx_source.html +%%DOCSDIR%%/vigra/cellconfigurations_8hxx_source.html +%%DOCSDIR%%/vigra/cellimage_8hxx_source.html +%%DOCSDIR%%/vigra/classcl__TYPE3WriteAccessor__s1.html +%%DOCSDIR%%/vigra/classcl__TYPE3WriteAccessor__s2.html +%%DOCSDIR%%/vigra/classcl__charNAccessor__COMP.html %%DOCSDIR%%/vigra/classes.html %%DOCSDIR%%/vigra/classvigra_1_1ArrayOfRegionStatistics-members.html %%DOCSDIR%%/vigra/classvigra_1_1ArrayOfRegionStatistics.html @@ -213,7 +235,6 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1BasicImageIterator.png %%DOCSDIR%%/vigra/classvigra_1_1BasicImageIteratorBase-members.html %%DOCSDIR%%/vigra/classvigra_1_1BasicImageIteratorBase.html -%%DOCSDIR%%/vigra/classvigra_1_1BasicImageIteratorBase.png %%DOCSDIR%%/vigra/classvigra_1_1BasicImageView-members.html %%DOCSDIR%%/vigra/classvigra_1_1BasicImageView.html %%DOCSDIR%%/vigra/classvigra_1_1BestGiniOfColumn-members.html @@ -226,6 +247,9 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1Box.html %%DOCSDIR%%/vigra/classvigra_1_1BrightnessContrastFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1BrightnessContrastFunctor.html +%%DOCSDIR%%/vigra/classvigra_1_1BucketQueue-members.html +%%DOCSDIR%%/vigra/classvigra_1_1BucketQueue.html +%%DOCSDIR%%/vigra/classvigra_1_1BucketQueue.png %%DOCSDIR%%/vigra/classvigra_1_1CatmullRomSpline-members.html %%DOCSDIR%%/vigra/classvigra_1_1CatmullRomSpline.html %%DOCSDIR%%/vigra/classvigra_1_1ColumnIterator-members.html @@ -241,6 +265,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1ConstStridedImageIterator.png %%DOCSDIR%%/vigra/classvigra_1_1ConstValueIterator-members.html %%DOCSDIR%%/vigra/classvigra_1_1ConstValueIterator.html +%%DOCSDIR%%/vigra/classvigra_1_1ConvolutionOptions-members.html +%%DOCSDIR%%/vigra/classvigra_1_1ConvolutionOptions.html %%DOCSDIR%%/vigra/classvigra_1_1CoscotFunction-members.html %%DOCSDIR%%/vigra/classvigra_1_1CoscotFunction.html %%DOCSDIR%%/vigra/classvigra_1_1CrackContourCirculator-members.html @@ -264,15 +290,21 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1EntropyCriterion.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWComplex-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWComplex.html +%%DOCSDIR%%/vigra/classvigra_1_1FFTWConvolvePlan-members.html +%%DOCSDIR%%/vigra/classvigra_1_1FFTWConvolvePlan.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWImaginaryAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWImaginaryAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWMagnitudeAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWMagnitudeAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWPhaseAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWPhaseAccessor.html +%%DOCSDIR%%/vigra/classvigra_1_1FFTWPlan-members.html +%%DOCSDIR%%/vigra/classvigra_1_1FFTWPlan.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWRealAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWRealAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWRealAccessor.png +%%DOCSDIR%%/vigra/classvigra_1_1FFTWSquaredMagnitudeAccessor-members.html +%%DOCSDIR%%/vigra/classvigra_1_1FFTWSquaredMagnitudeAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWWriteRealAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWWriteRealAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1FFTWWriteRealAccessor.png @@ -327,7 +359,6 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1ImageIterator.png %%DOCSDIR%%/vigra/classvigra_1_1ImageIteratorBase-members.html %%DOCSDIR%%/vigra/classvigra_1_1ImageIteratorBase.html -%%DOCSDIR%%/vigra/classvigra_1_1ImageIteratorBase.png %%DOCSDIR%%/vigra/classvigra_1_1ImagePyramid-members.html %%DOCSDIR%%/vigra/classvigra_1_1ImagePyramid.html %%DOCSDIR%%/vigra/classvigra_1_1IteratorAdaptor-members.html @@ -346,6 +377,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1LastValueFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1LineIterator-members.html %%DOCSDIR%%/vigra/classvigra_1_1LineIterator.html +%%DOCSDIR%%/vigra/classvigra_1_1LocalMinmaxOptions-members.html +%%DOCSDIR%%/vigra/classvigra_1_1LocalMinmaxOptions.html %%DOCSDIR%%/vigra/classvigra_1_1Luv2RGBFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1Luv2RGBFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1Luv2RGBPrimeFunctor-members.html @@ -354,6 +387,9 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1Luv2XYZFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1MagnitudeFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1MagnitudeFunctor.html +%%DOCSDIR%%/vigra/classvigra_1_1MappedBucketQueue-members.html +%%DOCSDIR%%/vigra/classvigra_1_1MappedBucketQueue.html +%%DOCSDIR%%/vigra/classvigra_1_1MappedBucketQueue.png %%DOCSDIR%%/vigra/classvigra_1_1MultiArray-members.html %%DOCSDIR%%/vigra/classvigra_1_1MultiArray.html %%DOCSDIR%%/vigra/classvigra_1_1MultiArray.png @@ -363,7 +399,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1MultiArrayShape.html %%DOCSDIR%%/vigra/classvigra_1_1MultiArrayView-members.html %%DOCSDIR%%/vigra/classvigra_1_1MultiArrayView.html -%%DOCSDIR%%/vigra/classvigra_1_1MultiArrayView.png +%%DOCSDIR%%/vigra/classvigra_1_1MultiCoordinateNavigator-members.html +%%DOCSDIR%%/vigra/classvigra_1_1MultiCoordinateNavigator.html %%DOCSDIR%%/vigra/classvigra_1_1MultiImageAccessor2-members.html %%DOCSDIR%%/vigra/classvigra_1_1MultiImageAccessor2.html %%DOCSDIR%%/vigra/classvigra_1_1MultiIterator-members.html @@ -393,12 +430,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1NumpyArray-members.html %%DOCSDIR%%/vigra/classvigra_1_1NumpyArray.html %%DOCSDIR%%/vigra/classvigra_1_1NumpyArray.png -%%DOCSDIR%%/vigra/classvigra_1_1OOB__Visitor-members.html -%%DOCSDIR%%/vigra/classvigra_1_1OOB__Visitor.html -%%DOCSDIR%%/vigra/classvigra_1_1OOB__Visitor.png -%%DOCSDIR%%/vigra/classvigra_1_1OnlineLearnVisitor-members.html -%%DOCSDIR%%/vigra/classvigra_1_1OnlineLearnVisitor.html -%%DOCSDIR%%/vigra/classvigra_1_1OnlineLearnVisitor.png +%%DOCSDIR%%/vigra/classvigra_1_1PLSAOptions-members.html +%%DOCSDIR%%/vigra/classvigra_1_1PLSAOptions.html %%DOCSDIR%%/vigra/classvigra_1_1Point2D-members.html %%DOCSDIR%%/vigra/classvigra_1_1Point2D.html %%DOCSDIR%%/vigra/classvigra_1_1Point2D.png @@ -414,8 +447,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1Processor_3_01ClassificationTag_00_01LabelType_00_01T1_00_01C1_00_01T2_00_01C2_01_4.html %%DOCSDIR%%/vigra/classvigra_1_1Processor_3_01RegressionTag_00_01LabelType_00_01T1_00_01C1_00_01T2_00_01C2_01_4-members.html %%DOCSDIR%%/vigra/classvigra_1_1Processor_3_01RegressionTag_00_01LabelType_00_01T1_00_01C1_00_01T2_00_01C2_01_4.html -%%DOCSDIR%%/vigra/classvigra_1_1RF__Traits-members.html -%%DOCSDIR%%/vigra/classvigra_1_1RF__Traits.html +%%DOCSDIR%%/vigra/classvigra_1_1Quaternion-members.html +%%DOCSDIR%%/vigra/classvigra_1_1Quaternion.html %%DOCSDIR%%/vigra/classvigra_1_1RGB2LabFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1RGB2LabFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1RGB2LuvFunctor-members.html @@ -479,6 +512,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1Sampler.html %%DOCSDIR%%/vigra/classvigra_1_1SamplerOptions-members.html %%DOCSDIR%%/vigra/classvigra_1_1SamplerOptions.html +%%DOCSDIR%%/vigra/classvigra_1_1SeedOptions-members.html +%%DOCSDIR%%/vigra/classvigra_1_1SeedOptions.html %%DOCSDIR%%/vigra/classvigra_1_1SeedRgDirectValueFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1SeedRgDirectValueFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1SequenceAccessor-members.html @@ -539,6 +574,8 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1StridedImageIterator.png %%DOCSDIR%%/vigra/classvigra_1_1StridedMultiIterator-members.html %%DOCSDIR%%/vigra/classvigra_1_1StridedMultiIterator.html +%%DOCSDIR%%/vigra/classvigra_1_1StridedScanOrderIterator-members.html +%%DOCSDIR%%/vigra/classvigra_1_1StridedScanOrderIterator.html %%DOCSDIR%%/vigra/classvigra_1_1Threshold-members.html %%DOCSDIR%%/vigra/classvigra_1_1Threshold.html %%DOCSDIR%%/vigra/classvigra_1_1ThresholdSplit-members.html @@ -549,7 +586,6 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1TinyVector.png %%DOCSDIR%%/vigra/classvigra_1_1TinyVectorBase-members.html %%DOCSDIR%%/vigra/classvigra_1_1TinyVectorBase.html -%%DOCSDIR%%/vigra/classvigra_1_1TinyVectorBase.png %%DOCSDIR%%/vigra/classvigra_1_1TinyVectorView-members.html %%DOCSDIR%%/vigra/classvigra_1_1TinyVectorView.html %%DOCSDIR%%/vigra/classvigra_1_1TinyVectorView.png @@ -557,9 +593,6 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1UniformIntRandomFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1UniformRandomFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1UniformRandomFunctor.html -%%DOCSDIR%%/vigra/classvigra_1_1VariableImportanceVisitor-members.html -%%DOCSDIR%%/vigra/classvigra_1_1VariableImportanceVisitor.html -%%DOCSDIR%%/vigra/classvigra_1_1VariableImportanceVisitor.png %%DOCSDIR%%/vigra/classvigra_1_1VectorAccessor-members.html %%DOCSDIR%%/vigra/classvigra_1_1VectorAccessor.html %%DOCSDIR%%/vigra/classvigra_1_1VectorAccessor.png @@ -573,13 +606,14 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1VectorNormFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1VectorNormSqFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1VectorNormSqFunctor.html -%%DOCSDIR%%/vigra/classvigra_1_1VisitorBase-members.html -%%DOCSDIR%%/vigra/classvigra_1_1VisitorBase.html -%%DOCSDIR%%/vigra/classvigra_1_1VisitorBase.png %%DOCSDIR%%/vigra/classvigra_1_1VolumeExportInfo-members.html %%DOCSDIR%%/vigra/classvigra_1_1VolumeExportInfo.html %%DOCSDIR%%/vigra/classvigra_1_1VolumeImportInfo-members.html %%DOCSDIR%%/vigra/classvigra_1_1VolumeImportInfo.html +%%DOCSDIR%%/vigra/classvigra_1_1WatershedOptions-members.html +%%DOCSDIR%%/vigra/classvigra_1_1WatershedOptions.html +%%DOCSDIR%%/vigra/classvigra_1_1WignerMatrix-members.html +%%DOCSDIR%%/vigra/classvigra_1_1WignerMatrix.html %%DOCSDIR%%/vigra/classvigra_1_1XYZ2LabFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1XYZ2LabFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1XYZ2LuvFunctor-members.html @@ -596,24 +630,11 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1YPrimePbPr2RGBPrimeFunctor.html %%DOCSDIR%%/vigra/classvigra_1_1YPrimeUV2RGBPrimeFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1YPrimeUV2RGBPrimeFunctor.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1DecisionTree-members.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1DecisionTree.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1RF__DEFAULT-members.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1RF__DEFAULT.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1Value__Chooser-members.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1Value__Chooser.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1staticMultiArrayViewHelper-members.html -%%DOCSDIR%%/vigra/classvigra_1_1detail_1_1staticMultiArrayViewHelper.html %%DOCSDIR%%/vigra/classvigra_1_1linalg_1_1LeastAngleRegressionOptions-members.html %%DOCSDIR%%/vigra/classvigra_1_1linalg_1_1LeastAngleRegressionOptions.html %%DOCSDIR%%/vigra/classvigra_1_1linalg_1_1Matrix-members.html %%DOCSDIR%%/vigra/classvigra_1_1linalg_1_1Matrix.html %%DOCSDIR%%/vigra/classvigra_1_1linalg_1_1Matrix.png -%%DOCSDIR%%/vigra/classvigra_1_1rf_1_1StopVisiting-members.html -%%DOCSDIR%%/vigra/classvigra_1_1rf_1_1StopVisiting.html -%%DOCSDIR%%/vigra/classvigra_1_1rf_1_1StopVisiting.png -%%DOCSDIR%%/vigra/classvigra_1_1rf_1_1VisitorNode-members.html -%%DOCSDIR%%/vigra/classvigra_1_1rf_1_1VisitorNode.html %%DOCSDIR%%/vigra/classvigra_1_1rf_1_1algorithms_1_1ClusterImportanceVisitor-members.html %%DOCSDIR%%/vigra/classvigra_1_1rf_1_1algorithms_1_1ClusterImportanceVisitor.html %%DOCSDIR%%/vigra/classvigra_1_1rf_1_1algorithms_1_1ClusterImportanceVisitor.png @@ -668,22 +689,21 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/classvigra_1_1rf_1_1visitors_1_1detail_1_1VisitorNode.html %%DOCSDIR%%/vigra/classvigra_1_1sRGB2RGBFunctor-members.html %%DOCSDIR%%/vigra/classvigra_1_1sRGB2RGBFunctor.html -%%DOCSDIR%%/vigra/codec_8hxx-source.html -%%DOCSDIR%%/vigra/colorconversions_8hxx-source.html -%%DOCSDIR%%/vigra/combineimages_8hxx-source.html -%%DOCSDIR%%/vigra/configVersion_8hxx-source.html -%%DOCSDIR%%/vigra/config_8hxx-source.html -%%DOCSDIR%%/vigra/contourcirculator_8hxx-source.html -%%DOCSDIR%%/vigra/convert_8cxx-example.html -%%DOCSDIR%%/vigra/convolution_8hxx-source.html -%%DOCSDIR%%/vigra/copyimage_8hxx-source.html -%%DOCSDIR%%/vigra/cornerdetection_8hxx-source.html +%%DOCSDIR%%/vigra/clebsch-gordan_8hxx_source.html +%%DOCSDIR%%/vigra/codec_8hxx_source.html +%%DOCSDIR%%/vigra/colorconversions_8hxx_source.html +%%DOCSDIR%%/vigra/combineimages_8hxx_source.html +%%DOCSDIR%%/vigra/configVersion_8hxx_source.html +%%DOCSDIR%%/vigra/config_8hxx_source.html +%%DOCSDIR%%/vigra/contourcirculator_8hxx_source.html +%%DOCSDIR%%/vigra/convert.cxx-example.html +%%DOCSDIR%%/vigra/convolution_8hxx_source.html +%%DOCSDIR%%/vigra/copyimage_8hxx_source.html +%%DOCSDIR%%/vigra/cornerdetection_8hxx_source.html %%DOCSDIR%%/vigra/deprecated.html -%%DOCSDIR%%/vigra/diff2d_8hxx-source.html -%%DOCSDIR%%/vigra/distancetransform_8hxx-source.html -%%DOCSDIR%%/vigra/documents/DataAccessors.doc +%%DOCSDIR%%/vigra/diff2d_8hxx_source.html +%%DOCSDIR%%/vigra/distancetransform_8hxx_source.html %%DOCSDIR%%/vigra/documents/DataAccessors.ps -%%DOCSDIR%%/vigra/documents/FunctorFactory.doc %%DOCSDIR%%/vigra/documents/FunctorFactory.ps %%DOCSDIR%%/vigra/documents/GenericProg2D.ps %%DOCSDIR%%/vigra/documents/bullet.gif @@ -693,15 +713,16 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/documents/viff.ps %%DOCSDIR%%/vigra/documents/vigra.gif %%DOCSDIR%%/vigra/doxygen.png -%%DOCSDIR%%/vigra/edge_8cxx-example.html -%%DOCSDIR%%/vigra/edgedetection_8hxx-source.html -%%DOCSDIR%%/vigra/eigensystem_8hxx-source.html -%%DOCSDIR%%/vigra/error_8hxx-source.html -%%DOCSDIR%%/vigra/features_8hxx-source.html -%%DOCSDIR%%/vigra/fftw3_8hxx-source.html +%%DOCSDIR%%/vigra/edge.cxx-example.html +%%DOCSDIR%%/vigra/edgedetection_8hxx_source.html +%%DOCSDIR%%/vigra/eigensystem_8hxx_source.html +%%DOCSDIR%%/vigra/error_8hxx_source.html +%%DOCSDIR%%/vigra/examples.html +%%DOCSDIR%%/vigra/features_8hxx_source.html +%%DOCSDIR%%/vigra/fftw3_8hxx_source.html %%DOCSDIR%%/vigra/files.html -%%DOCSDIR%%/vigra/fixedpoint_8hxx-source.html -%%DOCSDIR%%/vigra/flatmorphology_8hxx-source.html +%%DOCSDIR%%/vigra/fixedpoint_8hxx_source.html +%%DOCSDIR%%/vigra/flatmorphology_8hxx_source.html %%DOCSDIR%%/vigra/form_0.png %%DOCSDIR%%/vigra/form_1.png %%DOCSDIR%%/vigra/form_10.png @@ -781,6 +802,16 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/form_78.png %%DOCSDIR%%/vigra/form_79.png %%DOCSDIR%%/vigra/form_8.png +%%DOCSDIR%%/vigra/form_80.png +%%DOCSDIR%%/vigra/form_81.png +%%DOCSDIR%%/vigra/form_82.png +%%DOCSDIR%%/vigra/form_83.png +%%DOCSDIR%%/vigra/form_84.png +%%DOCSDIR%%/vigra/form_85.png +%%DOCSDIR%%/vigra/form_86.png +%%DOCSDIR%%/vigra/form_87.png +%%DOCSDIR%%/vigra/form_88.png +%%DOCSDIR%%/vigra/form_89.png %%DOCSDIR%%/vigra/form_9.png %%DOCSDIR%%/vigra/formula.repository %%DOCSDIR%%/vigra/functionindex.html @@ -799,6 +830,7 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/functions_0x6e.html %%DOCSDIR%%/vigra/functions_0x6f.html %%DOCSDIR%%/vigra/functions_0x70.html +%%DOCSDIR%%/vigra/functions_0x71.html %%DOCSDIR%%/vigra/functions_0x72.html %%DOCSDIR%%/vigra/functions_0x73.html %%DOCSDIR%%/vigra/functions_0x74.html @@ -825,6 +857,7 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/functions_func_0x6e.html %%DOCSDIR%%/vigra/functions_func_0x6f.html %%DOCSDIR%%/vigra/functions_func_0x70.html +%%DOCSDIR%%/vigra/functions_func_0x71.html %%DOCSDIR%%/vigra/functions_func_0x72.html %%DOCSDIR%%/vigra/functions_func_0x73.html %%DOCSDIR%%/vigra/functions_func_0x74.html @@ -851,11 +884,13 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/functions_type_0x74.html %%DOCSDIR%%/vigra/functions_type_0x76.html %%DOCSDIR%%/vigra/functions_vars.html -%%DOCSDIR%%/vigra/functorexpression_8hxx-source.html -%%DOCSDIR%%/vigra/functortraits_8hxx-source.html -%%DOCSDIR%%/vigra/gaborfilter_8hxx-source.html -%%DOCSDIR%%/vigra/gaussians_8hxx-source.html -%%DOCSDIR%%/vigra/gradient__energy__tensor_8hxx-source.html +%%DOCSDIR%%/vigra/functorexpression_8hxx_source.html +%%DOCSDIR%%/vigra/functortraits_8hxx_source.html +%%DOCSDIR%%/vigra/gaborfilter_8hxx_source.html +%%DOCSDIR%%/vigra/gaussians_8hxx_source.html +%%DOCSDIR%%/vigra/globals.html +%%DOCSDIR%%/vigra/globals_defs.html +%%DOCSDIR%%/vigra/gradient__energy__tensor_8hxx_source.html %%DOCSDIR%%/vigra/group__ColorConversions.html %%DOCSDIR%%/vigra/group__CombineAlgo.html %%DOCSDIR%%/vigra/group__CombineFunctor.html @@ -886,7 +921,6 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/group__LocalMinMax.html %%DOCSDIR%%/vigra/group__MachineLearning.html %%DOCSDIR%%/vigra/group__MathFunctions.html -%%DOCSDIR%%/vigra/group__MathFunctionsons.html %%DOCSDIR%%/vigra/group__MatrixAlgebra.html %%DOCSDIR%%/vigra/group__Morphology.html %%DOCSDIR%%/vigra/group__MultiArrayConvolutionFilters.html @@ -895,13 +929,16 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/group__MultiArrayTags.html %%DOCSDIR%%/vigra/group__MultiArrayToImage.html %%DOCSDIR%%/vigra/group__MultiIteratorGroup.html +%%DOCSDIR%%/vigra/group__MultiMathModule.html %%DOCSDIR%%/vigra/group__MultiPointoperators.html %%DOCSDIR%%/vigra/group__NoiseNormalization.html %%DOCSDIR%%/vigra/group__NonLinearDiffusion.html +%%DOCSDIR%%/vigra/group__OpenCL.html %%DOCSDIR%%/vigra/group__Optimization.html %%DOCSDIR%%/vigra/group__PixelNeighborhood.html %%DOCSDIR%%/vigra/group__PolarColors.html %%DOCSDIR%%/vigra/group__Polynomials.html +%%DOCSDIR%%/vigra/group__QuaternionOperations.html %%DOCSDIR%%/vigra/group__RGBValueAccessors.html %%DOCSDIR%%/vigra/group__RGBValueOperators.html %%DOCSDIR%%/vigra/group__RandomNumberGeneration.html @@ -921,51 +958,56 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/group__TinyVectorOperators.html %%DOCSDIR%%/vigra/group__TransformAlgo.html %%DOCSDIR%%/vigra/group__TransformFunctor.html +%%DOCSDIR%%/vigra/group__Unsupervised__Decomposition.html %%DOCSDIR%%/vigra/group__VigraHDF5Impex.html %%DOCSDIR%%/vigra/group__VigraImpex.html %%DOCSDIR%%/vigra/group__VigraSIFImport.html %%DOCSDIR%%/vigra/group__VolumeImpex.html %%DOCSDIR%%/vigra/group__VoxelNeighborhood.html -%%DOCSDIR%%/vigra/hdf5impex_8hxx-source.html +%%DOCSDIR%%/vigra/hdf5impex_8hxx_source.html %%DOCSDIR%%/vigra/hierarchy.html -%%DOCSDIR%%/vigra/imagecontainer_8hxx-source.html -%%DOCSDIR%%/vigra/imageinfo_8hxx-source.html -%%DOCSDIR%%/vigra/imageiterator_8hxx-source.html -%%DOCSDIR%%/vigra/imageiteratoradapter_8hxx-source.html -%%DOCSDIR%%/vigra/impex_8hxx-source.html +%%DOCSDIR%%/vigra/imagecontainer_8hxx_source.html +%%DOCSDIR%%/vigra/imageinfo_8hxx_source.html +%%DOCSDIR%%/vigra/imageiterator_8hxx_source.html +%%DOCSDIR%%/vigra/imageiteratoradapter_8hxx_source.html %%DOCSDIR%%/vigra/impex_8hxx.html +%%DOCSDIR%%/vigra/impex_8hxx_source.html %%DOCSDIR%%/vigra/index.html -%%DOCSDIR%%/vigra/index__sampling_8hxx-source.html -%%DOCSDIR%%/vigra/initimage_8hxx-source.html -%%DOCSDIR%%/vigra/inspectimage_8hxx-source.html -%%DOCSDIR%%/vigra/interpolating__accessor_8hxx-source.html -%%DOCSDIR%%/vigra/invert_8cxx-example.html -%%DOCSDIR%%/vigra/invert__explicitly_8cxx-example.html -%%DOCSDIR%%/vigra/iteratoradapter_8hxx-source.html -%%DOCSDIR%%/vigra/iteratortags_8hxx-source.html -%%DOCSDIR%%/vigra/iteratortraits_8hxx-source.html -%%DOCSDIR%%/vigra/labelimage_8hxx-source.html -%%DOCSDIR%%/vigra/labelvolume_8hxx-source.html -%%DOCSDIR%%/vigra/linear__algebra_8hxx-source.html -%%DOCSDIR%%/vigra/linear__solve_8hxx-source.html -%%DOCSDIR%%/vigra/localminmax_8hxx-source.html -%%DOCSDIR%%/vigra/mathutil_8hxx-source.html -%%DOCSDIR%%/vigra/matlab_8hxx-source.html -%%DOCSDIR%%/vigra/matlab__FLEXTYPE_8hxx-source.html -%%DOCSDIR%%/vigra/matrix_8hxx-source.html -%%DOCSDIR%%/vigra/memory_8hxx-source.html -%%DOCSDIR%%/vigra/meshgrid_8hxx-source.html -%%DOCSDIR%%/vigra/metaprogramming_8hxx-source.html +%%DOCSDIR%%/vigra/initimage_8hxx_source.html +%%DOCSDIR%%/vigra/inspectimage_8hxx_source.html +%%DOCSDIR%%/vigra/interpolating__accessor_8hxx_source.html +%%DOCSDIR%%/vigra/invariant__features3D_8hxx_source.html +%%DOCSDIR%%/vigra/invert.cxx-example.html +%%DOCSDIR%%/vigra/invert__explicitly.cxx-example.html +%%DOCSDIR%%/vigra/iteratoradapter_8hxx_source.html +%%DOCSDIR%%/vigra/iteratortags_8hxx_source.html +%%DOCSDIR%%/vigra/iteratortraits_8hxx_source.html +%%DOCSDIR%%/vigra/labelimage_8hxx_source.html +%%DOCSDIR%%/vigra/labelvolume_8hxx_source.html +%%DOCSDIR%%/vigra/linear__algebra_8hxx_source.html +%%DOCSDIR%%/vigra/linear__solve_8hxx_source.html +%%DOCSDIR%%/vigra/localminmax_8hxx_source.html +%%DOCSDIR%%/vigra/mathutil_8hxx_source.html +%%DOCSDIR%%/vigra/matlab_8hxx_source.html +%%DOCSDIR%%/vigra/matlab__FLEXTYPE_8hxx_source.html +%%DOCSDIR%%/vigra/matrix_8hxx_source.html +%%DOCSDIR%%/vigra/memory_8hxx_source.html +%%DOCSDIR%%/vigra/meshgrid_8hxx_source.html +%%DOCSDIR%%/vigra/metaprogramming_8hxx_source.html %%DOCSDIR%%/vigra/modules.html -%%DOCSDIR%%/vigra/multi__array_8hxx-source.html -%%DOCSDIR%%/vigra/multi__convolution_8hxx-source.html -%%DOCSDIR%%/vigra/multi__distance_8hxx-source.html -%%DOCSDIR%%/vigra/multi__impex_8hxx-source.html -%%DOCSDIR%%/vigra/multi__iterator_8hxx-source.html -%%DOCSDIR%%/vigra/multi__morphology_8hxx-source.html -%%DOCSDIR%%/vigra/multi__pointoperators_8hxx-source.html -%%DOCSDIR%%/vigra/multi__resize_8hxx-source.html -%%DOCSDIR%%/vigra/multi__tensorutilities_8hxx-source.html +%%DOCSDIR%%/vigra/multi__array_8hxx_source.html +%%DOCSDIR%%/vigra/multi__convolution_8hxx_source.html +%%DOCSDIR%%/vigra/multi__distance_8hxx_source.html +%%DOCSDIR%%/vigra/multi__fft_8hxx_source.html +%%DOCSDIR%%/vigra/multi__impex_8hxx_source.html +%%DOCSDIR%%/vigra/multi__iterator_8hxx_source.html +%%DOCSDIR%%/vigra/multi__localminmax_8hxx_source.html +%%DOCSDIR%%/vigra/multi__math_8hxx_source.html +%%DOCSDIR%%/vigra/multi__morphology_8hxx_source.html +%%DOCSDIR%%/vigra/multi__opencl_8hxx_source.html +%%DOCSDIR%%/vigra/multi__pointoperators_8hxx_source.html +%%DOCSDIR%%/vigra/multi__resize_8hxx_source.html +%%DOCSDIR%%/vigra/multi__tensorutilities_8hxx_source.html %%DOCSDIR%%/vigra/namespacemembers.html %%DOCSDIR%%/vigra/namespacemembers_0x62.html %%DOCSDIR%%/vigra/namespacemembers_0x63.html @@ -1021,71 +1063,70 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/namespacevigra_1_1FourNeighborhood.html %%DOCSDIR%%/vigra/namespacevigra_1_1Neighborhood3DSix.html %%DOCSDIR%%/vigra/namespacevigra_1_1Neighborhood3DTwentySix.html -%%DOCSDIR%%/vigra/namespacevigra_1_1detail.html %%DOCSDIR%%/vigra/namespacevigra_1_1linalg.html +%%DOCSDIR%%/vigra/namespacevigra_1_1multi__math.html %%DOCSDIR%%/vigra/namespacevigra_1_1rf_1_1algorithms.html %%DOCSDIR%%/vigra/namespacevigra_1_1rf_1_1split.html %%DOCSDIR%%/vigra/namespacevigra_1_1rf_1_1visitors.html -%%DOCSDIR%%/vigra/navigator_8hxx-source.html -%%DOCSDIR%%/vigra/noise__normalization_8hxx-source.html -%%DOCSDIR%%/vigra/nonlineardiffusion_8hxx-source.html -%%DOCSDIR%%/vigra/numerictraits_8hxx-source.html -%%DOCSDIR%%/vigra/numpy__array_8hxx-source.html -%%DOCSDIR%%/vigra/numpy__array__converters_8hxx-source.html -%%DOCSDIR%%/vigra/orientedtensorfilters_8hxx-source.html +%%DOCSDIR%%/vigra/navigator_8hxx_source.html +%%DOCSDIR%%/vigra/noise__normalization_8hxx_source.html +%%DOCSDIR%%/vigra/nonlineardiffusion_8hxx_source.html +%%DOCSDIR%%/vigra/numerictraits_8hxx_source.html +%%DOCSDIR%%/vigra/numpy__array_8hxx_source.html +%%DOCSDIR%%/vigra/numpy__array__converters_8hxx_source.html +%%DOCSDIR%%/vigra/numpy__array__taggedshape_8hxx_source.html +%%DOCSDIR%%/vigra/numpy__array__traits_8hxx_source.html +%%DOCSDIR%%/vigra/orientedtensorfilters_8hxx_source.html %%DOCSDIR%%/vigra/pages.html -%%DOCSDIR%%/vigra/palette_8cxx-example.html -%%DOCSDIR%%/vigra/pixelneighborhood_8hxx-source.html -%%DOCSDIR%%/vigra/polygon_8hxx-source.html -%%DOCSDIR%%/vigra/polynomial_8hxx-source.html -%%DOCSDIR%%/vigra/profile_8cxx-example.html -%%DOCSDIR%%/vigra/promote__traits_8hxx-source.html -%%DOCSDIR%%/vigra/pyramid_8cxx-example.html -%%DOCSDIR%%/vigra/python__utility_8hxx-source.html -%%DOCSDIR%%/vigra/quadprog_8hxx-source.html -%%DOCSDIR%%/vigra/random_8hxx-source.html -%%DOCSDIR%%/vigra/random__forest_8hxx-source.html -%%DOCSDIR%%/vigra/random__forest__deprec_8hxx-source.html -%%DOCSDIR%%/vigra/random__forest__hdf5__impex_8hxx-source.html -%%DOCSDIR%%/vigra/rational_8hxx-source.html -%%DOCSDIR%%/vigra/recursiveconvolution-merge_8hxx-source.html -%%DOCSDIR%%/vigra/recursiveconvolution-old_8hxx-source.html -%%DOCSDIR%%/vigra/recursiveconvolution_8hxx-source.html -%%DOCSDIR%%/vigra/regression_8hxx-source.html -%%DOCSDIR%%/vigra/resampling__convolution_8hxx-source.html -%%DOCSDIR%%/vigra/resize_8cxx-example.html -%%DOCSDIR%%/vigra/resizeimage_8hxx-source.html -%%DOCSDIR%%/vigra/rf__algorithm_8hxx-source.html -%%DOCSDIR%%/vigra/rf__algorithm__prototyping_8hxx-source.html -%%DOCSDIR%%/vigra/rf__common_8hxx-source.html -%%DOCSDIR%%/vigra/rf__decisionTree_8hxx-source.html -%%DOCSDIR%%/vigra/rf__earlystopping_8hxx-source.html -%%DOCSDIR%%/vigra/rf__nodeproxy_8hxx-source.html -%%DOCSDIR%%/vigra/rf__online__prediction__set_8hxx-source.html -%%DOCSDIR%%/vigra/rf__preprocessing_8hxx-source.html -%%DOCSDIR%%/vigra/rf__region_8hxx-source.html -%%DOCSDIR%%/vigra/rf__ridge__split_8hxx-source.html -%%DOCSDIR%%/vigra/rf__sampling_8hxx-source.html -%%DOCSDIR%%/vigra/rf__split_8hxx-source.html -%%DOCSDIR%%/vigra/rf__visitors_8hxx-source.html -%%DOCSDIR%%/vigra/rfftw_8hxx-source.html -%%DOCSDIR%%/vigra/rgbvalue_8hxx-source.html -%%DOCSDIR%%/vigra/sampling_8hxx-source.html -%%DOCSDIR%%/vigra/seededregiongrowing3d_8hxx-source.html -%%DOCSDIR%%/vigra/seededregiongrowing_8hxx-source.html -%%DOCSDIR%%/vigra/separableconvolution_8hxx-source.html -%%DOCSDIR%%/vigra/sifImport_8hxx-source.html -%%DOCSDIR%%/vigra/singular__value__decomposition_8hxx-source.html -%%DOCSDIR%%/vigra/sized__int_8hxx-source.html -%%DOCSDIR%%/vigra/slanted__edge__mtf_8hxx-source.html -%%DOCSDIR%%/vigra/smooth_8cxx-example.html -%%DOCSDIR%%/vigra/splices_8hxx-source.html -%%DOCSDIR%%/vigra/splineimageview_8hxx-source.html -%%DOCSDIR%%/vigra/splines_8hxx-source.html -%%DOCSDIR%%/vigra/static__assert_8hxx-source.html -%%DOCSDIR%%/vigra/stdconvolution_8hxx-source.html -%%DOCSDIR%%/vigra/stdimage_8hxx-source.html -%%DOCSDIR%%/vigra/stdimagefunctions_8hxx-source.html +%%DOCSDIR%%/vigra/palette.cxx-example.html +%%DOCSDIR%%/vigra/pixelneighborhood_8hxx_source.html +%%DOCSDIR%%/vigra/polygon_8hxx_source.html +%%DOCSDIR%%/vigra/polynomial_8hxx_source.html +%%DOCSDIR%%/vigra/profile.cxx-example.html +%%DOCSDIR%%/vigra/promote__traits_8hxx_source.html +%%DOCSDIR%%/vigra/pyramid.cxx-example.html +%%DOCSDIR%%/vigra/python__utility_8hxx_source.html +%%DOCSDIR%%/vigra/quadprog_8hxx_source.html +%%DOCSDIR%%/vigra/quaternion_8hxx_source.html +%%DOCSDIR%%/vigra/random_8hxx_source.html +%%DOCSDIR%%/vigra/random__forest_8hxx_source.html +%%DOCSDIR%%/vigra/random__forest__deprec_8hxx_source.html +%%DOCSDIR%%/vigra/random__forest__hdf5__impex_8hxx_source.html +%%DOCSDIR%%/vigra/rational_8hxx_source.html +%%DOCSDIR%%/vigra/recursiveconvolution_8hxx_source.html +%%DOCSDIR%%/vigra/regression_8hxx_source.html +%%DOCSDIR%%/vigra/resampling__convolution_8hxx_source.html +%%DOCSDIR%%/vigra/resize.cxx-example.html +%%DOCSDIR%%/vigra/resizeimage_8hxx_source.html +%%DOCSDIR%%/vigra/rf__algorithm_8hxx_source.html +%%DOCSDIR%%/vigra/rf__common_8hxx_source.html +%%DOCSDIR%%/vigra/rf__decisionTree_8hxx_source.html +%%DOCSDIR%%/vigra/rf__earlystopping_8hxx_source.html +%%DOCSDIR%%/vigra/rf__nodeproxy_8hxx_source.html +%%DOCSDIR%%/vigra/rf__online__prediction__set_8hxx_source.html +%%DOCSDIR%%/vigra/rf__preprocessing_8hxx_source.html +%%DOCSDIR%%/vigra/rf__region_8hxx_source.html +%%DOCSDIR%%/vigra/rf__ridge__split_8hxx_source.html +%%DOCSDIR%%/vigra/rf__split_8hxx_source.html +%%DOCSDIR%%/vigra/rf__visitors_8hxx_source.html +%%DOCSDIR%%/vigra/rfftw_8hxx_source.html +%%DOCSDIR%%/vigra/rgbvalue_8hxx_source.html +%%DOCSDIR%%/vigra/sampling_8hxx_source.html +%%DOCSDIR%%/vigra/seededregiongrowing3d_8hxx_source.html +%%DOCSDIR%%/vigra/seededregiongrowing_8hxx_source.html +%%DOCSDIR%%/vigra/separableconvolution_8hxx_source.html +%%DOCSDIR%%/vigra/sifImport_8hxx_source.html +%%DOCSDIR%%/vigra/singular__value__decomposition_8hxx_source.html +%%DOCSDIR%%/vigra/sized__int_8hxx_source.html +%%DOCSDIR%%/vigra/slanted__edge__mtf_8hxx_source.html +%%DOCSDIR%%/vigra/smooth.cxx-example.html +%%DOCSDIR%%/vigra/splices_8hxx_source.html +%%DOCSDIR%%/vigra/splineimageview_8hxx_source.html +%%DOCSDIR%%/vigra/splines_8hxx_source.html +%%DOCSDIR%%/vigra/static__assert_8hxx_source.html +%%DOCSDIR%%/vigra/stdconvolution_8hxx_source.html +%%DOCSDIR%%/vigra/stdimage_8hxx_source.html +%%DOCSDIR%%/vigra/stdimagefunctions_8hxx_source.html %%DOCSDIR%%/vigra/structvigra_1_1IteratorTraits-members.html %%DOCSDIR%%/vigra/structvigra_1_1IteratorTraits.html %%DOCSDIR%%/vigra/structvigra_1_1MeshGridAccessor-members.html @@ -1094,40 +1135,32 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigra/structvigra_1_1UnstridedArrayTag.html %%DOCSDIR%%/vigra/structvigra_1_1rf_1_1algorithms_1_1HC__Entry-members.html %%DOCSDIR%%/vigra/structvigra_1_1rf_1_1algorithms_1_1HC__Entry.html -%%DOCSDIR%%/vigra/structvigra_1_1rf_1_1algorithms_1_1VarSelectOutput-members.html -%%DOCSDIR%%/vigra/structvigra_1_1rf_1_1algorithms_1_1VarSelectOutput.html -%%DOCSDIR%%/vigra/subimage_8cxx-example.html -%%DOCSDIR%%/vigra/symmetry_8hxx-source.html +%%DOCSDIR%%/vigra/subimage.cxx-example.html +%%DOCSDIR%%/vigra/symmetry_8hxx_source.html %%DOCSDIR%%/vigra/tab_b.gif %%DOCSDIR%%/vigra/tab_l.gif %%DOCSDIR%%/vigra/tab_r.gif %%DOCSDIR%%/vigra/tabs.css -%%DOCSDIR%%/vigra/tensorutilities_8hxx-source.html -%%DOCSDIR%%/vigra/tiff_8hxx-source.html -%%DOCSDIR%%/vigra/timing_8hxx-source.html -%%DOCSDIR%%/vigra/tinyvector_8hxx-source.html +%%DOCSDIR%%/vigra/tensorutilities_8hxx_source.html +%%DOCSDIR%%/vigra/tiff_8hxx_source.html +%%DOCSDIR%%/vigra/timing_8hxx.html +%%DOCSDIR%%/vigra/timing_8hxx_source.html +%%DOCSDIR%%/vigra/tinyvector_8hxx_source.html %%DOCSDIR%%/vigra/todo.html -%%DOCSDIR%%/vigra/transformimage_8hxx-source.html -%%DOCSDIR%%/vigra/tuple_8hxx-source.html -%%DOCSDIR%%/vigra/union__find_8hxx-source.html -%%DOCSDIR%%/vigra/utilities_8hxx-source.html +%%DOCSDIR%%/vigra/transformimage_8hxx_source.html +%%DOCSDIR%%/vigra/tuple_8hxx_source.html +%%DOCSDIR%%/vigra/union__find_8hxx_source.html +%%DOCSDIR%%/vigra/unsupervised__decomposition_8hxx_source.html +%%DOCSDIR%%/vigra/utilities_8hxx_source.html +%%DOCSDIR%%/vigra/vigra-icon.ico %%DOCSDIR%%/vigra/vigra.css -%%DOCSDIR%%/vigra/voronoi_8cxx-example.html -%%DOCSDIR%%/vigra/voxelneighborhood_8hxx-source.html -%%DOCSDIR%%/vigra/watershed_8cxx-example.html -%%DOCSDIR%%/vigra/watersheds3d_8hxx-source.html -%%DOCSDIR%%/vigra/watersheds_8hxx-source.html +%%DOCSDIR%%/vigra/voronoi.cxx-example.html +%%DOCSDIR%%/vigra/voxelneighborhood_8hxx_source.html +%%DOCSDIR%%/vigra/watershed.cxx-example.html +%%DOCSDIR%%/vigra/watersheds3d_8hxx_source.html +%%DOCSDIR%%/vigra/watersheds_8hxx_source.html +%%DOCSDIR%%/vigra/wigner-matrix_8hxx_source.html %%DOCSDIR%%/vigranumpy/.buildinfo -%%DOCSDIR%%/vigranumpy/doctrees/environment.pickle -%%DOCSDIR%%/vigranumpy/doctrees/index.doctree -%%DOCSDIR%%/vigranumpy/genindex.html -%%DOCSDIR%%/vigranumpy/i.html -%%DOCSDIR%%/vigranumpy/index.html -%%DOCSDIR%%/vigranumpy/index.html.old -%%DOCSDIR%%/vigranumpy/modindex.html -%%DOCSDIR%%/vigranumpy/objects.inv -%%DOCSDIR%%/vigranumpy/search.html -%%DOCSDIR%%/vigranumpy/searchindex.js %%DOCSDIR%%/vigranumpy/_sources/index.txt %%DOCSDIR%%/vigranumpy/_static/basic.css %%DOCSDIR%%/vigranumpy/_static/default.css @@ -1138,6 +1171,15 @@ lib/libvigraimpex.so %%DOCSDIR%%/vigranumpy/_static/plus.png %%DOCSDIR%%/vigranumpy/_static/pygments.css %%DOCSDIR%%/vigranumpy/_static/searchtools.js +%%DOCSDIR%%/vigranumpy/_static/vigra-icon.ico +%%DOCSDIR%%/vigranumpy/doctrees/environment.pickle +%%DOCSDIR%%/vigranumpy/doctrees/index.doctree +%%DOCSDIR%%/vigranumpy/genindex.html +%%DOCSDIR%%/vigranumpy/index.html +%%DOCSDIR%%/vigranumpy/modindex.html +%%DOCSDIR%%/vigranumpy/objects.inv +%%DOCSDIR%%/vigranumpy/search.html +%%DOCSDIR%%/vigranumpy/searchindex.js @dirrm %%DOCSDIR%%/vigra/documents @dirrm %%DOCSDIR%%/vigra @dirrm %%DOCSDIR%%/vigranumpy/doctrees -- cgit v1.2.3