Home
last modified time | relevance | path

Searched refs:objectness (Results 1 – 24 of 24) sorted by relevance

/dports/misc/py-gluoncv/gluon-cv-0.9.0/gluoncv/model_zoo/yolo/
H A Dyolo_target.py81 objectness = nd.zeros_like(weights.split(axis=-1, num_outputs=2)[0])
82 class_targets = nd.one_hot(objectness.squeeze(axis=-1), depth=self._num_class)
122 objectness[b, index, match, 0] = (
127 objectness = self._slice(objectness, num_anchors, num_offsets)
132 return objectness, center_targets, scale_targets, weights, class_targets
259 objectness = F.where(mask, obj[1], obj[0])
275 return [F.stop_gradient(x) for x in [objectness, center_targets, scale_targets,
/dports/misc/tvm/incubator-tvm-0.6.1/python/tvm/relay/testing/
H A Dyolo_detection.py95 objectness = data[location[0]][4][location[1]][location[2]]
97 prob = objectness*data[location[0], 5:5 + 1 + classes, location[1], location[2]]
103 detection['objectness'] = objectness
119 objectness = scale if scale > thresh else 0
120 if objectness:
127 detection['objectness'] = objectness
/dports/misc/py-tvm/incubator-tvm-0.6.1/python/tvm/relay/testing/
H A Dyolo_detection.py95 objectness = data[location[0]][4][location[1]][location[2]]
97 prob = objectness*data[location[0], 5:5 + 1 + classes, location[1], location[2]]
103 detection['objectness'] = objectness
119 objectness = scale if scale > thresh else 0
120 if objectness:
127 detection['objectness'] = objectness
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/relay/testing/
H A Dyolo_detection.py111 objectness = data[location[0]][4][location[1]][location[2]]
113 prob = objectness * data[location[0], 5 : 5 + 1 + classes, location[1], location[2]]
119 detection["objectness"] = objectness
147 objectness = scale if scale > thresh else 0
148 if objectness:
156 detection["objectness"] = objectness
/dports/misc/darknet/darknet-darknet_yolo_v4_pre/src/
H A Dyolo_layer.c310 int compare_yolo_class(float *output, int classes, int class_index, int stride, float objectness, i… in compare_yolo_class() argument
391 float objectness = l.output[obj_index]; in forward_yolo_layer() local
392 if (isnan(objectness) || isinf(objectness)) l.output[obj_index] = 0; in forward_yolo_layer()
802 float objectness = predictions[obj_index]; in get_yolo_detections() local
804 if (objectness > thresh) { in get_yolo_detections()
808 dets[count].objectness = objectness; in get_yolo_detections()
812 float prob = objectness*predictions[class_index]; in get_yolo_detections()
834 float objectness = predictions[obj_index]; in get_yolo_detections_batch() local
836 if (objectness > thresh) { in get_yolo_detections_batch()
840 dets[count].objectness = objectness; in get_yolo_detections_batch()
[all …]
H A Dbox.c769 diff = a.objectness - b.objectness; in nms_comparator_v3()
781 if (dets[i].objectness == 0) { in do_nms_obj()
797 if (dets[i].objectness == 0) continue; in do_nms_obj()
800 if (dets[j].objectness == 0) continue; in do_nms_obj()
803 dets[j].objectness = 0; in do_nms_obj()
817 if (dets[i].objectness == 0) { in do_nms_sort()
873 if (dets[i].objectness == 0) { in diounms_sort()
H A Dgaussian_yolo_layer.c393 …o_class(float *output, int classes, int class_index, int stride, float objectness, int class_id, f… in compare_gaussian_yolo_class() argument
478 float objectness = l.output[obj_index]; in forward_gaussian_yolo_layer() local
479 …compare_gaussian_yolo_class(l.output, l.classes, class_index, l.w*l.h, objectness, class_id, 0.25f… in forward_gaussian_yolo_layer()
805 float objectness = predictions[obj_index]; in get_gaussian_yolo_detections() local
806 if (objectness <= thresh) continue; // incorrect behavior for Nan values in get_gaussian_yolo_detections()
808 if (objectness > thresh) { in get_gaussian_yolo_detections()
811 dets[count].objectness = objectness; in get_gaussian_yolo_detections()
825 float prob = objectness*predictions[class_index] * (1.0 - uc_aver); in get_gaussian_yolo_detections()
H A Dregion_layer.c549 dets[index].objectness = scale > thresh ? scale : 0; in get_region_detections()
573 if (dets[index].objectness) { in get_region_detections()
H A Ddetection_layer.c307 dets[index].objectness = scale; in get_detection_detections()
H A Ddetector.c845 if (dets[k].objectness > thresh) { in validate_detector_recall()
855 if (dets[k].objectness > thresh && iou > best_iou) { in validate_detector_recall()
H A Dnetwork.c809 dets[j].objectness = 1; in custom_get_region_detections()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/saliency/
H A DREADME.md4 …I -- Where humans would look in a scene. Has routines for static, motion and "objectness" saliency.
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Remote/
H A DSimpleITKFilters.remote.cmake6 contains a discrete hessian, and a composite filter to compute objectness."
/dports/misc/py-gluoncv/gluon-cv-0.9.0/gluoncv/data/transforms/presets/
H A Dyolo.py209 objectness, center_targets, scale_targets, weights, class_targets = self._target_generator(
212 return (img, objectness[0], center_targets[0], scale_targets[0], weights[0],
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/saliency/doc/
H A Dsaliency.bib2 title={BING: Binarized normed gradients for objectness estimation at 300fps},
/dports/misc/darknet/darknet-darknet_yolo_v4_pre/include/
H A Ddarknet.h290 int objectness; member
832 float objectness; member
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/
H A DREADME.md61 …I -- Where humans would look in a scene. Has routines for static, motion and "objectness" saliency.
/dports/lang/racket/racket-8.3/share/pkgs/scribble-lib/scribble/
H A Deval.rkt210 ;; syntax-objectness of the original intact, instead of always
/dports/www/p5-WWW-Mechanize/WWW-Mechanize-2.06/
H A DChanges1288 didn't feel like figuring out why. If the non-objectness
/dports/misc/mxnet/incubator-mxnet-1.9.0/example/ssd/tools/caffe_converter/
H A Dcaffe.proto1310 // objectness detector.
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/example/ssd/tools/caffe_converter/
H A Dcaffe.proto1310 // objectness detector.
/dports/misc/mnn/MNN-1.2.0/tools/converter/source/caffe/
H A Dcaffe.proto1451 // objectness detector.
/dports/x11/xloadimage/xloadimage.4.1/jpeg/
H A Darchitecture807 will impose objectness on the other three.
/dports/textproc/p5-Unicode-Tussle/Unicode-Tussle-1.111/data/
H A Dwords.utf8244028 materialobject › material object, thing, material objectness ← material
282760 objectness ˈobjectness [n.]