Function tensorflow::ops::generate_bounding_box_proposals
source · pub fn generate_bounding_box_proposals<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>>(
scores: O0,
bbox_deltas: O1,
image_info: O2,
anchors: O3,
nms_threshold: O4,
pre_nms_topn: O5,
min_size: O6,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for GenerateBoundingBoxProposals::new().build(scores, bbox_deltas, image_info, anchors, nms_threshold, pre_nms_topn, min_size, scope)
.