You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is a problem that if
if(minX==maxX or minY==maxY): these data is illegal for DL dataset
so the following code is needed
if(minX==maxX or minY==maxY):
print("minx/miny:%s/%s maxx/maxy:%s/%s"%(minX,minY,maxX,maxY))
return
print("hhhhh======hhhhh")
The text was updated successfully, but these errors were encountered:
there is a problem that if
if(minX==maxX or minY==maxY): these data is illegal for DL dataset
so the following code is needed
if(minX==maxX or minY==maxY):
print("minx/miny:%s/%s maxx/maxy:%s/%s"%(minX,minY,maxX,maxY))
return
print("hhhhh======hhhhh")
The text was updated successfully, but these errors were encountered: