代码搜索:Transforms
找到约 1,181 项符合「Transforms」的源代码
代码结果 1,181
www.eeworm.com/read/163924/10139830
m vgg_line3d_ppv.m
% Q = vgg_line3d_Ppv(P) Transforms a camera matrix to use it with Pluecker vector 3d line representation.
%
% P ... double(3,4), ordinary camera matrix
% Q ... double(6,3), transformed camera matr
www.eeworm.com/read/418342/10952713
m im2jpeg.m
function y = im2jpeg(x, quality)
%IM2JPEG Compresses an image using a JPEG approximation.
% Y = IM2JPEG(X, QUALITY) compresses image X based on 8 x 8 DCT
% transforms, coefficient quantization
www.eeworm.com/read/446824/7564249
m test_2_nonlin.m
clc; clear; clf;
% non-linear transforms
warning off;
%the number of the input-output bits...
nbits_in = 15;
nbits_out = 7;
% define the range
x_min = -2^nbits_in ;
x_max = + 2^nbits_in
www.eeworm.com/read/446824/7564258
m test_1_lin.m
clc; clear; clf;
% linear transforms
%the numbar of the inputs bits...
nbits_in = 15;
nbits_out = 7;
% define the range
x_min = - 2^nbits_in ;
x_max = + 2^nbits_in -1;
in_range = x_max
www.eeworm.com/read/326135/13163247
m im2jpeg.m
function y = im2jpeg(x, quality)
%IM2JPEG Compresses an image using a JPEG approximation.
% Y = IM2JPEG(X, QUALITY) compresses image X based on 8 x 8 DCT
% transforms, coefficient quantization
www.eeworm.com/read/305201/13777008
m vgg_line3d_ppv.m
% Q = vgg_line3d_Ppv(P) Transforms a camera matrix to use it with Pluecker vector 3d line representation.
%
% P ... double(3,4), ordinary camera matrix
% Q ... double(6,3), transformed camera matr
www.eeworm.com/read/402842/11527057
m fritm_mov.m
function mov = fritm_mov(im, mname)
% Create a movie of FRITM
% im has size 257 x 257
% Parameters
p = 257;
n = log2(p - 1);
wname = 'sym2';
dwtmode('per');
% Take the transforms
[r, s, m
www.eeworm.com/read/340959/12118039
m im2jpeg.m
function y = im2jpeg(x, quality)
%IM2JPEG Compresses an image using a JPEG approximation.
% Y = IM2JPEG(X, QUALITY) compresses image X based on 8 x 8 DCT
% transforms, coefficient quantization
www.eeworm.com/read/185152/9054696
m sph2cart.m
function [x,y,z] = sph2cart(az,elev,r)
%CART2SPH Transform Cartesian to spherical coordinates.
% [TH,PHI,R] = CART2SPH(X,Y,Z) transforms corresponding elements of
% data stored in Cartesian coordi
www.eeworm.com/read/185152/9054709
m cart2sph.m
function [az,elev,r] = cart2sph(x,y,z)
%CART2SPH Transform Cartesian to spherical coordinates.
% [TH,PHI,R] = CART2SPH(X,Y,Z) transforms corresponding elements of
% data stored in Cartesian coordi