代码搜索:image processing
找到约 10,000 项符合「image processing」的源代码
代码结果 10,000
www.eeworm.com/read/159417/10651247
ico jpeg image.ico
www.eeworm.com/read/159412/10651585
java image2.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/159411/10653494
gif ubb_image.gif
www.eeworm.com/read/159405/10655734
gif bb_image.gif
www.eeworm.com/read/422113/10663111
v image_ram.v
//
// Verilog Module dwt_final_lib.image_ram.arch_name
//
// Created:
// by - VLSI4.UNKNOWN (VLSI04)
// at - 10:08:02 04/25/2008
//
// using Mentor Graphics HDL Designer(TM) 2004.1b
www.eeworm.com/read/422113/10663243
m generate_image.m
% M=even_out;
% N=odd_out;
M=csvread('D:\even_out.txt');
N=csvread('D:\odd_out.txt');
image_out=[];
for i=1:8192
image_out((i*2)-1)=(M(i));;
image_out(i*2)=(N(i));
i=i+1;
end
%d
www.eeworm.com/read/422113/10663273
txt image_even.txt
0,0,1,1,1,1,1,0
0,0,1,1,0,0,0,0
0,0,1,0,1,0,1,0
0,0,1,0,0,1,0,0
0,1,1,0,0,1,0,0
0,0,1,1,0,0,0,0
1,1,0,0,0,1,0,0
0,1,0,1,1,0,0,0
1,0,0,0,1,1,1,1
0,0,1,1,0,0,1,1
0,1,0,0,1,1,0,1
0,1,0,1,1,0,0,0
0,1,1,0,
www.eeworm.com/read/422113/10663324
asv generate_image.asv
M=csvread('D:\even_out.txt');
N=csvread('D:\odd_out.txt');
image_out=[];
for i=1:8192
%if(mod(i,2)~=0 )
image_out((i*2)-1)=(M(i));;
%else
image_out(i*2)=(N(i
www.eeworm.com/read/422113/10663342
txt image_odd.txt
0,0,1,1,0,0,0,0
0,0,1,0,1,0,1,0
0,0,1,0,0,1,0,0
0,1,1,0,0,1,0,0
0,0,1,1,0,0,0,0
1,1,0,0,0,1,0,0
0,1,0,1,1,0,0,0
1,0,0,0,1,1,1,1
0,0,1,1,0,0,1,1
0,1,0,0,1,1,0,1
0,1,0,1,1,0,0,0
0,1,1,0,0,1,0,1
0,1,0,0,
www.eeworm.com/read/422113/10663417
m separate_image.m
function new_matrix = separate_image(A);
new_matrix=[];
k=1;
for l=0:15
for m=0:15
for i=1:8
for j=1:8
new_matrix(k) = A(i+(l*8),j+(m*8));
k=k+1;
end