代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/165898/10047304
m sumarize11_4_2ars.m
%载入图像
RGB = imread('autumn.tif');
figure(1);
imshow(RGB);
%将真彩图转换为灰度图
I = rgb2gray(RGB);
figure(2);
imshow(I);
%进行余弦变换
J = dct2(I);
figure(3);
imshow(log(abs(J)),[]);
colormap(jet(64));
c
www.eeworm.com/read/356085/10237359
m example10_3.m
%对前面得到的cameraman.tif的二值化图像进行腐蚀操作
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
SE=eye(5);
BW1=erode(J,SE);
figure,imshow(BW1)
www.eeworm.com/read/160271/10546685
m regiongrow.m
%函数regiongrow.m: 像素聚类区域成长法%
function [O_image]=regiongrow(I_image,seed,region_th,stopn)
%[O_image]=regiongrow(I_image,seed,region_th,stopn)%
%I_image : (row x col) 输入图像%
%seed : [yseed xseed] 输入
www.eeworm.com/read/160256/10548307
m example10_3.m
%对前面得到的cameraman.tif的二值化图像进行腐蚀操作
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
SE=eye(5);
BW1=erode(J,SE);
figure,imshow(BW1)
www.eeworm.com/read/159969/10583796
m dct.m
clear
%
%读入原图像,设置参数
trueImage=imread('G:\dct\lena.bmp');
alfa=.1;
LENGTH=2500;
subplot(2,2,1);
imshow(trueImage);
title('原始图象');
%
%对原图象进行DCT变换
dctF1=dct2(trueImage);
subplot(2,2,2);
imsh
www.eeworm.com/read/422469/10635243
frm form2.frm
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "comdlg32.ocx"
Begin VB.Form Form2
BorderStyle = 1 'Fixed Single
Caption = "图像添加工具"
ClientHeight
www.eeworm.com/read/350382/10746066
m 7-1.m
%例程7-1 噪声图像维纳滤波
% e.g.7-1.m for example7-1;
%test the function of weina filter.
RGB = imread('saturn.png');
I = rgb2gray(RGB);
J = imnoise(I,'gaussian',0,0.005);
figure, imshow(J);
K = wien
www.eeworm.com/read/349392/10829411
c main2.c
#include "GrTry.c"
typedef struct tagRGBBMP /* 用于读取24B实际图像数据 */
{
UINT8 r;
UINT8 g;
UINT8 b;
} RGBBMP24;
void Dot24(INT16 x, INT16 y, UINT32 *color
www.eeworm.com/read/349087/10853110
c main2.c
#include "GrTry.c"
typedef struct tagRGBBMP /* 用于读取24B实际图像数据 */
{
UINT8 r;
UINT8 g;
UINT8 b;
} RGBBMP24;
void Dot24(INT16 x, INT16 y, UINT32 *color
www.eeworm.com/read/348599/10881640
txt 课程设计.csproj.filelist.txt
bin\Debug\课程设计.exe
bin\Debug\课程设计.pdb
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\课程设计.数字图像处理课程设计.resources
obj\Debug\课程设计.Properties.Resources.resources
obj\Debug\课程设计.csproj.GenerateReso