上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 181 下一页
摘要: Bloop 的主要功能如下:- 基于 GPT-4 的会话搜索;- 快速的正则表达式搜索;- 同步本地和 GitHub 仓库;- 支持多种不同查询方式的过滤器;- 使用符号搜索查找函数、变量或特征- 拥有 10 多种编程流行语言的精确代码导航。GitHub:github.com/BloopAI/blo 阅读全文
posted @ 2023-03-23 14:05 myrj 阅读(320) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # coding: utf-8 # @author: sSWans # @file: main.py # @time: 2018/1/11 15:54 import os import random from _datetime import dateti 阅读全文
posted @ 2023-03-23 12:37 myrj 阅读(32) 评论(0) 推荐(0) 编辑
摘要: import cv2 import numpy as np def OnMouseAction(event,x,y,flags,param): # 鼠标触发记录点位 global coor_x, coor_y, coor if event == cv2.EVENT_LBUTTONDOWN: prin 阅读全文
posted @ 2023-03-23 10:20 myrj 阅读(68) 评论(0) 推荐(0) 编辑
摘要: import cv2 #取得指定图像或视频鼠标位置的颜色特征 from pylab import * from PIL import Image import sys import copy user_input = int(input("如果标视频,请输入1 ;如果标图片,请输入2: ")) if 阅读全文
posted @ 2023-03-23 10:07 myrj 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # coding: utf-8 # @author: sSWans # @file: main.py # @time: 2018/1/11 15:54 import os import random from _datetime import dateti 阅读全文
posted @ 2023-03-22 13:37 myrj 阅读(54) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3.6 # -*- coding: utf-8 -*- ''' @ Copyright (C) 2019 @ @ env stetup:pip3 install opencv-python @ @ 免费知识星球:[一番码客-积累交流](https://t.zsxq. 阅读全文
posted @ 2023-03-22 12:57 myrj 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> void reverse(char *str) { int len = strlen(str),i; char temp; for (i = 0; i < len / 2; i++) { temp = str[i]; st 阅读全文
posted @ 2023-03-22 09:32 myrj 阅读(32) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> // 求e=1/1!+1/2!+1/3!+....+1/n! main() { double e=1,a,s=1; int i; for(i=1;i<=20;i++) { s*=i; a=1/s; e+=a; } printf("%f",e); } 阅读全文
posted @ 2023-03-22 08:56 myrj 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //从键盘输入一个字符串,将字符串中出现的所有大写字母循环右移5位 【1】 main() { char s[30]; int i=0,n; 【1】; n=strlen(s); while(【1】) { if(【1】) s[i]=s[i]+5; if(【1】) 【 阅读全文
posted @ 2023-03-22 08:49 myrj 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 首先在python里检查,也是大家用的最多的方式,检查GPU是否可用(但实际并不一定真的在用) import torch torch.cuda.is_available() False(显示结果:不可用) True(显示结果:可用) import torch # setting device on 阅读全文
posted @ 2023-03-22 08:19 myrj 阅读(2521) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 181 下一页