logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

错误解决 error CS0117: ‘Buffer‘ does not contain a definition for ‘BlockCopy‘

错误解决 error CS0117: ‘Buffer‘ does not contain a definition for ‘BlockCopy‘

文章图片
#unity
opencv python 高斯模糊和锐化图片

利用opencv来预处理图片:1.高斯模糊2.图片锐化class ProcessImg(object):def __init__(self, img, sigma):self.img = imgself.sigma = sigmadef gaussian_img(self):"""image gaussian blur"""gaussian_img = cv2.GaussianBlur(self.

#opencv#python
python日常应用——pdf拆分和合并 python PyPDF2

#! /usr/bin/env python# -*- coding: utf-8 -*-from PyPDF2 import PdfFileWriter, PdfFileReader,PdfFileMergerdef pdf_split(pdf_in):"""拆分PDF成单页"""# 读取pdfwith open(pdf_in,'rb') as in_pdf:pdf_file = PdfFile

#python
ros Moveit学习记录(一) MoveIt Setup Assistant

MoveIt Setup Assistant 使用记录

文章图片
WSL2-Ubuntu22.04-配置

本文介绍了WSL2的基本使用方法及可视化,着重介绍了GPU和OpenGL的设置。

文章图片
#ubuntu
python:.txt文件读取,写入。

文件建立“# -- coding: utf-8 --” 有这句才可以编码中文#文件建立#!/usr/bin/python# -*- coding: utf-8 -*-f = open('text2.txt','w')文件写入#文件写入f.write('Love is patient,\n' 'love is kind.\n' 'It does not envy,\n' 'it does not b

#python
numpy Python np.array基础操作 (二)reshape() 和 resize()

a.reshape(new_shape)返回一个修改后的数组,但不会更改原始数组#!/usr/bin/python# -*- coding: utf-8 -*-import numpy as npa = np.array([[3.0, 9.0, 8.0, 0.0],[1.0, 4.0, 6.0, 5.0],[1.0, 9.0, 3.0, 1.0]])print(a)'''[[3. 9. 8. 0.

#python#numpy
Python: 利用os 获取文件夹中每一张图片的名字 并保存至 txt

Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt目标:将同一文件夹中的每张图的名字保存下来。操作方式:用了os库和一个for循环注意:主要是地址的,包括图片的地址和保存的地址。#!/usr/bin/python#coding:utf-8import ospath_imgs = '/home/ground_truth/'for files in os.li...

#python#linux
Python:用 pandas 将numpy数据写入excel

#!/usr/bin/env python# -*- coding: utf-8 -*-#import numpy as npimport pandas as pddef ColorsSave(colours,name):data = pd.DataFrame(colours)writer = pd.ExcelWriter("F:/find_color/texture images result.

#python#numpy
    共 13 条
  • 1
  • 2
  • 请选择