[skimage] annotated tag debian/0.6-1 created (now 295e290)

Andreas Tille tille at debian.org
Fri Dec 23 08:22:12 UTC 2016


This is an automated email from the git hooks/post-receive script.

tille pushed a change to annotated tag debian/0.6-1
in repository skimage.

        at  295e290   (tag)
   tagging  403ebe611c095da0a391403e25f46ead65756afe (commit)
  replaces  debian/0.5.0+git100-gfeb3e92-2
 tagged by  Yaroslav Halchenko
        on  Wed Jun 27 15:38:57 2012 -0400

- Log -----------------------------------------------------------------
Debian release 0.6-1
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAk/rYVEACgkQjRFFY3XAJMjGPgCgzNLuOUxE3u0PL0CQ7pMrgYHm
MakAnjePH+KF+bvyq9OPkVbAT5s3h4dM
=eqbY
-----END PGP SIGNATURE-----

David Cournapeau (3):
      FEAT: new shot at bento build.
      FEAT: update to bento master - simplify waf declaration.
      REF: tweak bento build.

James Turner (2):
      Allow for type of hdu.size changing in PyFITS 3.1
      Readability improvement suggested by tonysyu

Johannes Schönberger (25):
      added regionprops function
      adapted to PEP8 whitespace conventions
      extended and improved description of properties in doc string
      moments and central moments no longer use separate functions
      removed old description of moments in doc string
      changed reference notes in doc string
      added test: labelled image must be of integer type
      most functionality of regionprops now pure python except for moments
      renamed regionprops source files for better separation between function name and source file
      fixed typo and improved example in doc string
      euler number now behaves like MATLAB implementation
      added test cases for regionprops
      more constistent way of determining ellipse parameters
      fix wrong indentation
      parameters of ellipse match Matlab results
      make all test cases of regionprops work
      update contribution for regionprops
      remove unused variables
      make matrix shape more readable in doc string
      change reference note in doc string
      reduce parameter choice of properties
      replace inline latex equations in doc string with plain text
      regionprops takes optional intensity images
      add example script for regionprops function to documentation
      add moments Cython extension to bento.info

Stefan van der Walt (47):
      ENH: Implement fast coordinate transformations.
      BUG: Fix incorrect import.
      STY: Cleanups after Tony's review.
      STY: Move swirl to _warp_zoo so we can add more transforms later.
      STY: Minor cleanups.
      Merge pull request #164 from cournape/bento_build
      BUG: Temporary workaround for shape offset parameter in radon transform.
      ENH: Better formulation of _stackcopy.
      Merge pull request #100 from tonysyu/skimage-template
      BUG: Fix internal import in template matching.
      BUG: Correctly import _feature in Python 3.
      Merge pull request #189 from tonysyu/fix-stack-copy
      Merge pull request #191 from cgohlke/patch-1
      BUG: Fix FreeImage Py3k compatibility [patch by Almar Klein].
      BUG: Catch all exceptions, including NotImplementedError, when checking for number of CPUs in multi-processing.
      Merge pull request #192 from tangofoxtrotmike/master
      Merge pull request #183 from ahojnnes/measure
      BUG: Remove debugging print statement that broke Py3k.
      Merge pull request #198 from zachrahan/mcp-index-fix
      Merge pull request #193 from cgohlke/patch-1
      PKG: Update release instructions--add version to bento.info.
      BUG: Fix PIL test on big endian.
      Merge pull request #200 from cgohlke/patch-2
      BUG: Fix background labelling for case when (0, 0) belongs to the background.
      Merge pull request #202 from cgohlke/patch-3
      DOC: Provide correct link for tifffile plugin.
      Merge pull request #196 from tonysyu/fix-plugin-init
      BUG: Use PIL as the default image loader.
      ENH: Allow resetting the plugin state.
      ENH: Add Structural SIMilarity (SSIM) image comparison.
      ENH: Add SSIM gradient.
      ENH: Rename ssid to structural_similarity to avoid confusion with self-similarity features.
      DOC: Example of structural similarity.  The example is currently broken because structural_similarity does not auto-detect dynamic range.
      DOC: In ssim example, use correct dynamic range in algorithm and when displaying results.
      ENH: Automatically determine dynamic range in ssim if not specified.
      PKG: Rename _ssim to _structural_similarity.
      STY: Wrap long line.
      ENH: Promote as_windows to a utility function.
      PKG: Rename as_windows to view_as_windows.
      BUG: Remove double import of find contours.
      BUG Remove merge artefact.
      BUG Fix invalid import of structural_similarity.
      BUG: Fix structural similarity to use new signature for view_as_windows.  Remove bad gradient check.
      Merge pull request #190 from tonysyu/plot2rst
      DOC: Add 0.6 release notes.
      PKG: Update version to 0.6.
      PKG: Update doc versions.

