灰度图显示为伪彩色图 法一 import matplotlib.pyplot as plt img = plt.imread('C:/Users/leex/Desktop/lena.jpg') img_s = img[:,:,0]# 直接读入的img为3通道,这里用直接赋值的方法转为单通道 sc = ...
分类:
其他好文 时间:
2019-12-08 12:54:30
阅读次数:
141
题目链接:https://www.luogu.org/problem/P5410 题意:有两个字符串a,b,要求输出b与a的每一个后缀的最长公共前缀。输出: 第一行有lenb个数,为b的next数组(特别地,next1为lenb) 第二行有lena个数,即答案。 思路:扩展kmp模板,涉及字典树,后 ...
分类:
编程语言 时间:
2019-11-03 13:07:34
阅读次数:
92
一、函数初始1.函数介绍我们目前为止,已经可以完成一些软件的基本功能了,现在我们自己来实现一个len,但是不能使用lena="sadsfsfg"count=0foriina:count+=1print(count)我们现在实现了一个求长度,我还想让你们求一下列表和元组的长度是不是就要将我们写的内容再次拿过来我们在求一个字典的长度,也需要将我们写好的内容拿过来使用好像程序中好多都是一样的,所以可以将
分类:
编程语言 时间:
2019-09-06 09:15:22
阅读次数:
100
? 一阶矩,定义了每个颜色分量的平均强度 ? 二阶矩,反映待测区域颜色方差,即不均匀性 ? 三阶矩,定义了颜色分量的偏斜度,即颜色的不对称性 close all;clear all;clc; J = imread('lena.jpg'); K = imadjust(J,[70/255 160/255 ...
分类:
其他好文 时间:
2019-08-28 13:22:15
阅读次数:
381
char a[maxn],b[maxn]; char c[maxn]; cin>>a; cin>>b; int k=0,tmp=0; int lena=strlen(a)-1,lenb=strlen(b)-1; while(lena>=0||lenb>=0) { int res=0; if(lena... ...
分类:
其他好文 时间:
2019-08-28 11:10:29
阅读次数:
82
题目描述 Girl Lena likes it when everything is in order, and looks for order everywhere. Once she was getting ready for the University and noticed that th ...
分类:
其他好文 时间:
2019-08-10 17:50:44
阅读次数:
82
from PIL import Image image = Image.open("lena.jpg") buffer=[] for pixel in image.getdata(): buffer.append(( pixel[0], pixel[1], pixel[2], pixel[3] 15 ...
分类:
其他好文 时间:
2019-04-24 13:28:07
阅读次数:
130
// 加法 #define MAX_N 1000 string a, b; int A[MAX_N], B[MAX_N], C[MAX_N+1]; // A + B = C void solve(){ int lena = a.size(), lenb = b.size(); int j = 0; ... ...
分类:
其他好文 时间:
2019-04-02 22:42:05
阅读次数:
235
#include "opencv2/opencv.hpp" using namespace cv; int main(void) { char *fn = "D:\\opencv\\sources\\samples\\data\\lena.jpg"; Mat image = imread(fn); ...
分类:
其他好文 时间:
2019-04-01 17:10:48
阅读次数:
141
题目链接: "戳我" 30分暴力。。。。暴力提取子序列即可qwqwq cpp include include include include include include define MAXN 5010 using namespace std; int lena,lenb,n,ans,cnt; ...
分类:
其他好文 时间:
2019-03-02 11:03:53
阅读次数:
177