mirror of https://github.com/AlexeyAB/darknet.git
Fixed darknet.py for Uncertainty (gaussian_yolo_layer)
This commit is contained in:
parent
e345b8793c
commit
d628e8eab7
|
@ -59,7 +59,8 @@ class DETECTION(Structure):
|
|||
("prob", POINTER(c_float)),
|
||||
("mask", POINTER(c_float)),
|
||||
("objectness", c_float),
|
||||
("sort_class", c_int)]
|
||||
("sort_class", c_int),
|
||||
("uc", POINTER(c_float))]
|
||||
|
||||
|
||||
class IMAGE(Structure):
|
||||
|
|
|
@ -59,7 +59,8 @@ class DETECTION(Structure):
|
|||
("prob", POINTER(c_float)),
|
||||
("mask", POINTER(c_float)),
|
||||
("objectness", c_float),
|
||||
("sort_class", c_int)]
|
||||
("sort_class", c_int),
|
||||
("uc", POINTER(c_float))]
|
||||
|
||||
|
||||
class IMAGE(Structure):
|
||||
|
|
Loading…
Reference in New Issue