为您找到相关结果328,547个
酷派Y1怎么样 4G酷派Y1配置参数详情介绍_安卓手机_手机学院_脚本之家
酷派Y1 硬件配置方面,酷派Y1有着5.5英寸qHD屏幕,搭载高通8916四核处理器,主频为1.2GHz,采用1GB RAM和8GB ROM,拥有500万+1300万像素双镜头,并带有2500mAh电池,支持中国电信4G网络。
www.jb51.net/shouji/shouji/2125...html 2014-9-2
Python计算机视觉里的IOU计算实例_python_脚本之家
if((abs(x1 - x2) < ((w1 + w2)/ 2.0)) and (abs(y1-y2) < ((h1 + h2)/2.0))): left = max((x1 - (w1 / 2.0)), (x2 - (w2 / 2.0))) upper = max((y1 - (h1 / 2.0)), (y2 - (h2 / 2.0))) right = min((x1 + (w1 / 2.0)), (x2 + (w2 / 2.0))) bott...
www.jb51.net/article/1786...htm 2025-1-19
Python计算两个矩形重合面积代码实例_python_脚本之家
x1, y1, x2, y2=input().split(" ") x1, y1, x2, y2=int(x1),int(y1),int(x2),int(y2) # print(x1, y1, x2, y2) x1,x2=min(x1,x2),max(x1,x2) y1,y2=min(y1,y2),max(y1,y2) # print(x1, y1, x2, y2) ...
www.jb51.net/article/1701...htm 2025-1-17
java加密解密示例分享_java_脚本之家
public LineShape(int x, int y ,int x1,int y1,Color color){ this.x = x ; this.y = y ; this.x1 = x1 ; this.y1 = y1 ; this.color = color ; this.type = 0; } @Override public void draw(Graphics g) { g.setColor(color) ; ...
www.jb51.net/article/463...htm 2025-1-30
Python画图小案例之小雪人超详细源码注释_python_脚本之家
self.points=points# 坐标(x1, y1, x2, y2) self.fill=fill self.pid=None# 当前图形的id defdelete(self):# 删除图形 ifself.pid: self.cvns.delete(self.pid) classShapeAngles(Shape):# 继承基类(增加了角度)) def__init__(self, cvns, points, fill, angles=(10,170)):# angles:角度值,带...
www.jb51.net/article/2244...htm 2025-1-26