parser.add_argument("annotations",help="Path to the annotations.")
# optional
parser.add_argument("-m","--min_scale",dest="min_scale",type=float,metavar="fl",help="Minimum scale to be tested.",default=0.4)
parser.add_argument("-M","--max_scale",dest="max_scale",type=float,metavar="fl",help="Maximum scale to be tested.",default=5.0)
parser.add_argument("-o","--output",dest="output",type=str,metavar="path",help="Path to store resultiong image.",default="./roc.png")
parser.add_argument("-n","--nscales",dest="nscales",type=int,metavar="n",help="Prefered count of scales from min to max.",default=55)
# required
parser.add_argument("-f","--anttn-format",dest="anttn_format",choices=['inria','caltech',"idl"],help="Annotation file for test sequence.",required=True)