Click here to Skip to main content
15,894,740 members
Home / Discussions / Algorithms
   

Algorithms

 
AnswerRe: Searching for algorithm for text file comparison (with list of differences) Pin
PIEBALDconsult9-Nov-11 13:18
mvePIEBALDconsult9-Nov-11 13:18 
AnswerRe: Searching for algorithm for text file comparison (with list of differences) Pin
Luc Pattyn9-Nov-11 13:33
sitebuilderLuc Pattyn9-Nov-11 13:33 
GeneralRe: Searching for algorithm for text file comparison (with list of differences) Pin
PIEBALDconsult9-Nov-11 13:34
mvePIEBALDconsult9-Nov-11 13:34 
GeneralRe: Searching for algorithm for text file comparison (with list of differences) Pin
Luc Pattyn9-Dec-11 6:31
sitebuilderLuc Pattyn9-Dec-11 6:31 
QuestionAudio processing Pin
Guy00731-Oct-11 8:08
Guy00731-Oct-11 8:08 
AnswerRe: Audio processing Pin
Albert Holguin1-Nov-11 9:20
professionalAlbert Holguin1-Nov-11 9:20 
AnswerRe: Audio processing Pin
BobJanova10-Nov-11 1:32
BobJanova10-Nov-11 1:32 
GeneralRe: Audio processing Pin
sgorozco25-Nov-11 8:16
sgorozco25-Nov-11 8:16 
Fast Fourier Transform filtering is certainly an option.

It's a very intuitive solution since, like BobJanova states, band-pass filtering can be easily achieved by doing these steps:

1) Forward FFT of the input data,
2) Zeroing the result bins of the frequencies that we want to remove, and finally,
3) Perform reverse FFT on the same data.

However, this is a very expensive approach, if fast execution is a must, I would recommend trying a FIR digital filter instead. I have no experience designing such a filter myself, but there used to be a really great freeware tool around named DSPlay. I Googled for a while and unfortunately can't find it any more. This GUI tool allowed you to easily create band-pass filters by specifying a few input parameters and generated very simple C code that was directly usable in C#.

Let me take a look as I'm certain I have the DSPlay tool in a pervious hard disk backup...

Smile | :)
AnswerRe: Audio processing Pin
molesworth18-Nov-11 2:04
molesworth18-Nov-11 2:04 
QuestionHi There is a function in PhotoShop Color match! Pin
shengcheng_jin23-Oct-11 23:50
shengcheng_jin23-Oct-11 23:50 
AnswerRe: Hi There is a function in PhotoShop Color match! Pin
mikemar29-Oct-11 7:07
mikemar29-Oct-11 7:07 
GeneralRe: Hi There is a function in PhotoShop Color match! Pin
shengcheng_jin30-Oct-11 19:36
shengcheng_jin30-Oct-11 19:36 
GeneralRe: Hi There is a function in PhotoShop Color match! Pin
shengcheng_jin10-Nov-11 20:57
shengcheng_jin10-Nov-11 20:57 
AnswerRe: Hi There is a function in PhotoShop Color match! Pin
Richard MacCutchan29-Oct-11 7:16
mveRichard MacCutchan29-Oct-11 7:16 
GeneralRe: Hi There is a function in PhotoShop Color match! Pin
shengcheng_jin30-Oct-11 19:37
shengcheng_jin30-Oct-11 19:37 
GeneralRe: Hi There is a function in PhotoShop Color match! Pin
the north face15-Nov-11 15:57
the north face15-Nov-11 15:57 
QuestionLevenshtein Distance Pin
PIEBALDconsult14-Oct-11 6:05
mvePIEBALDconsult14-Oct-11 6:05 
AnswerRe: Levenshtein Distance Pin
TheGreatAndPowerfulOz18-Oct-11 12:44
TheGreatAndPowerfulOz18-Oct-11 12:44 
GeneralRe: Levenshtein Distance Pin
PIEBALDconsult19-Oct-11 6:27
mvePIEBALDconsult19-Oct-11 6:27 
AnswerRe: Levenshtein Distance Pin
Luc Pattyn18-Oct-11 14:08
sitebuilderLuc Pattyn18-Oct-11 14:08 
AnswerRe: Levenshtein Distance Pin
Luc Pattyn18-Oct-11 17:23
sitebuilderLuc Pattyn18-Oct-11 17:23 
GeneralRe: Levenshtein Distance Pin
PIEBALDconsult18-Oct-11 17:54
mvePIEBALDconsult18-Oct-11 17:54 
AnswerRe: Levenshtein Distance Pin
Luc Pattyn19-Oct-11 0:31
sitebuilderLuc Pattyn19-Oct-11 0:31 
GeneralRe: Levenshtein Distance Pin
PIEBALDconsult19-Oct-11 2:40
mvePIEBALDconsult19-Oct-11 2:40 
AnswerRe: Levenshtein Distance Pin
Luc Pattyn19-Oct-11 3:01
sitebuilderLuc Pattyn19-Oct-11 3:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.