代码搜索:图像法

找到约 10,000 项符合「图像法」的源代码

代码结果 10,000
www.eeworm.com/read/242302/13065348

html 21371.html

障眼法 障眼法 Posted by SuBi
www.eeworm.com/read/114100/15099757

html 20565.html

Re: 何谓快速排序法(QUICK SORT)?? Re: 何谓快速排序法(QUICK SORT)??
www.eeworm.com/read/114100/15104315

html 21371.html

障眼法 障眼法 Posted by SuBi
www.eeworm.com/read/192685/8339326

html 20565.html

Re: 何谓快速排序法(QUICK SORT)?? Re: 何谓快速排序法(QUICK SORT)??
www.eeworm.com/read/192685/8348861

html 21371.html

障眼法 障眼法 Posted by SuBi
www.eeworm.com/read/420779/2062375

java adapter2.java

/*应用需要凡是以后A的对象调用了funA1方法,一定要同时调用B的funB1方法; B的对象调用了funB2方法,一定要同时调用A的funA2方法;怎么办?不能改变源代码*/ //双向适配模式:组合法 interface IA{ public abstract void funA1(); public abstract void funA2(); } class A imp
www.eeworm.com/read/291614/8407674

m feixianxing.m

clear all; Image=double(imread('e:\work\lena.jpg')); figure(1) subplot(2,2,1) imshow(Image,[]);%显示原始图像 title('原始图像'); Image=uint8(Image); figure(1) subplot(2,2,2) imhist(Image); title('原
www.eeworm.com/read/291614/8407685

m encryption.m

clear all; Image=double(imread('e:\work\lena.jpg')); figure(1) subplot(2,2,1) imshow(Image,[]);%显示原始图像 title('原始图像'); Image=uint8(Image); figure(1) subplot(2,2,2) imhist(Image); title('原
www.eeworm.com/read/191214/8432951

m example12_2.m

function edgedemo(action, varargin) % 子函数: % InitializeEDGEDEMO - 初始化图像、控件、轴 % ComputeEdgeMap - 调用edge.m计算原始图像的边缘图 % SelectMethod - 选取边缘检测算法,并使相应的控件有效或无效 % LoadNewImage - 读入选
www.eeworm.com/read/188543/8529665

m 9-11.m

RGB = imread('flowers.tif'); HSV = rgb2hsv(RGB); subplot(121) imshow(RGB) title('原RGB图像') subplot(122) imshow(HSV) title('变换后的HSV图像') %由于色图独立开来,因而没有色图间的影响