Yolo_mark icon indicating copy to clipboard operation
Yolo_mark copied to clipboard

How to convert yolo format to x,y,w,h ? I need to crop images. | Sorry but its Emergency

Open jamessmith90 opened this issue 4 years ago • 1 comments

I am in a tough situation and need to verify the dataset by cropping. Can someone post a simple function to convert yolo format to x,y,w,h so that i can crop images.

jamessmith90 avatar Nov 08 '19 07:11 jamessmith90

x_center = yolo_x * image_width y_center = yolo_y * image_height width = yolo_width * image_width height = yolo_height * image_height

x_left = (yolo_x - yolo_width/2) * image_width y_top = (yolo_y - yolo_height/2) * image_height

AlexeyAB avatar Nov 08 '19 11:11 AlexeyAB