phytium-vsipl/include/filter.h

16 lines
413 B
C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef RADAR_FILTER_H_
#define RADAR_FILTER_H_
#include "vsip.h"
/*
* 内部接口:希尔伯特滤波
* 参数p_vector_src -- 输入信号
* n_filter_length -- 滤波器长度
* p_vector_dst -- 输出信号
* 功能:对输入信号进行希尔伯特滤波
*/
void hilbert(vsip_vview_f *p_vector_src, vsip_scalar_i n_filter_length,
vsip_cvview_f *p_vector_dst);
#endif