发布时间:2022-10-10 14:02:35
import osimport argparseimport cv2class StereoCamera(object): """采集双目标定图片,按键盘【c】或【s】保存图片""" def __init__(self, chess_width, chess_height, detect=False): """.........【阅读全文】
发布时间:2022-10-07 11:36:54
from torch import nnimport torchfrom torch.nn import functional as Fclass Conv_Block(nn.Module): #卷积 def __init__(self, in_channel, out_channel): super(Conv_Block, self).__init__() &nbs.........【阅读全文】
发布时间:2022-09-30 12:00:09
// The Vue build version to load with the `import` command// (runtime-only or standalone) has been set in webpack.base.conf with an alias.import Vue from 'vue'import App from './App'import router from './router'//import ViewUI from 'view-design';//import 'view-design/dist/s.........【阅读全文】
发布时间:2022-09-28 11:16:32
from tkinter import *from tkinter import ttkimport pywififrom pywifi import constimport timeimport tkinter.filedialog # 在Gui中打开文件浏览import tkinter.messagebox # 打开tkiner的消息提醒框class MY_GUI(): def __init__(self, init_wi.........【阅读全文】
发布时间:2022-09-23 11:55:46
#!/usr/bin/env python# coding: utf-8import requestsimport jsonimport argparse# 获取access_token用于鉴权def get_access_token(client_secret, client_id): grant_type = "client_credentials" url = "https://openapi.data-baker.c.........【阅读全文】