Skip to main content

Python wrapper for Filters library

Project description

Filters SDK

Description

It is a cross-platform library that allows you to filter the signal with a given set of filters for a specified sampling rate.

The library provides built-in filters of the following types:

  1. high pass - high pass filter (HPF). Cuts off all frequencies below the filter pass frequency
  2. low pass - low pass filter (LPF). Cuts off all frequencies above filter pass frequency.
  3. band pass - bandpass filter. Passes a certain bandwidth
  4. band stop is a band reject filter. Suppresses a certain band.

Digital signal processing involves the formation of the necessary bandwidth and suppression of network interference. The bandwidth is formed by sequential application of VFD and LPF filters. The HPF removes the constant component of the signal and the drift of the isoline, attracting the signal to 0. The LPF removes high-frequency noise from the signal. Mains interference caused by mains interference usually has the frequency of the mains itself - 50 Hz for Russia and CIS countries and 60 Hz for America and some other countries. Mains interference often has a very high amplitude signal and even when outside the signal bandwidth it still gives significant distortion, which leads to the need to suppress it with regenerative filters.

Maximum available signal bandwidth directly depends on sampling frequency and according to Nyquest law does not exceed half of sampling frequency. In practice, usually guided by the rule - Fh=Fd/4. Thus, if we have a sampling frequency of 1000 Hz, the maximum signal frequency will be 250 Hz. This value can be pushed higher, up to 400 Hz, but the higher the frequency, the lower the accuracy of the signal transmission will be.

Thus, a typical signal processing chain is the use of LPF, LPF and the required number of notch filters. The order in which the filters are applied does not matter.

Each filter has a set of internal coefficients, which are recalculated after each new sample of the signal. This means that you cannot use the same instance of the filter class to process multiple signals at once. The rule 1 filter - 1 signal works here.

Types

FilterType

Type of filter, enum with values:

  1. FtHP - high pass filter
  2. FtLP - low pass filter
  3. FtBandStop - band stop filter
  4. FtBandPass - band pass filter
  5. FtNone - default value, type not set

FilterParam

Parameters of filter, structure with fields:

  1. type - type of filter
  2. samplingFreq - sampling frequency of raw signal, integer value
  3. cutoffFreq - central frequency, double value

Preinstalled filters

Library contains a list of some filters. The full list you can get with functions:

preinstalled_filters = preinstalled_filters_list()

Initialization

For work with filter you need to create a Filter object and optionally FilterList object. The FilterList contains objects of the Filter type and manipulates them.

# creating filter
filter = Filter()
param = FilterParam(FilterType.ft_band_stop, 250, 100)
filter.init_by_param(param)

# then create list of filters
filter_list = FilterList()

# and add the filter
flist.add_filter(filter)

Usage

Filter one value:

sample = SAMPLE
filteredValue = flist.Filter(sample)

Filter array of values:

# by one filter
samples = [x for x in range(max_samples)]
filter.filter_array(samples);

# by list of filters
samples = [x for x in range(max_samples)]
flist.filter_array(samples);

Finishing work with the library

# removing filters
del filter

# removing list of filters
del flist

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfilters_lib-1.0.3.tar.gz (336.2 kB view details)

Uploaded Source

File details

Details for the file pyfilters_lib-1.0.3.tar.gz.

File metadata

  • Download URL: pyfilters_lib-1.0.3.tar.gz
  • Upload date:
  • Size: 336.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pyfilters_lib-1.0.3.tar.gz
Algorithm Hash digest
SHA256 b8c2c318b7d6cdfd4d777697b5ed86e40f4d995e18f31f68d73c513805f11769
MD5 c34ed8d4c467ab560e756487d7789299
BLAKE2b-256 6c0fa7235d06e3b520fcac9a37e585b1c513f945771f492d44618d5cf61d6931

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page