代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/105970/15649962
java ch7_e7_7.java
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class ch7_e7_7 extends Applet implements ActionListener
{
Label promptLbl = new Label("请输入欲显示的图像文件名:");
TextFi
www.eeworm.com/read/188543/8529564
m 16-21.m
I = imread('bonemarr.tif');
imshow(I),title('原图像')
I2 = imhmin(I,50);
% H-minima transform
figure,subplot(221)
imshow(I2),title('H-minima transform')
I2 = imhmax(I,50);
% H-maxima transform
su
www.eeworm.com/read/188543/8529610
m 16-19.m
I = imread('cameraman.tif');
se = strel('ball',5,5);
% 创建strel结构
I1 = imdilate(I,se);
% 灰度图像的膨胀
subplot(131)
imshow(I), title('Original')
subplot(132)
imshow(I1), title('Dilated')
I2 = imerod
www.eeworm.com/read/188508/8534127
ashx handler.ashx
using System;
using System.Web;
using System.IO;
//
//一般应用处理程序,主要处理从数据库读取图像字节关显示在网站上
//
public class Handler : IHttpHandler {
publi
www.eeworm.com/read/389274/8537679
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(