代码搜索:Quantization
找到约 3,139 项符合「Quantization」的源代码
代码结果 3,139
www.eeworm.com/read/359689/10129925
c quantization.c
#include "dct.h"
extern short block[BLOCK_SIZE];
extern short quant[BLOCK_SIZE];
void quantization(void)
{
int i;
for(i=0;i> 14);
www.eeworm.com/read/424027/10506015
asv quantization.asv
function Q_IMG = quantization(IMG);
%对IMG进行8*8 JPEG量化,结果存于Q_IMG
%% 8*8 JPEG量化矩阵
JPEG_data = [16 11 10 16 24 40 51 61
12 12 14 19 26 58 60 55
14 13 16 24 40 57 69 56
14 17 22 29 51 87 80 62
1
www.eeworm.com/read/465638/7050955
m quantization.m
clc; %清除命令
clear;
disp('training the pictures');
disp(' start');
disp(' divide picture ');
t=0;
time=clock;
Q=input('请输入训练集的个数,值的大小在1-13之间:');
for i=1:Q
www.eeworm.com/read/177823/7151304
doc quantization.doc
www.eeworm.com/read/296676/8082637
m quantization.m
%DCT系数矩阵量化
function y = quantization(x)
%典型量化矩阵
Q =[16 11 10 16 24 40 51 61
12 12 14 19 26 58 60 55
14 13 16 24 40 57 69 56
14 17 22 29 51 87 80 62
18 22 37 56 68 109
www.eeworm.com/read/296676/8082652
m quantization.m
%DCT系数矩阵量化
function y = quantization(x)
%典型量化矩阵
Q =[16 11 10 16 24 40 51 61
12 12 14 19 26 58 60 55
14 13 16 24 40 57 69 56
14 17 22 29 51 87 80 62
18 22 37 56 68 109
www.eeworm.com/read/483264/6602887
asv quantization.asv
function output = quantization(input, n)
a = min(input);%最少值
b = max(input);%最大值
delta = (b -a) / pow2(n);%2的指数分成2^n份,比特率为n,分成多个子带
for i = 1: pow2(n)
m(i) = a + i * delta;
end
for i
www.eeworm.com/read/483264/6602890
m quantization.m
function output = quantization(input, n)
a = min(input);
b = max(input);
delta = (b -a) / pow2(n);
for i = 1: pow2(n)
m(i) = a + i * delta;
end
for i = 1: pow2(n)
if i == 1
www.eeworm.com/read/375404/9361358
h adaptive_quantization.h
/*!
************************************************************************
* \file adaptive_quantization.h
*
* \brief
* adaptive quantization matrix selection routines
*
* \author
* Akiy
www.eeworm.com/read/375404/9361462
c adaptive_quantization.c
/*!
************************************************************************
* \file adaptive_quantization.c
*
* \brief
* adaptive quantization matrix selection routines
*
* \author
* Akiy