В тензорной модели поезда я хочу отправить сообщение, когда появится зеленая метка - PullRequest
0 голосов
/ 03 апреля 2019

Я хочу условие, когда зеленая метка будет видеть в видео сообщение будет отправлено с использованием узла javascirpt (с использованием сервера localhost) или любым другим способом.

в то время как (video.isOpened ()):

# Acquire frame and expand frame dimensions to have shape: [1, None, None, 3]
# i.e. a single-column array, where each item in the column has the pixel RGB value
ret, frame = video.read()
frame_expanded = np.expand_dims(frame, axis=0)

# Perform the actual detection by running the model with the image as input
(boxes, scores, classes, num) = sess.run(
    [detection_boxes, detection_scores, detection_classes, num_detections],
    feed_dict={image_tensor: frame_expanded})

# Draw the results of the detection (aka 'visulaize the results')
vis_util.visualize_boxes_and_labels_on_image_array(
    frame,
    np.squeeze(boxes),
    np.squeeze(classes).astype(np.int32),
    np.squeeze(scores),
    category_index,
    use_normalized_coordinates=True,
    line_thickness=8,
    min_score_thresh=0.80)
#put condition here#

# All the results have been drawn on the frame, so it's time to display it.
cv2.imshow('Object detector', frame)
enter code here
# Press 'q' to quit
if cv2.waitKey(1) == ord('q'):
    break
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...