Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Item { anchors.fill: parent Rectangle { id: rect anchors.fill: parent anchors ...
分类:
其他好文 时间:
2021-05-24 12:04:25
阅读次数:
0
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style> </head> <body> <p><a href ...
分类:
其他好文 时间:
2021-01-01 12:15:13
阅读次数:
0
Character classes . 除换行符外的任何字符\ w \ d \ s单词,数字,空格 \ W \ D \ S不是单词,数字,空格 [abc] a,b或c中的任何一个 [^ abc]不是a,b或c [a-g] a和g之间的字符 Anchors ^ abc $ 字符串的开始/结尾 \ b ...
分类:
其他好文 时间:
2020-11-18 12:57:52
阅读次数:
9
//二维数组的初始化1 vector<vector<float>> _box_parm(class_row_num, vector<float>(class_col_num, 0.0f)); 类型转换问题 1 std::vector<uint32_t> local_anchors_x_v; 2 (s ...
分类:
编程语言 时间:
2020-07-14 13:05:45
阅读次数:
66
Flow { anchors.fill: parent anchors.margins: 10 //Text 间隔 spacing: 30 //行距 Text { text: "Text"; font.pixelSize: 40 } Text { text: "items"; font.pixelS ...
分类:
其他好文 时间:
2020-04-09 00:10:37
阅读次数:
83
文字内容以后再补充: import numpy as np# 定义Box类,描述bounding box的坐标class Box(): def __init__(self, x, y, w, h): self.x = x self.y = y self.w = w self.h = hdef box ...
分类:
编程语言 时间:
2020-03-02 01:20:37
阅读次数:
80
HTML(Hypertext Markup Language):指定网页静态内容的语言 Hypertext:文本、多媒体、链接... Markup:可以用来标识文档结构和内容类型的特殊符号,即标签 2.2HTML重要元素 标签 Anchors 使用标签 <a> 来设置,可以链接到网络上的任意文件 h ...
分类:
Web程序 时间:
2020-01-27 12:35:09
阅读次数:
78
PriorBox算子 ssd网络一大特点是,为了提高检测准确率,在不同尺度的特征图上进行预测,这种预测就需要prior box layer。 prior box 是干嘛的呢?其实非常类似于Faster R-CNN中的Anchors,就是候选框,这种候选框的选取不需要像R-CNN那样通过复杂处理产生。 ...
分类:
其他好文 时间:
2020-01-21 16:01:37
阅读次数:
105
https://zhuanlan.zhihu.com/p/32525231 (yolo v1) https://zhuanlan.zhihu.com/p/35325884 (yolo v2, 相比较于v1,有了许多小tricks,包括BN;anchors;kmeans-prior聚类;置信度变为每个 ...
分类:
其他好文 时间:
2019-12-27 09:43:25
阅读次数:
99
Item 属性: Item 类型比较特殊,因为它是所有其他可视化类型的基类型。 Qt Quick中所有可视化类型都基于 Item。 Item 对象本身没有一个可视化的外观,但是它定义了可视化项目中所有常见的特性,比如 x 、y 、width 、height 、anchors 和键盘处理等。 Item... ...
分类:
其他好文 时间:
2019-12-20 17:02:58
阅读次数:
196