上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页
摘要: 有关null的一些操作 说起这个,就顺便说说c#处理null的另外几个语法糖吧。 ?? 如果左边是的null,那么返回右边的操作数,否则就返回左边的操作数,这个在给变量赋予默认值非常好用。 int? a = null;int b = a ?? -1;Console.WriteLine(b); // 阅读全文
posted @ 2022-05-17 18:29 zwbsoft 阅读(110) 评论(0) 推荐(0) 编辑
摘要: PPOCRLabel PPOCRLabel是一款适用于OCR领域的半自动化图形标注工具,内置PP-OCR模型对数据自动标注和重新识别。使用Python3和PyQT5编写,支持矩形框标注、表格标注、不规则文本标注、关键信息标注模式,导出格式可直接用于PaddleOCR检测和识别模型的训练。 1. 安装 阅读全文
posted @ 2022-05-17 18:21 zwbsoft 阅读(4793) 评论(0) 推荐(0) 编辑
摘要: 1. 安装依赖包 # 安装 paddleocr,推荐使用2.5+版本 pip3 install "paddleocr>=2.5" # 安装 版面分析依赖包layoutparser(如不需要版面分析功能,可跳过) pip3 install -U https://paddleocr.bj.bcebos. 阅读全文
posted @ 2022-05-17 18:20 zwbsoft 阅读(4575) 评论(0) 推荐(0) 编辑
摘要: 概述 SView for HTML5 控件提供三维模型基本的浏览、基本三维对象操作、动画播放、颜色设置等功能的实现接口,可实现基本的三维模型展示功能,以便于用户个性化定制属于自己的产品。 集成准备 集成之前需要熟悉javascript、HTML语言及常用网页代码编辑软件,以便快速准确的集成相关功能界 阅读全文
posted @ 2022-05-16 09:21 zwbsoft 阅读(320) 评论(1) 推荐(0) 编辑
摘要: 可直接用浏览器的请求方式 可直接在地址栏输入具体传参,仅限于get请求 也可在参数栏输入具体参数,,基本操作与postman相似。 阅读全文
posted @ 2022-05-14 10:51 zwbsoft 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 组件中,引入axios,get请求当前页面,在拦截器中获取config import axios from ‘axios’created(){ // 添加请求拦截器 axios.interceptors.request.use(function (config) { // 这里打印的config就可 阅读全文
posted @ 2022-05-14 10:50 zwbsoft 阅读(4026) 评论(0) 推荐(0) 编辑
摘要: 异常内容:'gb2312' is not a supported encoding name. For information on defining a custom encoding,see the documentation for the Encoding.RegisterProvider 阅读全文
posted @ 2022-05-14 10:08 zwbsoft 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、通过html的标签里面v-if对超出范围的进行隐藏 <div v-for="(item,index) in arrayList" v-if="index<3"></div> 2、sclie截取数组的长度控制循环的次数 <div v-for="(item,index) in arrayList.s 阅读全文
posted @ 2022-05-13 13:33 zwbsoft 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1.概述 1.1简介 SViewConverter Enterprise是一个独立的软件。可以不依赖其它软件进行大多数3D数据格式间的转换。 支持输入的格式如下表所示: 格式 版本 后缀 ACIS Up to 2019 1.0 .sat .asat .sab CATIA V4 2D 4.15 to 阅读全文
posted @ 2022-05-13 13:15 zwbsoft 阅读(1586) 评论(0) 推荐(0) 编辑
摘要: document.getElementById('scann').style.visibility = "visible" var obj = "<object style='display:none' id = 'scannocx' leight = '10px' classid='clsid:) 阅读全文
posted @ 2022-05-07 15:33 zwbsoft 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页