Python(Numpy)实现非极大值抑制

1.Numpy的几个骚操作

(1).np.maximum的使用

import numpy as np
box = [3,5,7,9]  # A single box with a first coordinate of 3
boxes = np.array([[1, 4], [5, 2], [2, 6]])  # An array of multiple boxes
#把box把3拿出来和boxes的第一列,逐个比较,返回最大值list
result = np.maximum(box[0], boxes[:, 0])
#result=[3 5 3]
print(result)

(2). np.argsort的使用:

import numpy as np
scores = np.array([0.5, 0.2, 0.8])
list1 = np.argsort(scores)
list2=np.argsort(scores)[::-1]
#list1=[1 0 2]
print(f"list1={list1}")
#list2=[2 0 1]
print(f"list2={list2}")
#scores=[0.5 0.2 0.8],原来的顺序没改
print(f"scores={scores}")

(3).向量和矩阵的乘法和加法

import numpy as np
box = [3,5]  # A single box with a first coordinate of 3
boxes = np.array([[1, 4], [5, 2], [2, 6]])  # An array of multiple boxes"""
矩阵乘法是"@"不是"*"
*不是矩阵乘法,把boxes的每一行都对应乘以box
box*boxes=[[ 3 20][15 10][ 6 30]]
"""
print(box*boxes)"""
boxes的每一列都对应乘以box
box+boxes=[[ 4  9][ 8  7][ 5 11]]
"""
print(box+boxes)

2.非极大值抑制

def non_max_suppression(boxes, scores, threshold):"""Apply non-maximum suppression to eliminate redundant bounding boxes.Parameters:- boxes: A list of bounding boxes in the format (x1, y1, x2, y2).- scores: A list of confidence scores for each bounding box.- threshold: The IoU (Intersection over Union) threshold for suppression.Returns:- selected_indices: A list of indices for the selected bounding boxes."""if len(boxes) == 0:return []# Convert the bounding boxes to the format (x1, y1, x2, y2)boxes = np.array(boxes)# Sort indices based on confidence scores (in descending order)#sorted_indices=[2,0,1]sorted_indices = np.argsort(scores)[::-1]selected_indices = []while len(sorted_indices) > 0:# Pick the bounding box with the highest confidence scorei = sorted_indices[0]selected_indices.append(i)# Calculate IoU with the remaining bounding boxesious = calculate_iou(boxes[i], boxes[sorted_indices[1:]])# Filter out bounding boxes with IoU higher than the threshold#np.where(ious <= threshold) is ([])#type(remaining_indices)=ndarrayremaining_indices = np.where(ious <= threshold)[0]print(f"remaining_indices={remaining_indices}")print(f"remaining_indices+1={remaining_indices+1}")#i=2的哪个框已经进入selectedsorted_indices = sorted_indices[remaining_indices + 1]print("sorted_indices=",sorted_indices)return selected_indicesdef calculate_iou(box, boxes):"""Calculate the Intersection over Union (IoU) between a bounding box and a list of bounding boxes.Parameters:- box: The bounding box in the format (x1, y1, x2, y2).- boxes: A list of bounding boxes.Returns:- ious: A numpy array of IoU values."""#计算intersection的4个坐标x1 = np.maximum(box[0], boxes[:, 0])y1 = np.maximum(box[1], boxes[:, 1])x2 = np.minimum(box[2], boxes[:, 2])y2 = np.minimum(box[3], boxes[:, 3])#没有交集的框的IoU就是0intersection = np.maximum(0, x2 - x1) * np.maximum(0, y2 - y1)area_box = (box[2] - box[0]) * (box[3] - box[1])area_boxes = (boxes[:, 2] - boxes[:, 0]) * (boxes[:, 3] - boxes[:, 1])union = area_box + area_boxes - intersectionious = intersection / unionreturn ious# Example usage:
import numpy as np
if __name__=="__main__":# Example bounding boxes and confidence scores#the 4 number in each box is the coordinate of left-top corner#and  right-bottom cornerboxes = [(10, 20, 50, 60), (15, 25, 55, 65), (30, 40, 70, 80)]scores = [0.9, 0.75, 0.95]# Set the IoU threshold for non-maximum suppressioniou_threshold = 0.5# Apply non-maximum suppressionselected_indices = non_max_suppression(boxes, scores, iou_threshold)# Display the selected bounding boxesfor i in selected_indices:print(f"Selected Box: {boxes[i]}, Score: {scores[i]}")
Selected Box: (30, 40, 70, 80), Score: 0.95
Selected Box: (10, 20, 50, 60), Score: 0.9

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/140674.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

机器学习中的假设检验

正态性检验相关分析回归分析 所谓假设检验&#xff0c;其实就是根据原假设来构造一种已知分布的统计量来计算概率&#xff0c;根据概率值大小来判断能否拒绝原假设&#xff0c;从而得到一种结论。假设检验的过程就是&#xff0c;构造一个原假设成立条件下的事件A&#xff0c;计…

使用Nodejs搭建简单的web网页并实现公网访问

&#x1f525;博客主页&#xff1a; 小羊失眠啦. &#x1f3a5;系列专栏&#xff1a;《C语言》 《数据结构》 《Linux》《Cpolar》 ❤️感谢大家点赞&#x1f44d;收藏⭐评论✍️ 使用Nodejs搭建简单的web网页并实现公网访问 前言 Node.js是建立在谷歌Chrome的JavaScript引擎…

HarmonyOS应用开发-首选项与后台通知管理

首选项 在移动互联网蓬勃发展的今天&#xff0c;移动应用给我们生活带来了极大的便利&#xff0c;这些便利的本质在于数据的互联互通。因此在应用的开发中数据存储占据了非常重要的位置&#xff0c;HarmonyOS应用开发也不例外。本章以HarmonyOS的首选项为例&#xff0c;介绍了…

SpringBoot 是否必传参数之分组校验(2)

文章目录 前言背景分组接口分组校验Controller层请求示例前言 本文基于SpringBoot 3.1.2,使用分组校验来优雅的处理参数是否必传校验。 背景 在做Crud时,尤其是修改操作,某个参数在规定不能修改,如果没有做是否必传校验,就会导致前端无论传什么,后端就会直接进行修改操…

Python:Unittest框架快速入门:用例、断言、夹具、套件、HTML报告、ddt数据驱动

快速看了套Unittest的入门教程 软件测试全套资料赠送_哔哩哔哩_bilibili软件测试全套资料赠送是快速入门unittest测试框架&#xff01;全实战详细教学&#xff0c;仅此一套&#xff01;的第1集视频&#xff0c;该合集共计11集&#xff0c;视频收藏或关注UP主&#xff0c;及时了…

本周Github有趣开源项目:Rspress等6个

Github有趣的项目、工具和库&#xff1a; 1、sshx 一个基于 Web 的安全协作终端。通过网络进行快速、协作的实时终端共享 特征&#xff1a; 运行一个命令即可与任何人共享您的终端。 在无限画布上调整大小、移动窗口以及自由缩放和平移。 查看其他人的光标实时移动。 连接到…

copilot 产生 python工具函数并生成单元测试

stock.py 这个文件&#xff0c;我只写了注释&#xff08;的开头&#xff09;&#xff0c;大部分注释内容和函数都是copilot # split a string and extract the environment variable from it # input can be , pathabc, pathabc;pathdef, pathabc;pathdef;pathghi # output i…

如何结合内网穿透实现公网远程访问Linux AMH服务器管理面板

文章目录 1. Linux 安装AMH 面板2. 本地访问AMH 面板3. Linux安装Cpolar4. 配置AMH面板公网地址5. 远程访问AMH面板6. 固定AMH面板公网地址 AMH 是一款基于 Linux 系统的服务器管理面板&#xff0c;它提供了一系列的功能&#xff0c;包括网站管理、FTP 管理、数据库管理、DNS 管…

假冒 Skype 应用程序网络钓鱼分析

参考链接: https://slowmist.medium.com/fake-skype-app-phishing-analysis-35c1dc8bc515 背景 在Web3世界中&#xff0c;涉及假冒应用程序的网络钓鱼事件相当频繁。慢雾安全团队此前曾发表过分析此类网络钓鱼案例的文章。由于Google Play在中国无法访问&#xff0c;许多用户…

STM32--系统滴答SysTick

一、SysTick是什么&#xff1f; Systick定时器是一个24bit的倒计时&#xff08;向下计数&#xff09;定时器&#xff0c;功能就是实现简单的延时。 SysTick 是一种系统定时器&#xff0c;通常在嵌入式系统中使用。它是 ARM Cortex-M 处理器的一个特殊定时器&#xff0c;用于提…

Notepad++,搜索窗口独立后,恢复

双击一下find result框&#xff0c;恢复到原来的模式。

Apipost IDEA插件如何使用

Apipost-Helper是由Apipost推出的IDEA插件&#xff0c;写完接口可以进行快速调试&#xff0c;且支持搜索接口、根据method跳转接口&#xff0c;还支持生成标准的API文档&#xff0c;注意&#xff1a;这些操作都可以在代码编辑器内独立完成&#xff0c;非常好用&#xff01;这里…

docker/ nvidia-docker

参考资料&#xff1a;https://www.cnblogs.com/zzcit/p/5845717.html 本文档说明下列系统下安装nvidia-docker Ubuntu Trusty 14.04 (LTS)Ubuntu Xenial 16.04 (LTS) 安装docker 更新apt源 更新安装包信息 sudo apt-get update sudo apt-get install apt-transport-http…

Selenium+Python自动化测试环境搭建

selenium python 自动化测试 —— 环境搭建 关于 selenium Selenium 是一个用于Web应用程序测试的工具。Selenium测试直接运行在浏览器中&#xff0c;就像真正的用户在操作一样。支持的浏览器包括IE(7、8、9)、Mozilla Firefox、Mozilla Suite等。 Selenium 框架底层使用JavaS…

独立站商品信息是怎么获取的呢

独立站商品信息的获取主要通过以下几种方式&#xff1a; 人工收集&#xff1a;卖家可以通过在各个电商平台、网站等渠道进行手动搜索和收集商品信息&#xff0c;包括商品名称、价格、描述、图片等&#xff0c;然后将其导入到自己的独立站中。使用采集工具&#xff1a;目前市面…

初阶JavaEE(17)Linux 基本使用和 web 程序部署

接上次博客&#xff1a;初阶JavaEE&#xff08;16&#xff09;博客系统&#xff08;Markdown编辑器介绍、博客系统功能、博客系统编写&#xff1a;博客列表页 、博客详情页、实现登录、实现强制登录、显示用户信息、退出登录、发布博客&#xff09;-CSDN博客 目录 Linux 基本…

PyCharm鼠标控制字体缩放

File->Settings->Keymap 右边搜索栏输入increase(放大)&#xff0c;可以看到下面出现increase Font Size(放大字体尺寸)&#xff0c;双击。 双击后出现几个选项&#xff0c;选择Add Mouse Shortcut,会出现一个页面给录入动作。 按住Ctrl同时鼠标向上滚动&#xff0c;该动…

[vim]Python编写插件学习笔记1 - 开始

0 环境 Windows 11 22H2gVim82 (D:/ProgramFiles/Vim)Python311 (D:/ProgramFiles/Python311)Vundle v0.10.2 1 Vim 支持 Python gVim82 默认配置中&#xff0c;使用的是 Python3.8。 但我的环境安装的是 Python3.11&#xff0c;且不是安装在默认路径下。虽然添加了 PATH 环…

Vite探索:构建、启程、原理、CSS艺术与插件魔法

文章目录 1 构建工具1.1 什么是构建工具1.2 主流构建工具1.3 vite相较于webpack的优势 2 vite启动项目初体验2.1 你必须要理解的vite脚手架和vite2.2 vite开箱即用2.3 vite的预加载2.4 vite配置文件处理细节2.5 vue环境变量配置 3 vite 原理篇3.1 vite是怎么让浏览器可以识别.v…

双十一“静悄悄”?VR购物拉满沉浸式购物体验

以往每年的双十一&#xff0c;都会因为电商购物狂欢而变得热闹非凡&#xff0c;而各大电商平台也会在这天推出各种促销活动。但是&#xff0c;近几年来&#xff0c;双十一正在变得“静悄悄”。一个原因是消费群体越发理性消费&#xff0c;更加重视商品本身的质量和体验&#xf…