kmaninis / COB

Convolutional Oriented Boundaries
http://www.vision.ee.ethz.ch/~cvlsegmentation/cob/
Other
195 stars 59 forks source link

bbox format #7

Closed yuxinyan closed 7 years ago

yuxinyan commented 7 years ago

Question: The bbox coordinate of image's top-left is [0,0]. and the format of bbox is [y1, x1, y2, x2] corresponding to [up, left, down, right]. Is it right?

kmaninis commented 7 years ago

Hi, I guess you are referring to the bounding box proposals. The top-left of the image is [1, 1] (matlab indixes). For the format you are right, it is [ymin, xmin, ymax, xmax].

yuxinyan commented 7 years ago

Thanks a lot!