123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- #ifndef SNOWBOY_INCLUDE_SNOWBOY_DETECT_H_
- #define SNOWBOY_INCLUDE_SNOWBOY_DETECT_H_
- #include <memory>
- #include <string>
- namespace snowboy {
- struct WaveHeader;
- class PipelineDetect;
- class PipelineVad;
- class SnowboyDetect {
- public:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- SnowboyDetect(const std::string& resource_filename,
- const std::string& model_str);
-
-
-
- bool Reset();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int RunDetection(const std::string& data, bool is_end = false);
-
-
-
-
-
-
-
-
-
-
-
-
- int RunDetection(const float* const data,
- const int array_length, bool is_end = false);
- int RunDetection(const int16_t* const data,
- const int array_length, bool is_end = false);
- int RunDetection(const int32_t* const data,
- const int array_length, bool is_end = false);
-
-
-
-
-
-
-
- void SetSensitivity(const std::string& sensitivity_str);
-
-
-
-
-
- void SetHighSensitivity(const std::string& high_sensitivity_str);
-
- std::string GetSensitivity() const;
-
-
- void SetAudioGain(const float audio_gain);
-
-
-
-
-
- void UpdateModel() const;
-
-
- int NumHotwords() const;
-
-
-
-
-
-
-
-
- void ApplyFrontend(const bool apply_frontend);
-
-
-
- int SampleRate() const;
- int NumChannels() const;
- int BitsPerSample() const;
- ~SnowboyDetect();
- private:
- std::unique_ptr<WaveHeader> wave_header_;
- std::unique_ptr<PipelineDetect> detect_pipeline_;
- };
- class SnowboyVad {
- public:
-
-
- SnowboyVad(const std::string& resource_filename);
-
- bool Reset();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int RunVad(const std::string& data, bool is_end = false);
-
-
-
-
-
-
-
-
-
-
-
-
- int RunVad(const float* const data,
- const int array_length, bool is_end = false);
- int RunVad(const int16_t* const data,
- const int array_length, bool is_end = false);
- int RunVad(const int32_t* const data,
- const int array_length, bool is_end = false);
-
-
- void SetAudioGain(const float audio_gain);
-
-
- void ApplyFrontend(const bool apply_frontend);
-
-
-
- int SampleRate() const;
- int NumChannels() const;
- int BitsPerSample() const;
- ~SnowboyVad();
- private:
- std::unique_ptr<WaveHeader> wave_header_;
- std::unique_ptr<PipelineVad> vad_pipeline_;
- };
- }
- #endif
|