2017-06-14 70 views

答えて

2

迅速な解決策は、バウンディングボックスの情報をプリントアウトするimage.cファイルを変更することです:

... 
if(bot > im.h-1) bot = im.h-1; 

// Print bounding box values 
printf("Bounding Box: Left=%d, Top=%d, Right=%d, Bottom=%d\n", left, top, right, bot); 
draw_box_width(im, left, top, right, bot, width, red, green, blue); 
... 
関連する問題