[Pkg-octave-commit] [octave-image] branch master updated (8644557 -> 8e8085b)
Rafael Laboissiere
rafael at debian.org
Wed Nov 2 15:25:56 UTC 2016
This is an automated email from the git hooks/post-receive script.
rafael pushed a change to branch master
in repository octave-image.
from 8644557 Use my Debian email address
adds ade68e0 New upstream version 2.6.1
adds 29c0c77 Merge tag 'upstream/2.6.1'
adds 7d4774d d/copyright: Reflect upstream changes
adds 03b6f8c Bump debhelper compatibility level to 10
adds 69d35ba d/s/options: Add diff-ignore list
adds c944ee9 d/p/series: Remove empty file
adds a3c4872 d/changelog: Add entry for release 2.6.1-1
adds 8e8085b Update list of exclusions for Git
No new revisions were added by this update.
Summary of changes:
.gitignore | 23 +-
COPYING | 843 ++++++++--
DESCRIPTION | 6 +-
INDEX | 15 +
NEWS | 70 +
bootstrap | 9 -
debian/changelog | 12 +
debian/compat | 2 +-
debian/control | 2 +-
debian/copyright | 18 +-
debian/patches/series | 0
debian/source/options | 1 +
inst/bweuler.m | 15 +-
inst/bwhitmiss.m | 48 +-
inst/bwmorph.m | 2 +-
inst/bwperim.m | 37 +-
inst/bwpropfilt.m | 9 +-
inst/bwselect.m | 13 +-
inst/checkerboard.m | 211 ++-
inst/cp2tform.m | 59 +-
inst/edge.m | 1125 ++++++++-----
inst/fftconv2.m | 21 +-
inst/fspecial.m | 369 ++++-
inst/grayslice.m | 7 +-
inst/im2bw.m | 152 +-
inst/im2col.m | 10 +-
inst/imadjust.m | 720 +++++----
inst/imcrop.m | 26 +-
inst/imfill.m | 481 ++++++
inst/imfilter.m | 95 +-
inst/imgetfile.m | 94 ++
inst/impyramid.m | 250 +++
inst/imquantize.m | 200 +++
inst/imremap.m | 15 +-
inst/imresize.m | 11 +-
inst/imsubtract.m | 12 +-
inst/imtransform.m | 116 +-
inst/imtranslate.m | 41 +-
inst/intlut.m | 79 -
inst/isbw.m | 77 +-
inst/isgray.m | 79 +-
inst/isind.m | 57 +-
inst/isrgb.m | 75 +-
inst/lab2double.m | 151 ++
inst/lab2rgb.m | 128 ++
inst/lab2single.m | 151 ++
inst/lab2uint16.m | 81 +
inst/lab2uint8.m | 77 +
inst/lab2xyz.m | 145 ++
inst/maketform.m | 51 +-
inst/mat2gray.m | 6 +-
inst/montage.m | 68 +-
inst/normxcorr2.m | 24 +-
inst/private/colorspace_conversion_input_check.m | 77 +
inst/private/colorspace_conversion_revert.m | 38 +
.../{is_double_image.m => is_float_image.m} | 4 +-
inst/private/iscolormap.m | 43 +
inst/private/lab2cls.m | 99 ++
inst/regionprops.m | 1662 +++++++++++++++-----
inst/rgb2lab.m | 120 ++
inst/rgb2xyz.m | 136 ++
inst/stretchlim.m | 468 ++++--
inst/tformfwd.m | 17 +-
inst/tforminv.m | 15 +-
inst/xyz2lab.m | 128 ++
inst/xyz2rgb.m | 125 ++
octave-image.metainfo.xml | 38 +
src/Makefile.in | 13 +-
src/__bilateral__.cc | 17 +-
src/__boundary__.cc | 11 +-
src/__spatial_filtering__.cc | 2 +-
src/aclocal.m4 | 2 +-
src/bwconncomp.cc | 7 +-
src/bwdist.cc | 18 +-
src/bwfill.cc | 39 +-
src/bwlabeln.cc | 14 +-
src/config.h.in | 2 +
src/configure | 1008 +++++++++---
src/configure.ac | 82 +-
src/connectivity.cc | 14 +-
src/connectivity.h | 59 +-
src/graycomatrix.cc | 6 +-
src/hough_line.cc | 4 +-
inst/im2double.m => src/im2double.m.in | 0
src/imerode.cc | 112 +-
src/imreconstruct.cc | 24 +-
src/intlut.cc | 153 ++
src/m4/ax_cxx_compile_stdcxx_11.m4 | 142 --
src/m4/std-gnu11.m4 | 824 ++++++++++
src/nonmax_supress.cc | 65 +-
src/strel.cc | 18 +-
src/strel.h | 14 +-
src/union-find.h | 2 +-
src/watershed.cc | 627 ++++++++
94 files changed, 10147 insertions(+), 2491 deletions(-)
delete mode 100755 bootstrap
delete mode 100644 debian/patches/series
create mode 100644 debian/source/options
create mode 100644 inst/imfill.m
create mode 100644 inst/imgetfile.m
create mode 100644 inst/impyramid.m
create mode 100644 inst/imquantize.m
delete mode 100644 inst/intlut.m
create mode 100644 inst/lab2double.m
create mode 100644 inst/lab2rgb.m
create mode 100644 inst/lab2single.m
create mode 100644 inst/lab2uint16.m
create mode 100644 inst/lab2uint8.m
create mode 100644 inst/lab2xyz.m
create mode 100644 inst/private/colorspace_conversion_input_check.m
create mode 100644 inst/private/colorspace_conversion_revert.m
rename inst/private/{is_double_image.m => is_float_image.m} (89%)
create mode 100644 inst/private/iscolormap.m
create mode 100644 inst/private/lab2cls.m
create mode 100644 inst/rgb2lab.m
create mode 100644 inst/rgb2xyz.m
create mode 100644 inst/xyz2lab.m
create mode 100644 inst/xyz2rgb.m
create mode 100644 octave-image.metainfo.xml
create mode 100644 src/config.h.in
rename inst/im2double.m => src/im2double.m.in (100%)
create mode 100644 src/intlut.cc
delete mode 100644 src/m4/ax_cxx_compile_stdcxx_11.m4
create mode 100644 src/m4/std-gnu11.m4
create mode 100644 src/watershed.cc
--
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave-image.git
More information about the Pkg-octave-commit
mailing list