代码搜索:downsample
找到约 191 项符合「downsample」的源代码
代码结果 191
www.eeworm.com/read/490329/1202446
fxc downsample_vs20.fxc
#include "common_vs_fxc.h"
struct VS_INPUT
{
float3 vPos : POSITION;
float2 vBaseTexCoord : TEXCOORD0;
};
struct VS_OUTPUT
{
float4 projPos : POSITION;
float2 coordTap0
www.eeworm.com/read/237535/13946065
java entry.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
/**
* Java Neural Network Example
* Handwriting Recognition
* by Jeff Heaton (http://www.jeffheat
www.eeworm.com/read/468647/6986190
m idwt2.m
function w = Idwt(x,h,L);
%
% Input:
% x : data (square matrix)
% h : lowpass filter
% L : number of levels (2^L must divide the size of x)
% if omitted, max possible level is used.
% Out
www.eeworm.com/read/243950/12904797
in makefile.in
# Makefile.in generated by automake 1.10 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006 Free Software Foundation
www.eeworm.com/read/391685/8391248
m filtdn.m
function y = filtdn(x, f, dim, extmod, shift)
% FILTDN Filter and downsample (by 2) along a dimension
%
% y = filtdn(x, f, dim, extmod, shift)
%
% Input:
% x: input signal
% f:
www.eeworm.com/read/363367/9957454
m filtdn.m
function y = filtdn(x, f, dim, extmod, shift)
% FILTDN Filter and downsample (by 2) along a dimension
%
% y = filtdn(x, f, dim, extmod, shift)
%
% Input:
% x: input signal
% f:
www.eeworm.com/read/274679/10858497
m checkimagesize.m
% checkImageSize - downsamples too large images after user confirmation.
%
% img = checkImageSize(img,mode,targetSize)
% If any of the dimensions of img is larger than targetSize (one scalar
%
www.eeworm.com/read/283884/8983065
in makefile.in
# Makefile.in generated by automake 1.9.6 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005 Free Software Foundation, Inc
www.eeworm.com/read/192082/8408143
m exercise9.m
%% a)
% plot(data(1:100:end,1));
% ylim([1 255]);
%% b)
%% Down sample rate
downsample=100;
%% Downsampled max/min
maxdata=zeros(1,size(data,1)/downsample);
mindata=zeros(1,size(data,1)/do
www.eeworm.com/read/286130/8787644
m tigerqam.m
%调制qammod(a,16); 解调用qamdemod 画星座图modmap('qam',4)
clear; %设置参数
M = 16;
fd=200;
fc=4*fd;
fs=4*fc;
rolloff = 0.5;
nsamp = 4;
num=1000; %符号个数
% ******* -----产生QAM基带信号 ---