相关文章
Yolov1原理详细解读及实战(一)理论篇
什么是Yolov1? 
Yolo(You Only Look Once)是一种one-stage目标检测算法,即仅需要 “看” 一次就可以识别出图片中物体的class类别和位置。作为one-stage的开山鼻祖,YOLOv1以其简洁的网络结构和GPU上的实时检测速度而一鸣惊人,打破了R-CNN的“…            
建站知识
2025/10/21 9:37:01
uniapp 存储base64资源为http链接图片
1. 新建一个base64.js 文件 
const fsm  wx.getFileSystemManager();
// base64data  base64资源
// name  文件名
function base64src(base64data, name, cb) {const time  new Date().getTime();const filePath  ${wx.env.USER_DATA_PATH}/${name}.${time}.png;const buffer …            
建站知识
2025/10/10 0:01:04
Error: PostCSS plugin autoprefixer requires PostCSS 8 问题解决办法
报错:Error: PostCSS plugin autoprefixer requires PostCSS 8  原因:autoprefixer版本过高 
解决方案: 
降低autoprefixer版本 
执行:npm i postcss-loader autoprefixer8.0.0            
建站知识
2025/10/21 9:37:01
javaee spring 依赖注入之复杂类型的注入数组 集合 等
spring 依赖注入之复杂类型的注入 
package com.test.pojo;import java.util.List;
import java.util.Map;
import java.util.Properties;/*** description:* projectName:testSpring* see:com.test.pojo* createTime:2023/8/27 14:39*/
public class AA {private int[] arr;pr…            
建站知识
2025/10/21 9:37:01
python爬虫—requests
一、安装 
pip install requests 
二、基本使用 
1、基本使用 类型 : models.Response r.text : 获取网站源码 r.encoding :访问或定制编码方式 r.url :获取请求的 url r.content :响应的字节类型 r.status_code :响应…            
建站知识
2025/10/12 16:59:43
opencv-人脸识别
对https://blog.csdn.net/weixin_46291251/article/details/117996591这哥们代码的一些修改 
import cv2
import numpy as np
import os
import shutil
import threading
import tkinter as tk
from PIL import Image, ImageTkchoice  0# 首先读取config文件,第一行…            
建站知识
2025/10/31 19:02:29
编译工具:CMake(六) | 使用外部共享库和头文件
编译工具:CMake(六) | 使用外部共享库和头文件 步骤引入头文件搜索路径为 target 添加共享库 步骤 
在/Compilation_tool/cmake 目录建立 t4 目录 
建立src目录,编写源文件main.c,内容如下: 
#include <…            
建站知识
2025/10/21 9:37:02
 

