如何在for循环中只打印一次语句

2024-04-29 16:29:04 发布

您现在位置:Python中文网/ 问答频道 /正文

这是我的实时目标检测代码的一部分

for i in range (classes.size): # here is my classes id is retrieved
        if(classes[0][i] == 2 and scores[0][i]>0.5):
          print("e waste detected")

我的输出是:

e waste detected
e waste detected
e waste detected
e waste detected..
.....
.... and so on.

我只想把这份声明打印一次。我能做什么?请帮帮我


Tags: and代码inid目标forsizehere
3条回答

如果触发了条件,可以使用break statement退出for循环。你知道吗

编辑:在没有数据文件的情况下,很难使用github上的代码来实现这一点,但这里有一个与您的用例类似的玩具示例:

classes= [0,2,2,1,2]

for item in (classes): # here is my classes id is retrieved
    if(item == 2):
        print("e waste detected")
        break
print("post-loop")

除去中断符,您将看到现在看到的行为—但是请注意缩进,它应该在if语句中。你知道吗

尝试此操作(添加的代码用#NEW comment标记)

...
waste_found = False  # NEW
for frame1 in camera.capture_continuous(rawCapture, format="bgr", use_video_port=True):

    t1 = cv2.getTickCount()

    # 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
    frame = np.copy(frame1.array)
    frame.setflags(write=1)
    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.40)
    # p = GPIO.PWM(servoPIN, 50)
    # p.start(2.5)
    for i in range(classes.size):
        if (classes[0][i] == 2 and scores[0][i] > 0.5):
            print("e waste detected")
            waste_found = True  # NEW
            break  # NEW
        # elif(classes[0][i] == 1 and scores[0][i]>0.5):
        # print("recycle detected")  
        # p.start(2.5) # Initialization
        ##  p.ChangeDutyCycle(5)
        # time.sleep(4)
        # p.ChangeDutyCycle(10)
        # time.sleep(4)
        #  except KeyboardInterrupt:
        #  p.stop()
        #  GPIO.cleanup()
    if waste_found:  # NEW
        break  # NEW

# return image_np
wasted = (c==2 and s>0.5 for c, s  in zip(classes, scores))
if any(wasted):
  print("wasted detected")

双大括号表示生成器理解,它在any找到第一个真值时停止。你知道吗

相关问题 更多 >