小弟最近在学Python,
实际应用需要修改网上的范例,
其中看到一段程式码无法理解,
希望板上先进能协助,谢谢。
detections = []
detections = [Detection(bbox, score, feature) for bbox,score, feature in
zip(detections, track_scores, features)]
1.detections List的第一个元素中有for,后面带有bbox,score,
不晓得这是什么意思@@?
实际在跑侦错模式时,此行程式码会进入数次。这个for
2.第二个元素中.. feature in这是什么意思呢?
谢谢。