代码搜索结果

找到约 10,000 项符合 1 的代码

3_1_1out.txt

a 出现 12 次 about 出现 3 次 all 出现 3 次 ancient 出现 3 次 and 出现 21 次 as 出现 3 次 at 出现 3 次 ation 出现 3 次 back

about1dlg1.h

#if !defined(AFX_ABOUT1DLG1_H__1420A3C0_2503_11D4_B198_5254AB16B260__INCLUDED_) #define AFX_ABOUT1DLG1_H__1420A3C0_2503_11D4_B198_5254AB16B260__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif

about1dlg1.cpp

// About1Dlg1.cpp : implementation file // #include "stdafx.h" #include "source10.h" #include "About1Dlg1.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] =

ch10_1_1.m

%利用函数imfilter实现图像平滑滤波 I = imread('coins.png'); h = ones(5,5) / 25; I2 = imfilter(I,h); imshow(I), title('Original Image'); figure, imshow(I2), title('Filtered Image')