File: Remove-reference-to-example-that-required-dask.patch

package info (click to toggle)
skimage 0.25.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 32,668 kB
  • sloc: python: 60,005; cpp: 2,592; ansic: 1,591; xml: 1,342; javascript: 1,267; makefile: 168; sh: 20
file content (22 lines) | stat: -rw-r--r-- 812 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Ole Streicher <olebole@debian.org>
Date: Sun, 15 Jan 2023 13:13:09 +0100
Subject: Remove reference to example that required dask

---
 skimage/feature/haar.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/skimage/feature/haar.py b/skimage/feature/haar.py
index 6cdc407..d3fe775 100644
--- a/skimage/feature/haar.py
+++ b/skimage/feature/haar.py
@@ -141,9 +141,6 @@ def haar_like_feature(
     performance. The rule of thumb is as follows: use multiprocessing when
     extracting features for all possible ROI in an image; use threading when
     extracting the feature at specific location for a limited number of ROIs.
-    Refer to the example
-    :ref:`sphx_glr_auto_examples_applications_plot_haar_extraction_selection_classification.py`
-    for more insights.
 
     Examples
     --------