代码搜索:JPG转CAD
找到约 10,000 项符合「JPG转CAD」的源代码
代码结果 10,000
www.eeworm.com/read/475207/6794082
m irish.m
function irish()
%name=strcat(int2str(i),'face.jpg');
a=rgb2gray(imread('face2.jpg'));
a=medfilt2(a);
a=imresize(a,[160,128]);
b=a(6:100,:);
b=im2double(b);
x=gradient(b);
b=uint8(round(x*225)
www.eeworm.com/read/475207/6794089
m main.m
% main file
close all
clear all
% read Template image
im1=imread('face_eye.jpg');
%im1=imread('S.bmp');
%im1=imread('image1.jpg');
% read Traget Image
im2=imread('ey_1.jpg');
%im
www.eeworm.com/read/474264/6817132
m test.m
function test()
im1=imread('1g.jpg');
im2=imread('1g3.jpg');
subplot(2,1,1),imshow(im1);
subplot(2,1,2),imshow(im2);
figure;
[xtan,ytran,delta]=computedelta(im1,im2);
end