网站首页 站内搜索

搜索结果

查询Tags标签: circle,共有 111条记录
  • halcon-学习笔记

    *halcon基础编程等号 := 不等号 #注释号 *字符串赋值 str := halcon等于比较符 if(X=10)与: if(A>1 and A<30)或: if(A>1 or A<30)求反: if(not(A=10))* 二值化 threshold (Image, Region, 100, 255)4* 形状变换 shape_trans (Region, RegionTrans, rectan…

    2022/1/5 6:11:36 人评论 次浏览
  • halcon-学习笔记

    *halcon基础编程等号 := 不等号 #注释号 *字符串赋值 str := halcon等于比较符 if(X=10)与: if(A>1 and A<30)或: if(A>1 or A<30)求反: if(not(A=10))* 二值化 threshold (Image, Region, 100, 255)4* 形状变换 shape_trans (Region, RegionTrans, rectan…

    2022/1/5 6:11:36 人评论 次浏览
  • Java编程题(四)

    选择题 1、(单选题)下列关于 interface 的说法正确的是( ) A.interface 中可以有 private 方法 B.interface 中可以有 final 方法 C.interface 中可以有 function 实现 D.interface 可以继承其他 interface 【正确答案】D 【答案解析】A. 接口中不可以有 private 的方法…

    2021/12/29 17:07:07 人评论 次浏览
  • Java编程题(四)

    选择题 1、(单选题)下列关于 interface 的说法正确的是( ) A.interface 中可以有 private 方法 B.interface 中可以有 final 方法 C.interface 中可以有 function 实现 D.interface 可以继承其他 interface 【正确答案】D 【答案解析】A. 接口中不可以有 private 的方法…

    2021/12/29 17:07:07 人评论 次浏览
  • 用python画玫瑰花

    import turtle as tt.setup(800,800) t.hideturtle() t.speed(11) t.penup() t.goto(50,-450) t.pensize(5) t.pencolor("black") t.seth(140) t.pendown() t.speed(10) t.circle(-300,60) t.fd(100)#叶子 t.seth(10) t.fd(50) t.fillcolor("green") …

    2021/12/27 1:07:19 人评论 次浏览
  • 用python画玫瑰花

    import turtle as tt.setup(800,800) t.hideturtle() t.speed(11) t.penup() t.goto(50,-450) t.pensize(5) t.pencolor("black") t.seth(140) t.pendown() t.speed(10) t.circle(-300,60) t.fd(100)#叶子 t.seth(10) t.fd(50) t.fillcolor("green") …

    2021/12/27 1:07:19 人评论 次浏览
  • Python pyecharts绘制水球图

    一、水球图Liquid.add()方法简介 Liquid.add()方法签名add(name, data, shape=circle, liquid_color=None, is_liquid_animation=True, is_liquid_outline_show=True, **kwargs) name 我也不知道起什么作用,如果有人知道的话可以跟我说,谢谢啦 data 数…

    2021/12/19 14:22:15 人评论 次浏览
  • Python pyecharts绘制水球图

    一、水球图Liquid.add()方法简介 Liquid.add()方法签名add(name, data, shape=circle, liquid_color=None, is_liquid_animation=True, is_liquid_outline_show=True, **kwargs) name 我也不知道起什么作用,如果有人知道的话可以跟我说,谢谢啦 data 数…

    2021/12/19 14:22:15 人评论 次浏览
  • python day01

    import turtle turtle.width(7) turtle.penup() turtle.goto(-70,0) turtle.color(“red”) turtle.pendown() turtle.circle(40) turtle.penup() turtle.goto(-15,0) turtle.color(“yellow”) turtle.pendown() turtle.circle(40) turtle.penup() turtle.goto(30,0) tur…

    2021/12/17 20:19:50 人评论 次浏览
  • python day01

    import turtle turtle.width(7) turtle.penup() turtle.goto(-70,0) turtle.color(“red”) turtle.pendown() turtle.circle(40) turtle.penup() turtle.goto(-15,0) turtle.color(“yellow”) turtle.pendown() turtle.circle(40) turtle.penup() turtle.goto(30,0) tur…

    2021/12/17 20:19:50 人评论 次浏览
  • python画圣诞树【全网最全】

    文章目录 1.方块圣诞树2.线条圣诞树3.豪华圣诞树这篇文章主要介绍了使用Python画了一棵圣诞树的实例代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下如何用python画一个圣诞树呢? Turtle库来画圣诞树。 1.方…

    2021/12/15 17:17:44 人评论 次浏览
  • python画圣诞树【全网最全】

    文章目录 1.方块圣诞树2.线条圣诞树3.豪华圣诞树这篇文章主要介绍了使用Python画了一棵圣诞树的实例代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下如何用python画一个圣诞树呢? Turtle库来画圣诞树。 1.方…

    2021/12/15 17:17:44 人评论 次浏览
  • python通过PyGame绘制图像并保存为图片文件的代码

    把开发过程中常用的一些内容片段记录起来,下边内容是关于python通过PyGame绘制图像并保存为图片文件的内容,希望对大伙有较大好处。 pg_draw_circle_save101.pydraw a blue solid circle on a white backgroundsave the drawing to an image filetested with Python 2.7…

    2021/12/4 14:17:07 人评论 次浏览
  • python通过PyGame绘制图像并保存为图片文件的代码

    把开发过程中常用的一些内容片段记录起来,下边内容是关于python通过PyGame绘制图像并保存为图片文件的内容,希望对大伙有较大好处。 pg_draw_circle_save101.pydraw a blue solid circle on a white backgroundsave the drawing to an image filetested with Python 2.7…

    2021/12/4 14:17:07 人评论 次浏览
  • 微信小程序icon图标使用详解

    也许你迷茫,但是我想说,在你迷茫的同时,保持本心,过好今天就好。icon 在微信小程序中用来显示图标。1 icon 图标的基本使用<view class="container"><view class="icon-box"><icon class="icon-box-img" type="suc…

    2021/12/3 17:08:34 人评论 次浏览
扫一扫关注最新编程教程