Main > Free Download Search >

Free fft software for windows

fft

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 46
FFT 1.3.3294

FFT 1.3.3294


FFT is familiar with many users all over the world as a good-quality utility which can list the most recently modified files in a selected folder (C:WINDOWS by default). more>>

FFT 1.3.3294 is familiar with many users all over the world as a good-quality utility which can list the most recently modified files in a selected folder (C:WINDOWS by default). For example, after a Windows startup, this program is useful to list the modified files in a system folder.

Select a folder and a time (1 hour by default) and run search with "Find button".The list of the found files is sorted by folder name and by time.A double-click in the listing selects the current line and opens the folder containing the name of the file.

Requirements:

  • Microsoft .NET Framework version 2.0 or higher.
<<less
Download (13.3KB)
Added: 2009-01-19 License: Freeware Price:
downloads
 
Other version of FFT
FFT 1.3.3197Patrice Zwenger - lists recently modified files in folder. FFT. Lists the most recently modified files in a selected folder (C:\WINDOWS by default). For example, after
License:Freeware
Download (8k)
427 downloads
Added: 2008-10-31
FFT 1.0.2670Patrice Zwenger - FFT will help you list the most recently modified files in a selected directory. FFT. FFT will help you list the most recently modified files in a selected
License:Freeware
Download (8.47KB)
951 downloads
Added: 2007-04-28
fft3dGPU 0.7

fft3dGPU 0.7


