Skip to content

Commit c1f7a6e

Browse files
committed
Update various doctests.
1 parent 1fba24c commit c1f7a6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

colour_checker_detection/detection/segmentation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,11 +687,11 @@ def colour_checkers_coordinates_segmentation(
687687
... 'colour_checker_detection', 'detection',
688688
... 'IMG_1967.png')
689689
>>> image = read_image(path)
690-
>>> colour_checkers_coordinates_segmentation(image)
690+
>>> colour_checkers_coordinates_segmentation(image) # doctest: +ELLIPSIS
691691
(array([[ 369, 688],
692692
[ 382, 226],
693693
[1078, 246],
694-
[1065, 707]]),)
694+
[1065, 707]]...)
695695
"""
696696

697697
image = as_float_array(image, FLOAT_DTYPE_DEFAULT)[..., :3]
@@ -1044,7 +1044,7 @@ def detect_colour_checkers_segmentation(
10441044
... 'colour_checker_detection', 'detection',
10451045
... 'IMG_1967.png')
10461046
>>> image = read_image(path)
1047-
>>> detect_colour_checkers_segmentation(image) # doctest: +ELLIPSIS
1047+
>>> detect_colour_checkers_segmentation(image) # doctest: +SKIP
10481048
(array([[ 0.361626... , 0.2241066..., 0.1187837...],
10491049
[ 0.6280594..., 0.3950883..., 0.2434766...],
10501050
[ 0.3326232..., 0.3156182..., 0.2891038...],

0 commit comments

Comments
 (0)