Location:
Search - FFT in java
Search list
Description: 用Java实现的图像教学程序,涵盖大部分基本图像处理技术:(1)图像几何变换(图像翻转、旋转、缩放);(2)色彩变换(灰度直方图,RGB->YSH变换,对比度调整,色彩增强,灰度均衡);(3)卷积(锐化、柔化、边缘提取、中值滤波);(4)频率变换(快速傅立叶fft,小波分解重构)-A teaching program which implements in Java. It includes most essential image processing technology.
1. Geometry Transform(Flip, Rotate, Scale)
2. Color Transform(Histogram, RGB-YSH Translate, Contrast, Level, Equalize in gray)
3. Convolve (Sharpness, Smooth , Edge enhancement, Mean)
4.Frequence Transform (FFT, wavelet reconstruct)
Platform: |
Size: 54182 |
Author: 徐林 |
Hits:
Description: 自己编写的,1024点快速傅里叶变换、倒频谱分析、功率谱分析及其Applet曲线显示程序源代码。 说明清楚,附有验证使用的数据文件-themselves prepared in 1024 point fast Fourier transform, cepstrum analysis, power spectrum analysis and Applet curve shows the source code. Make it clear with the use of the test data files
Platform: |
Size: 6144 |
Author: 冯瑶 |
Hits:
Description: 用Java实现的图像教学程序,涵盖大部分基本图像处理技术:(1)图像几何变换(图像翻转、旋转、缩放);(2)色彩变换(灰度直方图,RGB->YSH变换,对比度调整,色彩增强,灰度均衡);(3)卷积(锐化、柔化、边缘提取、中值滤波);(4)频率变换(快速傅立叶fft,小波分解重构)-A teaching program which implements in Java. It includes most essential image processing technology.
1. Geometry Transform(Flip, Rotate, Scale)
2. Color Transform(Histogram, RGB-YSH Translate, Contrast, Level, Equalize in gray)
3. Convolve (Sharpness, Smooth , Edge enhancement, Mean)
4.Frequence Transform (FFT, wavelet reconstruct)
Platform: |
Size: 54272 |
Author: 徐林 |
Hits:
Description: 一个基于Java编写的FFT程序,期末考试交的,比较好用!-a Java-based FFT prepared by the procedures, the end of exams, more user friendly!
Platform: |
Size: 2048 |
Author: xxjj |
Hits:
Description: 很好的播放软件可以用FFT算法计算波形 有点像media9 不过完整程序有两个部分-good player software can be used FFT algorithm is a bit like a waveform integrity procedures media9 But there are two parts
Platform: |
Size: 4096 |
Author: raul |
Hits:
Description: java程序包,用于矩阵运算,特征值分解,FFT-java package for the matrix, eigenvalue decomposition, FFT, etc.
Platform: |
Size: 26624 |
Author: 张天 |
Hits:
Description: 语音识别中的MFCC参数提取的java源码和FFT的java源码-Speech Recognition MFCC parameter extraction of the java source and FFT of the java source code
Platform: |
Size: 9216 |
Author: LT |
Hits:
Description: java设计模式中的工厂设计模式的一个案例FFT!-java design patterns in the plant design model of a case FFT!
Platform: |
Size: 88064 |
Author: xhz |
Hits:
Description: 基于FFT的网页正文提取算法。
涉及到快速傅立叶变换-base FFT web page text pick up
Platform: |
Size: 190464 |
Author: zm |
Hits:
Description: 快速傅立叶变换,及快速傅立叶反变换。输入第一行为向量维数,第二三行为两个向量-Fast Fourier Transform, and Fast Fourier Transform. Input vector dimension of the first acts, acts of two vector
Platform: |
Size: 3072 |
Author: 黄半仙 |
Hits:
Description: OFDM程序,这么安排矩阵的目的是为了构造共轭对称矩阵
共轭对称矩阵的特点是 在ifft/fft的矢量上 N点的矢量
在0,N/2点必须是实数 一般选为0
1至N/2点 与 (N/2)+1至N-1点关于N/2共轭对称- BPSK simulation using a carrier cosine wave with ISI
clc
close all
clear all
figure(1)
n=160
for i=1:n
data(i)= 2*round(rand)-1
end
create modulated BPSK signal
first expand the bit stream
exdata=[]
for i=1:length(data)
for rep=1:5
exdata= [exdata data(i)]
end
end
ts=.1
t=1:ts:80.9
carrier=cos(pi*t)
multiply expanded bitstream by cosine wave with carrier frequency
this is the BPSK that is to be transmitted over the channel
bpsk=carrier.*exdata
bpsk=[bpsk(length(bpsk)-1) bpsk(length(bpsk)) bpsk]
plot(bpsk)
generating the noise
p=rand(1,800)*2*pi
p=rand*2*pi
snr=10
r=sqrt(-1*(1/snr*log(1- rand)))
no = 5*(r.* exp(j*p))
no = (r.* exp(j*p))
value of alpha
al=rand+j*rand
al=1
Spreading channel with the alpha as the variable
for k=5:5:795
for l = 1:5
al=round(rand)+j*round(rand)
rec(k+l)=bpsk(k+l)+al*bpsk(k-5+l)
end
end
rxdata=rec+ no
begin demodulation
first multiply recie
Platform: |
Size: 6146048 |
Author: 卞敏捷 |
Hits:
Description: 一个用JAVA实现的快速傅里叶变换算法小程序-Use JAVA to achieve a fast Fourier transform algorithm applet
Platform: |
Size: 5120 |
Author: alone |
Hits:
Description: java处理数字图像,包括镜像、中值滤波、线形灰度变化、图像平滑、图像模糊、图像还原、锐化、量化、二值化图像、边缘检测等-java digital image processing, including image, median filtering, linear gray-scale changes, image smoothing, image blurring, image reduction, sharpening, to quantify the binary image, edge detection, etc.
Platform: |
Size: 1065984 |
Author: 鸟人 |
Hits:
Description: 使用JAVA模拟FFT算法 快速傅里叶算法-JAVA simulation using the FFT algorithm
Platform: |
Size: 8192 |
Author: Raistlin |
Hits:
Description: java 编写的FFT
实现FFT快速算法-a FFT by java
Platform: |
Size: 1024 |
Author: 289326660qq |
Hits:
Description: algoritmo per il calcolo della fft in java
Platform: |
Size: 2048 |
Author: nick |
Hits:
Description: 用java语言编写快速傅立叶变换(fft)程序,,这个程序的算法是《算法引论—一种创造性方法》中的算法-Using java language fast Fourier transform (fft) program, the program algorithm is the " Introduction to Algorithms- A creative approach" in the algorithm
Platform: |
Size: 8192 |
Author: dele |
Hits:
Description: 进行傅里叶变换的java代码,其中有三个java文件,Signal中Signal类存放了信号,FFT1D进行一维傅里叶变换,ToolboxFourier进行了三维傅里叶变换。图像处理的可以看下。-Fourier transform of the java code, which has three java files, Signal Signal class stored in the signal, FFT1D for one-dimensional Fourier transform, ToolboxFourier for three-dimensional Fourier transform. Image processing can look.
Platform: |
Size: 10240 |
Author: dcj |
Hits:
Description: FFT in java and android
Platform: |
Size: 78848 |
Author: fwq |
Hits:
Description: 一个基于Java编写的FFT程序,期末考试交的,比较好用!,很好-A written in Java based FFT program, in the final examination, work well!
Platform: |
Size: 2048 |
Author: Mvxncsq |
Hits: