如何写一个找最大的圆的函数
-
def find_max_blob(blobs):
max_size = 0
for blob in blobs:
if blob.pixels() > max_size:
max_blob = blob
max_size = blob.pixels()
return max_blob
上面是一个找最大色块的函数 可以实现
参照上面的函数 写一个找最大的圆的函数 出现报错
def find_max_circle(circles):
max_size = 0
for circle in circles:
if circle.r() > max_size
max_circle = circle
max_size = circle.r()
return max_circle
-
你的if后面没有冒号。
-
sorry 粗心了 感谢