York1996OutLook

Results 15 issues of York1996OutLook

def intersection_area(rect1,rect2): r1 = cv2.rotatedRectangleIntersection(rect1, rect2) if r1[1] is None: return 0 # order_points=cv2.convexHull(r1[1],returnPoints=True) area = cv2.contourArea(r1[1]) return area def intersection_area_convex(rect1,rect2): r1 = cv2.rotatedRectangleIntersection(rect1, rect2) if r1[1] is None: return...

RuntimeError: invalid argument 0: Sizes of tensors must match except in dimension 0. Got 5 and 4 in dimension 1 at ..\aten\src\TH/generic/THTensor.cpp:711

here is my code : for confidence in range(1,10): label_filename = "./evaluate/label_2" result_path="./results/exp%d"%49 split_file = "./evaluate/lists/val.txt" print(0.9+confidence/100) evaluate(label_filename, result_path, split_file,score_thresh=0.9+confidence/100) output: 0.91 Car AP(Average Precision)@0.70, 0.70, 0.70: bbox AP:27.05, 23.71,...

███████████████| 3381/3381 [16:48

your pretrained google driver does not have .ckpt file

i use vgg16_caffe.pth and put it in data/pretrained_model. does anyone know what happend??

Thank you for participating in our evaluation! mkdir: cannot create directory ‘../../eval_kitti/results/exp1/data12/plot’: File exists Loading detections... number of files for evaluation: 0 why 0?

in your paper ,state 2 trainging batchsize is 256,but most of us do not have so many gpu.for examle ,at most ,i use batchsize 24, Should I reduce the learning...