У меня есть фрагмент кода python, который предназначен для извлечения букв и маркировки каждой области, содержащей изображение.
edit: я использую google colab
Я получаю следующую ошибку:
print label_image.max()
^
SyntaxError: invalid syntax
Я пытался отследить версии python et c но не нашли решения. Любая помощь оценивается спасибо. полный код:
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
from scipy.misc import imread,imresize
from skimage.segmentation import clear_border
from skimage.morphology import label
from skimage.measure import regionprops
image = imageio.imread('https://pbs.twimg.com/profile_images/985792111713947648/7YD1ZYpe_400x400.jpg')
#apply threshold in order to make the image binary
bw = image < 120
# remove artifacts connected to image border
cleared = bw.copy()
clear_border(cleared)
# label image regions
label_image = label(cleared,neighbors=8)
borders = np.logical_xor(bw, cleared)
label_image[borders] = -1
print label_image.max()
fig, ax = plt.subplots(ncols=1, nrows=1, figsize=(6, 6))
ax.imshow(bw, cmap='jet')