代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/147092/12587178
c encode.c
/* ENCODE.C - Encode message blocks. */
/* Copyright (c) 2000, 2001 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, or modify this program
* for purposes of research o
www.eeworm.com/read/147092/12587197
h encode.h
/* ENCODE.C - Encode message blocks. */
/* Copyright (c) 2000, 2001 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, or modify this program
* for purposes of research o
www.eeworm.com/read/146922/12602707
c encode.c
/*$Source: /usr/home/dhesi/zoo/RCS/encode.c,v $*/
/*$Id: encode.c,v 1.41 91/07/09 01:39:47 dhesi Exp $*/
/*
Adapted from "ar" archiver written by Haruhiko Okumura.
*/
#include "options.h"
#i
www.eeworm.com/read/300615/13903003
m encode.m
function [EncodeData] = encode( SourceData, BakG )
[m k] = size( BakG );
EncodeData(1:k) = SourceData;
for i=1:m
EncodeData(k+i) = mod( BakG(i,:)*SourceData',2 );
end
www.eeworm.com/read/300311/13920715
m encode.m
%function encode()
clear all;
figure(1);
sig=imread('lena1.bmp');
sig=double(sig)/255;
[m_sig,n_sig]=size(sig);
siz_word=8;
siz_book=512;
imshow(sig);
load codebook8_512;
num=m_sig/siz_word;
www.eeworm.com/read/134763/13974471
m encode.m
%加密函数,encoderesult为加密后的密文,str为明文,(e,n)为公钥
function encoderesult=Encode(str,e,n)
%将明文中的每个字符转化成对应的ASCII码
s=abs(str);
%l为n的位数
l=length(num2str(n));
%m为一个明文字符对应的密文编码位数,如果l为偶数,m为l的一半,否则m为l+1的一半
if(m
www.eeworm.com/read/134763/13974496
asv encode.asv
%加密函数,encoderesult为加密后的密文,str为明文,(e,n)为公钥
function encoderesult=Encode(str,e,n)
%将明文中的每个字符转化成对应的ASCII码
s=abs(str);
%l为n的位数
l=length(num2str(n));
%m为一个明文字符对应的密文编码位数,如果l为偶数,m为l的一半,否则m为l+1的一半
if(m
www.eeworm.com/read/236166/14029840
cpp encode.cpp
/* Copyright (C) 1995, Tektronix Inc. All Rights Reserved.
*
* Usage Restrictions
*
* License is granted to copy, to use, and to make and to use derivative
* works for research and evaluation p
www.eeworm.com/read/236083/14032427
jar encode.jar
www.eeworm.com/read/133469/14042393
m encode.m
function encode()
% encode an image
% sig--------image signal
% re_sig--------reform image signal--fit to VQ
% siz_word---the size of codeword
% siz_book---the size of codebook
%