代码搜索:图像比对

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

代码结果 10,000
www.eeworm.com/read/135779/13900603

m example76_figure.m

%%%example_figure %%%%imread the image samples figure('name','实验图像','numbertitle','off'); img1=imread('example76_img1.bmp'); img2=imread('example76_img2.bmp'); img3=imread('example76_img3.bmp')
www.eeworm.com/read/135779/13900622

m example75_eigenvector.m

%%%example75_eigenvector %%the feature of image c1=W'*b0(:,1); c2=W'*b0(:,2); figure('name','两幅图像的特征值','numbertitle','off'); plot(x,c1,'-',x,c2,'-.');
www.eeworm.com/read/238223/13901951

m pingtu.m

% try color map computer %[url]http://matlabspace.diy.myrice.com/webfiles/kidding/sp_01.htm[/url] [p,filepath]=uigetfile('*.bmp','选择要打开的第一个图像文件') if ~any(p) ,return,end act=['x=imread(''' filepat
www.eeworm.com/read/135754/13902588

m example75_figure.m

%%%example75_figure %%%%imread the image samples figure('name','实验图像','numbertitle','off'); img1=imread('example75_img1.bmp'); img2=imread('example75_img2.bmp'); subplot(1,2,1),imshow(rgb2gray(
www.eeworm.com/read/135754/13902654

m example76_figure.m

%%%example_figure %%%%imread the image samples figure('name','实验图像','numbertitle','off'); img1=imread('example76_img1.bmp'); img2=imread('example76_img2.bmp'); img3=imread('example76_img3.bmp')
www.eeworm.com/read/135754/13902675

m example75_eigenvector.m

%%%example75_eigenvector %%the feature of image c1=W'*b0(:,1); c2=W'*b0(:,2); figure('name','两幅图像的特征值','numbertitle','off'); plot(x,c1,'-',x,c2,'-.');
www.eeworm.com/read/236964/13989264

h gif.h

#include /* 像扩展名为.gif,.ani之类的动态光栅图像内部数据块结构如下: [数据块头信息] [显示帧信息]1 [显示帧信息]2 ... [实际帧信息]1 [实际帧信息]2 ... [全局调色板]
www.eeworm.com/read/132628/14082481

m51 mcuprogram.m51

BL51 BANKED LINKER/LOCATER V4.13 04/12/2004 16:26:41 PAGE 1 BL51 BANKED LINKER/LOCATER V4.13, INVOKED BY: D:\COMP51\BL51.EXE E:\徐芝贵~2\图像编
www.eeworm.com/read/200768/15425001

m linehough.m

clc; clear; RGB = imread('test.jpg');%jaynes-thesis I=rgb2gray(RGB); % 图片用的是灰度图像, [x,y,z]=size(I); BW=edge(I,'canny'); figure; imshow(I); title('原图'); figure; imshow(BW); title('边缘检
www.eeworm.com/read/200130/15440622

m sumarize11_5_2b.m

%读入原始图像 I = imread('coins.png'); imshow(I) %sobel边界探测器 BW1 = edge(I,'sobel'); %canny边界探测器 BW2 = edge(I,'canny'); figure imshow(BW1) figure, imshow(BW2)