Tony S Yu (64):
      Merge pull request #184 from stefanv/fast_coordinate_map
      Convert template matching Pull Request to skimage
      Remove unused imports
      Fix whitespace
      Update setup file to new repo and fix typos
      Remove dependency on math module
      Wrap long lines
      Clean up docstrings
      Fix copy-paste bug
      Wrap long lines
      Change OpenCV import to make it an optional dependency
      PEP8: add spacing around operators
      Remove unused `integral_image` function in _template.pyx
      Simplify _template.pyx using integral_image from transform subpackage.
      Add comment about code duplication.
      Fix assert failure in example
      Replace assert statement with plot to show matches
      Reorganize example so that all plotting code is at the end
      Move template matching to feature subpackage
      Change _template.match_template variables to float.
      Fix type errors in `match_template` by casting inputs to float32.
      Use `feature.peak_local_max` instead of custom peak detection.
      Remove OpenCV version of match_template
      Refactor template matching.
      Remove unnecessary truncation at boundary.
      Add `pad_output` argmument to `match_template`.
      DOC: demonstrate where the template is matched in an image.
      Simply equation in docstring of `match_docstring`.
      Fix bug when indexing into summed-area table.
      Minor cleanup
      Rewrite normalization algorithm.
      Tweak example to reduce confusion.
      Add normalization test and remove unnecessary clipping.
      Renaming for clarity.
      Fix convolution input to get correlation results.
      Pad input image instead of output.
      Change `flipud`/`fliplr` to array indexing.
      Add alternate example for `match_template`.
      Check that image is larger than template.
      Prevent `match_template` from returning NaNs.
      Set `match_template` to default to no padding and fix test.
      Rename `pad_output` parameter to `pad_input`.
      Add test for `pad_input = True`.
      Add doctest example to `match_template`.
      Fix template example.
      Fix shape unpacking ((height, width), not (w, h)).
      Add new example plot for `match_template`.
      DOC: Replace template example with alternate example.
      Add contribution note.
      BUG: fix test images (float images between 0 and 1).
      DOC: Remove Sphinx extension for inheritence trees.
      DOC: Replace use of gen_rst with plot2rst extension.
      BUG: Fix stackcopy for grayscale image.
      DOC: convert segmentation example to tutorial-style example.
      DOC: Set rcparams for better default plots.
      Remove gen_rst
      Fix: check all io functions when loading of default plugins.
      Merge pull request #194 from jehturner/pyfits_hdusize_fix
      DOC: Fix link formatting
      Refactor how PIL is set as default for imread.
      Replace mpltools reference with skimage.
      Merge pull request #119 from stefanv/ssim
      Merge pull request #208 from stefanv/io_reset
      Skip test that fails for PIL < 1.1.7

Yaroslav Halchenko (2):
      Merge tag 'v0.6' into debian
      changelog entry for 0.6-1

Zach Pincus (3):
      BUG: MCP could segfault in places where both positive and negative moves would go out of bounds.
      Indent 4
      ENH: Add tests for boundary-overlapping offsets

cgohlke (25):
      Add new 64-bit metadata types to METADATA_DATATYPE (new in FreeImage 3.15.3)
      Rewrite convert function
      Adjust tests for new type conversion rules
      Adjust rescale_intensity function to new dtype conversion rules
      Fix grammar
      Docstring additions
      Fix spelling
      Update docstring
      Fix whitespace
      Fix uniform conversion to signed int
      Fix rescale_intensity
      Fix numpy 1.7dev casting
      Verify dtype
      Return correct dtype
      Code cleanup
      Restore test_float_out_of_range
      Add floating point range check
      Fix TypeError
      Use general format
      Remove controversial range check
      Remove range check test
      Add range check against better judgment
      Add test_float_out_of_range
      Fix test failures on Python 3
      Fix build error on EPD for Windows

tangofoxtrotmike (1):
      feature.hog(): use y,x coords consistently, now works on non-square images

-----------------------------------------------------------------------

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/skimage.git



More information about the debian-science-commits mailing list