FFT3dGPU is a GPU version of Fizicks FFT3DFilter more>>
FFT3dGPU is a GPU version of Fizicks FFT3DFilter. The algorithm (Fast Fourier Transform, denoising) is the same for the most part. Currently the following is not implemented: support for interlaced video or YUY2 colorspace or noise pattern.
In this version the next frame is processed while waiting for the GPU to end its work. Meaning the filters before fft3dGPU are working concurrently with it.
Installation
To use this filter you need directx 9.0c or better and a graphics card supporting directx 9 in hardware. That is at least an ATI Radeon 95xx or Nvidia Geforce fx 5xxx. Geforce 6xxx or better is recommended. If you have downloaded the installer just run it at youre done, else copy fft3dgpu.hlsl and copy FFT3dGPU.dll into the same directory, also copy d3dx9_30.dll to the c:\windows\system32 directory.
Older versions also had fft3dgpu9b.dll (not available at the moment) for Directx 9.0b support (DONT copy both dll into the autoload directory.) Directx 9.0c might be faster for people using Nvidia Geforce 6xxx because it adds support for pixelshader 3.0. If you dont have the latest version of directx installed (april 2006 or later) you can get it here or extract the file d3dx9_30.dll to the c:\windows\system32 directory. The installer will copy d3dx9_30.dll to the right location meaning that it shouldnt be neccesary to run the directx installer if you have Directx 9c installed.
Syntax
FFT3DGPU(clip, float "sigma", float "beta", int "bw", int "bh", int "bt", float "sharpen", int "plane", int "mode", int "bordersize", int "precision", bool "NVPerf", float "degrid", float "scutoff", float "svr", float "smin", float "smax", float "kratio", int "ow", int "oh", int "wintype" , int "interlaced", float "sigma2", float "sigma3", float "sigma4", bool "oldfft" )
Function parameters:
clip: the clip to filter. The clip must be YV12.
sigma and beta has the same meaning as in fft3dfilter. Default=2.
sigma2, sigma3, sigma4 If specified controls the sigma value for highest(sigma) to lowest frequency(sigma4). Default=sigma
bw,bh: blockwide and block height. It should be a power of 2 ie valid values is 4,8,16,32,64,128,256,512 (note that bw should be greater than 4 for best result). Default=32
bt: mode. bt=-1 sharpen only, bt=0 kalman filtering, bt=1 is 2d filtering, bt=2 uses the current and previous frame, bt=3 uses the previous current and next frame, bt=4 uses the two previous frames, the current and next frame. default 1
sharpen: positive values sharpens the image, negative values blurs the image. 0 disables sharpening. Default 0.
plane: 0 filters luma, 1,2 and 3 filters Chroma (both U and V). 4 filters both luma and chroma. Default 0.
mode: 0 only overlaps 1:1. This is faster but produces artifacts with high sigma values.
mode=1 block overlaps 2:1. This is slower but produces fewer artifacts.
mode=2 again 1:1 overlap but with a additional border. This reduces border artifacts seen with mode=0. The speed is between mode 0 and 1.
Kalman(bt=0) works well with mode=0. Default 1
bordersize: only used with mode 2. Defines the size of the border. Default is 1.
precision: 0: to use 16 bit floats(half precision),
1: to use 32 bit float(single precision) for the fft and 16 bit float for the wienner/kalman and sharpening.
2: allways use 32 bit floats.
Using 16 bit float increases the performance but reduces precision. With a Geforce 7800GT precision=0 is ~1.5 times faster than than mode 2. Default=0.
NVPerf: Enables support for NVPerfHUD (http://developer.nvidia.com/object/nvperfhud_home.html). Default false.
degrid: Enables degriding. Only works well with mode=1. Doesnt degrid the Kalman filter (but it does degrid the sharpening (if enabled) after kalman filter). default 1.0 for mode=1, 0.0 for mode=0 or 2
scutoff, svr, smin, smax:Same meaning as fft3dfilter. Controls the sharpening. default scutoff=0.3, svr=1.0, smin=4.0, smax=20.0
kratio: same as fft3dfilter. Control the threshold for reseting the Kalman filter. Default 2.0
ow,oh: this only works with mode=1. This specifies how big the overlap between the blocks are. Overlap size must be less than or equal to half the blocksize. Ow must be even. Default: ow=bw/2 ,oh=bh/2
wintype: Change the analysis and syntesis window function. Same as fft3dfilter
interlaced: Set to true for separate filtering for each field. Default=false.
oldfft: Set to true to use the old fftcode (used in version 0.6.2 and lower) false to use new fft code. If not defined fft3dgpu will use the fastest code.
FAQ:
Q: What does it mean when I get a popup box Unexpected error encountered with Error Code: D3DERR_OUTOFVIDEOMEMORY.
A: It means that fft3dgpu needs more memory than there are availebol on the graphics card. So either you will have to upgrade or try lowering the resolution,bt,bh,bw,ow,oh or use usefloat16=true or mode 0 or 2
Q: What setting gives the same result as fft3dfilter?
A:fft3dGPU(mode=1,precision=2) is similair to fft3dfilter() but please note the different default values for bw,ow,bh,ow
Q: Is there any differences between fft3dfilter and fft3dgpu?
A: Some of the features from fft3dfilter is still missing.
Q: Why is fft3dGPU so slow compaired to fft3dfilter?
A: either you have a slow graphics card like a Geforce FX 5200 or you are not using it while doing cpu heavy encoding (like XviD/DivX)
Q: How do I use NVPerfHUD?
A: set NVperf=true and used this commandline or make a shortcut to run it: "PATH TO NVPerfHUD\NVPerfHUD.exe" "PATH TO VIRTUALDUBMOD\virtualdubmod.exe" "PATH TO AVS\test.avs" and enabled "force NON PURE device"
Q: I get this errormessage: "Only pixelshader 2.0 or greater supported"
A: It is because you need a graphics card that has hardware support for Directx 9.
<<less
Download (1.1MB)
Added: 2006-06-27 License: GPL Price:
1228 downloads
2D FFT/iFFT plugin 1.0

2D FFT/iFFT plugin 1.0


2D FFT / iFFT Plugin can analyzes fingerprints, paper sieve patterns etc. more>> 2D FFT/iFFT (Fast Fourier Transform) plugin is compatible with Adobe Photoshop / Paint Shop Pro / Corel Paint Shop Pro.
It uses one of the fastest implementations of the Discrete Fourier Transform and has many applications including periodic noise removal and pattern detection.
<<less
Download (499KB)
Added: 2008-09-04 License: Freeware Price: Free
466 downloads
FFT Based Screen Saver

FFT Based Screen Saver


Analyze the sounds around you for frequency content. This screen saver listens through your microphone and displays the frequencies it hears. more>>
that is attached to the PCs sound card
and displays the audio both in the time domain and in the frequenct domain.
This screen saver works correctly with Windows to support password protection while in screen saver mode.
<<less
Download (64K)
Added: 2001-05-30 License: Freeware Price: $0.00
3076 downloads
2D FFT / iFFT Plugin 1.0

2D FFT / iFFT Plugin 1.0


This can be very useful in analyzing fingerprints, paper sieve patterns etc more>> This can be very useful in analyzing fingerprints, paper sieve patterns etc

The 2D FFT / iFFT or Fast Fourier Transform was designed to be a user-friendly plug-in for Adobe PhotoShop.
It uses one of the fastest implementations of the Discrete Fourier Transform and has many applications including periodic noise removal and pattern detection. This can be very useful in analyzing fingerprints, paper sieve patterns etc.
System requirements:
- .NET Framework 2.0
- Adobe PhotoShop

<<less
Download (499KB)
Added: 2008-10-02 License: Freeware Price: FREE
421 downloads
foo dsp centercut 1.0.1

foo dsp centercut 1.0.1


The classic vocal cut filter, except that the output is stereo instead of mono. more>> The classic "vocal cut" filter, except that the output is stereo instead of mono.

foo dsp centercut is a lightweight and useful add-on for foobar2000 designed to engance the media player with the "vocal cut" filter, only that the output is not mono, but stereo. This is accomplished through FFT phase analysis.
This version includes recently discovered algorithm improvements to reduce echo and eliminate clicking.
System requirements:
- foobar2000

<<less
Download (79KB)
Added: 2008-10-01 License: Freeware Price: FREE
390 downloads
InTune 3.1

InTune 3.1


InTune is designed for sound analysis and editing in terms of pitch, noise etc,. more>> InTune is designed for sound analysis and editing in terms of pitch, dynamics, timing and noise. The main purpose of the program is correction of freshly recorded musical material, particularly vocal, woodwind or brass instrument recordings, which are highly susceptible to impurity in tune. Apart from that, InTune can be used to remove noise, edit dynamics and timing or analyse the frequency spectrum of any sound file.
What can InTune do for you?
InTune saves hours spend on recording just to improve minor imperfections. Get your recorded sound file and let InTune do the rest. It will precisely analyse musical pitch and amplitude of the record. You just make a judgement on how to change the sound. InTune will satisfy your wishes in no time. You dont need to type any numbers to change the pitch or amplitude, just drag it with the mouse. Dont worry if you are out of the rhythm, use the time link feature of the program to say when the note should begin or end. InTune will make a time shift without changing the pitch of the sound. InTune also removes unwanted noise from the record using the FFT method. The composer can be creative with InTune. The possibilities of experimenting are endless. Feel free to use it in your recordings.
Two versions of the InTune are available: for Windows and for Macintosh OS.
<<less
Download (170KB)
Added: 2008-01-22 License: Freeware Price: Free
642 downloads
Free Image Editor 2.1.5

Free Image Editor 2.1.5


Bitmap image-editing application that lets you retouch existing photos or create original graphics more>>
Bitmap image-editing application that lets you retouch existing photos or create original graphics Free Image Editor is a bitmap image-editing application that lets you retouch existing photos or create original graphics.
Free Image Editor is a nice and useful program and gives you the tools and supplies of a professional graphic design studio.
There is TWAIN and support for importing from any scanner. Free Image Editor provides a rich graphics toolset for digital photography, print production and Web design.
Main features:
Input/output:
- JPEG (RGB, GrayScale, YCbCr, CMYK, YCbCrK) loading and saving.
- JPEG2000: JP2, J2K and JPC code stream formats (JPEG-2000 Part-1 standard, ISO/IEC 15444-1) loading and saving.
- TIFF (rev.6.0, Packbits, CCITT G.3 and G.4) with RGB, CMYK, B/W, CIELab color spaces loading and saving. Also FAX (CCITT3) format supported for loading.
- PNG with various compression levels loading and saving.
- Compressed and uncompressed BMP in 2,16,256 or 16M colors loading and saving.
- Compressed and uncompressed PCX in 2,16,256 or 16M colors loading and saving.
- DIB, RLE, TGA (TARGA, VDA, ICB, VST, PIX) loading and saving.
- Portable Bitmap PBM, PGM and PPM loading and saving.
- WBMP (Wireless Bitmap) uncompressed and black/white loading and saving.
- GIF in 2,4,8,16,32,64,128 or 256 colors loading and saving.
- WMF, EMF (input as raster), ICO and CUR loading.
- RAW Camera formats (CRW, CR2, NEF, RAW, PEF, RAF, X3F, BAY, ORF, SRF, MRW, DCR) loading.
- MultiPage TIF, GIF and AVI loading and saving.
- PhotoShop PSD format loading and saving.
- Saving/loading of specific file format parameters and saving/loading of preview dialogs (e.g. you can set quality of a Jpeg and view immediately the quality loss).
- Progress monitoring with saving and loading.
Input (extra):
- Image properties getting without loading it.
- Image acquisition from TWAIN scanner with full control of the scanner capabilities.
- Screen capture by various methods (all desktop, rectangle selection, object and active window).
- Video capture from various video sources.
Image processing and analysis:
- Decreasing and increasing of raster lines thickness.
- Image and paper resizing.
- Image rotation any angle by various methods.
- Image deskew by various methods.
- Horizontal and vertical flip.
- Image invert conversion.
- Selected region cropping.
- Conversion to gray scale and negative.
- Color to other color replacing .
- Median cut and Neural network color quantizers, for fast and accurate color reduction.
- Reduction to any number of colors (with colormap output).
- HSV and RGB channels separations.
- Color equalization.
- Regulation of contrast, HSL, HSV/ HSB and RGB components.
- LineArt filters: despeckle and so on.
- Application of 3x3 filters.
- Fast Fourier Transformation (FFT) with preview.
- Maximum (dilation), Minimum (erosion), Opening and Closing filters with preview.
- Picture filters (soften, sharpen, color emboss, gaussian blur, antialias, remove red eyes and auto equalize).
- Contour filters (find edges and trace).
- Bump mapping, lens, wave, morph and other effects.
- Preview of all the effects in a single dialog, with 8 preset filters and save/load filters from file.
- Progress monitoring for image processing tasks.
- Multilevel Undo/Redo for raster editing.
- Raster layers.
Raster paint operations:
- Various paint tools (sketch, line, ellipse, curve, rectangle, round rectangle, flood fill, spray, eraser and eyedropper).
- Various pen styles (solid, clear, dash, dot, dashdot and dashdotdot).
- Various brush styles (solid, clear, cross, diagonal cross, b-diagonal, f-diagonal, vertical and horizontal).
- Choice of pen and brush colors.
Image rendering:
- Real time Zoom-in and Zoom-out (by percentage, zoom in rectangular area or by one mouse click). Zoom-previous is also available.
- Real time Pan (click and drag the image with mouse).
- Scrollbar in two dimensions for the fast exploration of the image.
Printing:
- Printing (and print preview) functions to print single images specifing page alignment or absolute position.
System requirements:
- PentiumII
- 64 MB RAM
<<less
Download (1.39MB)
Added: 2007-10-26 License: Freeware Price:
2672 downloads
Fourier transform library 1.3

Fourier transform library 1.3


Fourier transform library - calculate the fast fourier transform (FFT) and the inverse FFT (IFFT) more>> <<less
Download (96KB)
Added: 2007-02-05 License: Freeware Price:
768 downloads
Similarity 0.8.1

Similarity 0.8.1


This program can compare and find similar (duplicates) of musical files (MP3, WMA, OGG, WAV, FLAC, APE, WV). The analysis is made on contents of a file and values of ID3, ASF, APE tags and names of files. more>>

Similarity 0.8.1 offers an effective tool which helps you to compare and find similar (duplicates) of musical files (MP3, WMA, OGG, WAV, FLAC, APE, WV). The analysis is made on contents of a file, it is necessary to note that similarity of a sound part is checked, using various algorithms FFT, Wavelet, math statistics, i.e. any bit-by-bit comparison is not made, therefore it is necessary for program to decode a musical file. Also the program can compare values of ID3, ASF, APE tags and names of files.

Major Features:

  1. Count up a certain estimation of a file
  2. Does not demand constant presence of the carrier with a file
  3. Specify files on time carriers of CD-ROM, DVD-ROM, flash, all of them will equally participate in comparison correctly.

Enhancements:

  • Added ogg support
  • Acm decoder info corrected
  • Window position stored
  • Issue with utf-8 tags in flac fixed

Requirements:

  • Windows 2000(*)/XP/2003/Vista
  • Pentium III processor at 500 MHz or higher with 128 MB RAM
  • Remarks to Windows 2000: for correct work it is desirable to install Windows Media Player 9.0 (differently the program cannot decode WMA, ASF), and also decoder Fraunhofer MPEG Layer-3 Codec (for decoding MP3). To owners of newer versions of OS, all is already installed.

WareSeeker Editor

<<less
Download (0.78MB)
Added: 2009-05-08 License: Freeware Price: $0.00
115 downloads
 
Other version of Similarity
Similarity 0.8is necessary to note that similarity of a sound part is checked, using various algorithms FFT, Wavelet, math statistics, i.e. any bit-by-bit comparison is not made, therefore it is necessary
Price: $0.00
License:Freeware
Download (0.68MB)
111 downloads
Added: 2009-05-04
License:Freeware
Download (637.9Kb)
104 downloads
Added: 2009-03-16
Similarity 0.71is necessary to note that similarity of a sound part is checked, using various algorithms FFT, Wavelet, math statistics, i.e. this is not bit-by-bit comparison, and for that it is necessary for
License:Freeware
Download (0.62MB)
305 downloads
Added: 2009-02-05
Price: $na
License:Freeware
Download (635KB)
505 downloads
Added: 2008-09-12
License:Freeware
Download (199KB)
501 downloads
Added: 2008-01-28
License:Freeware
Download (140K)
846 downloads
Added: 2007-10-01
Wave Tools 1.0

Wave Tools 1.0


A simple to use audio wave spectrum analyzer. more>>

Wave Tools 1.0 provides you a powerful audio wave spectrum analyzer which is useful for your computer. Wave Tools has it all, oscilloscope, realtime spectrum analyzer, Impedance meter, RLC bridge and signal generator for Windows.

Wave Tools is a Windows application that converts your PC into a powerful dual-trace signal analyzer (oscilloscope, FFT etc...) . Uses your PC sound card as an Analog-to-Digital a Converter to digitize any input waveform and as Digital-to-analog Converter for the signal generator. True 24 bit adc/dac 48K/96k/192k sampes/sec.

<<less
Download (4.4MB)
Added: 2008-10-09 License: Freeware Price: FREE
13 downloads
MetaBench 0.98

MetaBench 0.98


45 tests designed to benchmark high-end systems more>>
MetaBench is a benchmarking program being developed by 7Byte. It is consisted of more than 45 different tests designed to benchmark high-end systems.
Benchmarks are carefully designed in consideration with new CPUs and system architectures. It consists of two types of benchmarks: Synthetic and practical.
Its synthetic test measures different components performance purely. Practical tests are consisted of different algorithms being used in different software. They are designed to measure erformance of the whole system as unit.
They include Ogg Vorbis audio encoding/decoding(very similar to MP3), Fast Fourier Transforms (FFT) tests and PPMD compression method.
Enhancements:
- Raytrace rendering benchmark is added(Multi-threaded)
- Blowfish encryption/decryption benchmark is added
- Multithreaded version of QuickSort is added
- Bug fixed: crashes on some multi-threaded tests
- Small bugs fixed
<<less
Download (1.68MB)
Added: 2004-01-29 License: Freeware Price:
2106 downloads
Multisine 1.74

Multisine 1.74


Multisine is an audio signal generator more>> The program Multisine is an audio signal generator. All signals are calculated offline. After the calculation it is possible to store the data in a .wav file or playback data with your soundcard.
The application is written in C++ and uses the VCL library and Win Api calls.
Feature list of actual revision Multisine V1.74:
Samplingrate 1 Hz ... 48 kHz
Mono and Stereo Signals supported
File length up to 180s
8 / 16 bit audioformat
Play and Loop Play via soundcard
(Multi) Sinusgenerator
Square generator
Triangle generator
Sawtooth generator
AM generator
FM generator
Sweep generator
Pseudo noise generator
Noise generator (pink, white)
Band noise generator
Offline frequency analysator (FFT, 4 different window types)
Signal statistics
Comfortable graphical display for time and frequency domain
<<less
Download (651KB)
Added: 2008-09-01 License: Freeware Price: Free
472 downloads
 
Other version of Multisine
Multisine 1.73, white) - Band noise generator - Offline frequency analysator (FFT, 4 different window types) - Signal statistics - Comfortable graphical display for time and frequency domain. Enhancements
Price: FREE
License:Freeware
Download (643KB)
476 downloads
Added: 2008-10-01
Equalizer 99 2.0 beta

