DSP SDK for VC ++

I am working on a project that requires real-time tracking of vocal formants using digital live mic input signal processing.

My environment is Microsoft VC ++ 2010 Express, the target platform is Windows. It seems extremely difficult to find a good DSP SDK that is not built for development for unix / linux or is dependent on cygwin to support Windows. Most of the DSP components that I could find for windows are a pipe and drawer environment where you create windows that support DSP functions and walk between them to produce some sort of result.

Is there a good DSP SDK that works well with MSVC ++ 2010 for Windows development?

+3
source share
2 answers

Although there are not many good dedicated DSP and SDK libraries for C ++ on Windows, there are alternatives that are DSP capable and available through C ++ on Windows.

Matlab obviously has an API for managing the instance through C ++, but Matlab is extremely expensive for this application. I found evidence that Octave, a free open source environment compatible with Matlab, has some C ++ api for direct access to it. However, I had trouble finding where exactly this API is hidden, but I will ask another question, given that if I do not find answers to some of the materials available to me.

0
source

Try Intel IPP for signal processing.

Intel DSP " ", IPP

: https://software.intel.com/en-us/get-started-with-ipp-for-windows. , Windows, Linux MacOS.

. 1. .

, , , .

0

Source: https://habr.com/ru/post/1796527/


All Articles