/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============================================================================= */ /// import { Tensor1D, Tensor2D } from '../../tensor'; import { TensorLike } from '../../types'; /** * Performs non maximum suppression of bounding boxes based on * iou (intersection over union). * * @param boxes a 2d tensor of shape `[numBoxes, 4]`. Each entry is * `[y1, x1, y2, x2]`, where `(y1, x1)` and `(y2, x2)` are the corners of * the bounding box. * @param scores a 1d tensor providing the box scores of shape `[numBoxes]`. * @param maxOutputSize The maximum number of boxes to be selected. * @param iouThreshold A float representing the threshold for deciding whether * boxes overlap too much with respect to IOU. Must be between [0, 1]. * Defaults to 0.5 (50% box overlap). * @param scoreThreshold A threshold for deciding when to remove boxes based * on score. Defaults to -inf, which means any score is accepted. * @return A 1D tensor with the selected box indices. * * @doc {heading: 'Operations', subheading: 'Images', namespace: 'image'} */ declare function nonMaxSuppression_(boxes: Tensor2D | TensorLike, scores: Tensor1D | TensorLike, maxOutputSize: number, iouThreshold?: number, scoreThreshold?: number): Tensor1D; export declare const nonMaxSuppression: typeof nonMaxSuppression_; export {};