We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638ddc8 commit f4ca607Copy full SHA for f4ca607
stage0_starting_script/face_detect_skimage.py
@@ -5,7 +5,6 @@
5
from skimage.feature import Cascade
6
import matplotlib.pyplot as plt
7
from matplotlib import patches
8
-import imageio
9
import sys
10
from os.path import join
11
@@ -21,7 +20,7 @@
21
20
image_path = join("../sample_images", "IMG-0311_xmas_2020.JPG")
22
# image_path = join("sample_images", "owls.jpg")
23
24
-img = imageio.imread(image_path)
+img = plt.imread(image_path)
25
26
detected = detector.detect_multi_scale(img=img,
27
scale_factor=1.2,
0 commit comments