From owner-svn-ports-all@freebsd.org Sun Mar 20 01:49:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1101AD6830; Sun, 20 Mar 2016 01:49:47 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 936A614B4; Sun, 20 Mar 2016 01:49:47 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2K1nk9a009911; Sun, 20 Mar 2016 01:49:46 GMT (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2K1nksi009908; Sun, 20 Mar 2016 01:49:46 GMT (envelope-from grog@FreeBSD.org) Message-Id: <201603200149.u2K1nksi009908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: grog set sender to grog@FreeBSD.org using -f From: Greg Lehey Date: Sun, 20 Mar 2016 01:49:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411427 - head/graphics/vigra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2016 01:49:48 -0000 Author: grog (src committer) Date: Sun Mar 20 01:49:46 2016 New Revision: 411427 URL: https://svnweb.freebsd.org/changeset/ports/411427 Log: Update link in pkg-descr. New version 1.11.0. Changes: Ported vigranumpy to Python 3.5. Added Chunked arrays to store data larger than RAM as a collection of rectangular blocks. Added vigra::ThreadPool and parallel_foreach() for portable algorithm parallelization based on std::thread. Implemented parallel versions of Gaussian smoothing, Gaussian derivatives, connected components labeling, and union-find watersheds. Added graph-based image analysis, e.g. agglomerative clustering Included the callback mechanism described in "Impossibly Fast C++ Delegates" by Sergey Ryazanov (needed for agglomerative clustering). Added many image registration functions. Extended the collection of multi-dimensional distance transform algorithms by vectorial DT, boundary DT, and eccentricity transform. Added skeletonizeImage(), nonLocalMean(), multi-dimensional integral images. Added new 2D shape features based on skeletonization and the convex hull. Additional arithmetic and algebraic functions for vigra::TinyVector. Added vigra::CountingIterator. Minor improvements and bug fixes in the code and documentation. Modified: head/graphics/vigra/Makefile head/graphics/vigra/distinfo head/graphics/vigra/pkg-descr Modified: head/graphics/vigra/Makefile ============================================================================== --- head/graphics/vigra/Makefile Sun Mar 20 00:57:54 2016 (r411426) +++ head/graphics/vigra/Makefile Sun Mar 20 01:49:46 2016 (r411427) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= vigra -DISTVERSION= 1.10.0 -PORTREVISION= 6 +DISTVERSION= 1.11.0 +PORTREVISION= 0 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org Modified: head/graphics/vigra/distinfo ============================================================================== --- head/graphics/vigra/distinfo Sun Mar 20 00:57:54 2016 (r411426) +++ head/graphics/vigra/distinfo Sun Mar 20 01:49:46 2016 (r411427) @@ -1,2 +1,2 @@ -SHA256 (ukoethe-vigra-1.10.0-e6c21f3_GH0.tar.gz) = 654074d08e46630a05084098779358baf3e4c0ab018ad6f02093823f1395b348 -SIZE (ukoethe-vigra-1.10.0-e6c21f3_GH0.tar.gz) = 29184342 +SHA256 (ukoethe-vigra-1.11.0-e6c21f3_GH0.tar.gz) = 654074d08e46630a05084098779358baf3e4c0ab018ad6f02093823f1395b348 +SIZE (ukoethe-vigra-1.11.0-e6c21f3_GH0.tar.gz) = 29184342 Modified: head/graphics/vigra/pkg-descr ============================================================================== --- head/graphics/vigra/pkg-descr Sun Mar 20 00:57:54 2016 (r411426) +++ head/graphics/vigra/pkg-descr Sun Mar 20 01:49:46 2016 (r411427) @@ -5,4 +5,4 @@ the C++ Standard Template Library, you c component to the needs of your application, without thereby giving up execution speed. -WWW: http://hci.iwr.uni-heidelberg.de/vigra/ +WWW: http://ukoethe.github.io/vigra/