Equalizer 99 2.0 beta


Near real-time equalizer based on FFT alogorithm. Can be used to equalize the sound from CDs. Source-code available on request. more>>
Near real-time equalizer based on FFT alogorithm. Can be used to equalize the sound from CDs. Source-code available on request.
<<less
Download (85K)
Added: 1999-08-26 License: Freeware Price:
2191 downloads
Sphinx-4 1.0 Beta

Sphinx-4 1.0 Beta


A speech recognizer written entirely in the Java programming language more>>
A speech recognizer written entirely in the Java programming language Sphinx-4 is a state-of-the-art speech recognition system written entirely in the Java programming language.
Sphinx-4 was created via a joint collaboration between the Sphinx group at Carnegie Mellon University, Mitsubishi Electric Research Labs (MERL), Sun Microsystems Laboratories, and Hewlett Packard (HP), with contributions from the University of California at Santa Cruz (UCSC) and the Massachusetts Institute of Technology (MIT).
Sphinx-4 started out as a port of Sphinx-3 to the Java programming language, but evolved into a recognizer designed to be much more flexible than Sphinx-3, thus becoming an excellent platform for speech research.
Sphinx-4 is a very flexible system capable of performing many different types of recognition tasks. As such, it is difficult to characterize the performance and accuracy of Sphinx-4 with just a few simple numbers such as speed and accuracy.
Instead, we regularly run regression tests on Sphinx-4 to determine how it performs under a variety of tasks. These tasks and their latest results are as follows (each task is progressively more difficult than the previous task):
- Isolated Digits (TI46): Runs Sphinx-4 with pre-recorded test data to gather performance metrics for recognizing just one word at a time. The vocabulary is merely the spoken digits from 0 through 9, with a single utterance containing just one digit. (TI46 refers to the "NIST CD-ROM Version of the Texas Instruments-developed 46-Word Speaker-Dependent Isolated Word Speech Database".)
- Connected Digits (TIDIGITS): Extends the Isolated Digits test to recognize more than one word at a time (i.e., continuous speech). The vocabulary is merely the spoken digits from 0 through 9, with a single utterance containing a sequence of digits. (TIDIGITS refers to the "NIST CD-ROM Version of the Texas Instruments-developed Studio Quality Speaker-Independent Connected-Digit Corpus".)
- Small Vocabulary (AN4): Extends the vocabulary to approximately 100 words, with input data ranging from speaking words as well as spelling words out letter by letter.
- Medium Vocabulary (RM1): Extends the vocabulary to approximately 1,000 words.
- Medium Vocabulary (WSJ5K): Extends the vocabulary to approximately 5,000 words.
- Medium Vocabulary (WSJ20K): Extends the vocabulary to approximately 20,000 words.
- Large Vocabulary (HUB4): Extends the vocabulary to approximately 64,000 words.
Main features:
- Live mode and batch mode speech recognizers, capable of recognizing discrete and continuous speech.
- Generalized pluggable front end architecture. Includes pluggable implementations of preemphasis, Hamming window, FFT, Mel frequency filter bank, discrete cosine transform, cepstral mean normalization, and feature extraction of cepstra, delta cepstra, double delta cepstra features.
- Generalized pluggable language model architecture. Includes pluggable language model support for ASCII and binary versions of unigram, bigram, trigram, Java Speech API Grammar Format (JSGF), and ARPA-format FST grammars.
- Generalized acoustic model architecture. Includes pluggable support for Sphinx-3 acoustic models.
- Generalized search management. Includes pluggable support for breadth first and word pruning searches.
- Utilities for post-processing recognition results, including obtaining confidence scores, generating lattices and embedding ECMAScript into JSGF tags.
- Standalone tools. Includes tools for displaying waveforms and spectrograms and generating features from audio.
System requirements:
- Java 2 SDK, Standard Edition 5.0 or better
- Ant 1.6.0
<<less
Download (28.9MB)
Added: 2007-07-27 License: GPL Price:
835 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4