代码搜索:codebook
找到约 1,717 项符合「codebook」的源代码
代码结果 1,717
www.eeworm.com/read/119681/14824498
m codedist_hamming.m
function dist = codedist_hamming(C1,C2)
% Compute the hamming distance between rows of 'C1' and columns of 'C2'
%
% >> distance = codedist_hamming(encoded_data, codebook);
%
% 'encoded_data' contai
www.eeworm.com/read/214923/15083044
m codedist_hamming.m
function dist = codedist_hamming(C1,C2)
% Compute the hamming distance between rows of 'C1' and columns of 'C2'
%
% >> distance = codedist_hamming(encoded_data, codebook);
%
% 'encoded_data' contai
www.eeworm.com/read/172172/9722163
m codedist_hamming.m
function dist = codedist_hamming(C1,C2)
% Compute the hamming distance between rows of 'C1' and columns of 'C2'
%
% >> distance = codedist_hamming(encoded_data, codebook);
%
% 'encoded_data' contai
www.eeworm.com/read/367440/9748544
m codedist_hamming.m
function dist = codedist_hamming(C1,C2)
% Compute the hamming distance between rows of 'C1' and columns of 'C2'
%
% >> distance = codedist_hamming(encoded_data, codebook);
%
% 'encoded_data' contai
www.eeworm.com/read/135719/13907681
c phi_axit.c
/*====================================================================*/
/* MPEG-4 Audio (ISO/IEC 14496-3) Copyright Header */
/*====================================================
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/104466/15691581
c vqavideo.c
/*
* Westwood Studios VQA Video Decoder
* Copyright (C) 2003 the ffmpeg project
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser Gen
www.eeworm.com/read/100142/15882822
readme2
EXAMPLE:
Three training images: man, couple, crowd which are 512X512 and 8bpp.
One test image: lena which is also 512X512 and 8bpp. We want to
design a tree-structured VQ of dimension 4 made from 2X2
www.eeworm.com/read/287843/8665222
m vq.m
function [codebook,distortion]=VQ(training_seq,dimension,codebook_size,tolerance)
%VQ.m vector quantizer design using K-means algorithm
% [codebook,distortion]=VQ(training_seq,dimension,codebook_si
www.eeworm.com/read/431613/8665575
m vq.m
function [codebook,distortion]=VQ(training_seq,dimension,codebook_size,tolerance)
%VQ.m Vector quatizer design using K-means algorithm
% [codebook,distortion]=VQ(training_seq,dimension,codebook_siz