Function tensorflow::eager::raw_ops::draw_bounding_boxes_v2
source · pub fn draw_bounding_boxes_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
ctx: &'a Context,
images: &T0,
boxes: &T1,
colors: &T2
) -> Result<TensorHandle<'a>>
Expand description
Shorthand for DrawBoundingBoxesV2::new().call(&ctx, &images, &boxes, &colors)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/DrawBoundingBoxesV2