Files
scikit-image/skimage
Juan Nunez-Iglesias 5c03f2aff5 Bug: not all edges found by asymmetric footprint
If we have a label image:

[[1, 2],
 [3, 4]]

Then the footprint:

 [[0, 0, 0],
  [0, 1, 1],
  [0, 1, 1]]

will not discover the edge (2, 3), even though that edge should be
present when `connectivity=2`.

This commit fixes the bug by using a complete footprint, without the
top/left surfaces zeroed out.

See also:
https://github.com/scikit-image/scikit-image/pull/1826#issuecomment-164597442
2015-12-15 10:56:04 +11:00
..
2015-08-27 13:19:01 -07:00
2015-12-04 19:26:37 +01:00
2015-12-05 10:35:11 -06:00
2015-12-04 19:27:44 +01:00
2015-07-11 15:41:37 -05:00
2015-12-12 14:20:38 -06:00
2015-07-13 21:22:44 -05:00
2015-12-13 16:59:59 -06:00
2014-12-23 16:49:59 -06:00
2015-12-12 17:07:36 -06:00
2015-12-11 10:49:11 -06:00
2015-12-12 20:27:21 -06:00
2015-07-28 13:43:48 -05:00