自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 Matlab 矩阵的LU分解矩阵(公开代码)

【代码】Matlab 矩阵的LU分解矩阵(公开代码)

2022-12-02 13:40:52 638 1

原创 python 图像卷积 【公开代码】

python 数字图像处理 卷积

2022-08-09 22:12:12 1926

原创 Matlab图像中画框框(公开代码)

Matlab图像中画框框(公开代码)

2022-05-06 17:24:10 6908

原创 Python 冒泡排序和快速排序(公开代码)

Python 冒泡排序def bubble(n,list): #n默认为0 for i in range(0,len(list)-n-1): temporary_variable=0#设置临时变量 if list[i]>list[i+1]: temporary_variable=list[i + 1] list[i + 1]=list[i] list[i]=temporary_variab

2022-04-21 22:00:42 561

原创 Matlab实现图像高斯滤波(公开代码)

Matlab 独立动手实现高斯滤波close all;clear all;clc;I = imread('1.jpg');I = imnoise(I,'gaussian',0,0.01);[img_w,img_h,img_channel] = size(I);figure;imshow(I);for channel=1:1:img_channelimg=I(:,:,channel); core_size=5;%卷积核大小,必须是奇数sigma=1;%标准差

2022-04-21 20:56:02 7218

原创 Python 二分查找与方程求解(公开代码)

Python 二分查找

2022-04-21 19:18:50 986

原创 2020美赛B题思路分析

2020美赛B题思路分析Wherever there are recreational sandy ocean beaches in the world, thereseem to be children (and adults) creating sandcastles on the seashore.(bk1’) Using tools,toys, and imagination, beach goers create sandcastles that range from simplemounds

2021-01-25 17:56:32 1354 2

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除