# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
# (see sigima/LICENSE for details)
"""
Feature extraction and analysis functions
=========================================
This module provides feature extraction and analysis functions for signal objects:
- Peak detection
- Full Width at Half Maximum (FWHM) and related measurements
- Statistical analysis
- Bandwidth calculations
- Dynamic parameters (ENOB, SNR, SINAD, THD, SFDR)
.. note::
Most operations use functions from :mod:`sigima.tools.signal` for actual
computations.
"""
from __future__ import annotations
import guidata.dataset as gds
import numpy as np
import scipy.integrate as spt
from sigima.config import _
from sigima.enums import PowerUnit
from sigima.objects import (
GeometryResult,
KindShape,
SignalObj,
TableKind,
TableResult,
TableResultBuilder,
)
from sigima.proc.base import dst_1_to_1
from sigima.proc.decorator import computation_function
from sigima.proc.signal.base import compute_geometry_from_obj
from sigima.tools.signal import dynamic, features, peakdetection, pulse
[docs]
class PeakDetectionParam(gds.DataSet, title=_("Peak detection")):
"""Peak detection parameters"""
threshold = gds.FloatItem(_("Threshold"), default=0.1, min=0.0)
min_dist = gds.IntItem(_("Minimum distance"), default=1, min=1)
[docs]
@computation_function()
def peak_detection(src: SignalObj, p: PeakDetectionParam) -> SignalObj:
"""Peak detection with
:py:func:`sigima.tools.signal.peakdetection.peak_indices`
Args:
src: source signal
p: parameters
Returns:
Result signal object
"""
dst = dst_1_to_1(
src, "peak_detection", f"threshold={p.threshold}%, min_dist={p.min_dist}pts"
)
x, y = src.get_data()
indices = peakdetection.peak_indices(
y, thres=p.threshold * 0.01, min_dist=p.min_dist
)
dst.set_xydata(x[indices], y[indices])
dst.set_metadata_option("curvestyle", "Sticks")
return dst
[docs]
class FWHMParam(
gds.DataSet,
title=_("FWHM"),
comment=_(
"<u>Methods and trade-offs:</u><br><br>"
"• Zero-crossing: Fast, sensitive to noise<br>"
"• Gaussian fit: Good for symmetric peaks, assumes Gaussian shape<br>"
"• Lorentzian fit: Suitable for peaks with long tails, dominated by "
"collisional or lifetime broadening<br>"
"• Voigt fit: Most accurate for spectroscopic data, or laser lines "
"broadened by both Doppler and collisional effects<br>"
),
):
"""FWHM parameters"""
methods = (
("zero-crossing", _("Zero-crossing")),
("gauss", _("Gaussian fit")),
("lorentz", _("Lorentzian fit")),
("voigt", _("Voigt fit")),
)
method = gds.ChoiceItem(_("Method"), methods, default="zero-crossing")
xmin = gds.FloatItem(
"X<sub>MIN</sub>",
default=None,
check=False,
help=_("Lower X boundary (empty for no limit, i.e. start of the signal)"),
)
xmax = gds.FloatItem(
"X<sub>MAX</sub>",
default=None,
check=False,
help=_("Upper X boundary (empty for no limit, i.e. end of the signal)"),
).set_prop("display", col=1)
[docs]
@computation_function()
def fwhm(obj: SignalObj, param: FWHMParam) -> GeometryResult | None:
"""Compute FWHM with :py:func:`sigima.tools.signal.pulse.fwhm`
Args:
obj: source signal
param: parameters
Returns:
Segment coordinates
"""
return compute_geometry_from_obj(
"fwhm",
KindShape.SEGMENT,
obj,
pulse.fwhm,
param.method,
param.xmin,
param.xmax,
)
[docs]
@computation_function()
def fw1e2(obj: SignalObj) -> GeometryResult | None:
"""Compute FW at 1/e² with :py:func:`sigima.tools.signal.pulse.fw1e2`
Args:
obj: source signal
Returns:
Segment coordinates
"""
return compute_geometry_from_obj("fw1e2", KindShape.SEGMENT, obj, pulse.fw1e2)
# Note: we do not specify title of the dataset here because it's a generic parameter
# used in multiple functions (this avoids that the same title is displayed in GUI
# for different functions)
[docs]
class OrdinateParam(gds.DataSet):
"""Ordinate parameter."""
y = gds.FloatItem("y", default=0.0)
[docs]
@computation_function()
def full_width_at_y(obj: SignalObj, p: OrdinateParam) -> GeometryResult | None:
"""
Compute full width at a given y value for a signal object.
Args:
obj: The signal object containing x and y data.
p: The ordinate parameter dataset
Returns:
Segment coordinates
"""
return compute_geometry_from_obj(
"∆X", KindShape.SEGMENT, obj, pulse.full_width_at_y, p.y
)
[docs]
@computation_function()
def x_at_y(obj: SignalObj, p: OrdinateParam) -> GeometryResult | None:
"""
Compute the smallest x-value at a given y-value for a signal object.
Args:
obj: The signal object containing x and y data.
p: The parameter dataset for finding the abscissa.
Returns:
A GeometryResult with a cross marker at the (x, y) position.
"""
def compute_x_at_y(x: np.ndarray, y: np.ndarray) -> np.ndarray:
"""Helper function to compute x at y value."""
x_values = features.find_x_values_at_y(x, y, p.y)
x_result = x_values[0] if len(x_values) > 0 else np.nan
return np.array([x_result, p.y])
return compute_geometry_from_obj(
f"x|y={p.y}",
KindShape.MARKER,
obj,
compute_x_at_y,
)
# Note: we do not specify title of the dataset here because it's a generic parameter
# used in multiple functions (this avoids that the same title is displayed in GUI
# for different functions)
[docs]
class AbscissaParam(gds.DataSet):
"""Abscissa parameter."""
x = gds.FloatItem("x", default=0.0)
[docs]
@computation_function()
def y_at_x(obj: SignalObj, p: AbscissaParam) -> GeometryResult | None:
"""
Compute the smallest y-value at a given x-value for a signal object.
Args:
obj: The signal object containing x and y data.
p: The parameter dataset for finding the ordinate.
Returns:
A GeometryResult with a cross marker at the (x, y) position.
"""
def compute_y_at_x(x: np.ndarray, y: np.ndarray) -> np.ndarray:
"""Helper function to compute y at x value."""
y_result = features.find_y_at_x_value(x, y, p.x)
return np.array([p.x, y_result])
return compute_geometry_from_obj(
f"y|x={p.x}",
KindShape.MARKER,
obj,
compute_y_at_x,
)
[docs]
@computation_function()
def stats(obj: SignalObj) -> TableResult:
"""Compute statistics on a signal
Args:
obj: source signal
Returns:
Result properties object
"""
table = TableResultBuilder(_("Signal statistics"), kind=TableKind.STATISTICS)
table.add(lambda xy: np.nanmin(xy[1]), "min")
table.add(lambda xy: np.nanmax(xy[1]), "max")
table.add(lambda xy: np.nanmean(xy[1]), "mean")
table.add(lambda xy: np.nanmedian(xy[1]), "median")
table.add(lambda xy: np.nanstd(xy[1]), "std")
table.add(lambda xy: np.nanmean(xy[1]) / np.nanstd(xy[1]), "snr")
table.add(lambda xy: np.nanmax(xy[1]) - np.nanmin(xy[1]), "ptp")
table.add(lambda xy: np.nansum(xy[1]), "sum")
table.add(lambda xy: spt.trapezoid(xy[1], xy[0]), "trapz")
return table.compute(obj)
[docs]
@computation_function()
def bandwidth_3db(obj: SignalObj) -> GeometryResult | None:
"""Compute bandwidth at -3 dB with
:py:func:`sigima.tools.signal.misc.bandwidth`
.. note::
The bandwidth is defined as the range of frequencies over which the signal
maintains a certain level relative to its peak.
.. warning::
The signal is assumed to be smooth enough for the bandwidth calculation to be
meaningful. If the signal contains excessive noise, multiple peaks, or is not
sufficiently continuous, the computed bandwidth may not accurately represent the
true -3dB range. It is recommended to preprocess the signal to ensure reliable
results.
Args:
obj: Source signal.
Returns:
Result shape with bandwidth.
"""
return compute_geometry_from_obj(
"bandwidth", KindShape.SEGMENT, obj, features.find_bandwidth_coordinates, -3.0
)
[docs]
class DynamicParam(gds.DataSet, title=_("Dynamic parameters")):
"""Parameters for dynamic range computation (ENOB, SNR, SINAD, THD, SFDR)"""
full_scale = gds.FloatItem(_("Full scale"), default=0.16, min=0.0, unit="V")
unit = gds.ChoiceItem(
_("Unit"),
[(PowerUnit.DBC, "dBc"), (PowerUnit.DBFS, "dBFS")],
default=PowerUnit.DBC,
help=_("Unit for SINAD"),
)
nb_harm = gds.IntItem(
_("Number of harmonics"),
default=5,
min=1,
help=_("Number of harmonics to consider for THD"),
)
[docs]
@computation_function()
def dynamic_parameters(src: SignalObj, p: DynamicParam) -> TableResult:
"""Compute Dynamic parameters
using the following functions:
- Freq: :py:func:`sigima.tools.signal.dynamic.sinus_frequency`
- ENOB: :py:func:`sigima.tools.signal.dynamic.enob`
- SNR: :py:func:`sigima.tools.signal.dynamic.snr`
- SINAD: :py:func:`sigima.tools.signal.dynamic.sinad`
- THD: :py:func:`sigima.tools.signal.dynamic.thd`
- SFDR: :py:func:`sigima.tools.signal.dynamic.sfdr`
Args:
src: source signal
p: parameters
Returns:
Result properties with ENOB, SNR, SINAD, THD, SFDR
"""
unit: PowerUnit = p.unit
table = TableResultBuilder(_("Dynamic parameters"))
table.add(lambda xy: dynamic.sinus_frequency(xy[0], xy[1]), "freq")
table.add(lambda xy: dynamic.enob(xy[0], xy[1], p.full_scale), "enob")
table.add(lambda xy: dynamic.snr(xy[0], xy[1], unit), "snr")
table.add(lambda xy: dynamic.sinad(xy[0], xy[1], unit), "sinad")
table.add(
lambda xy: dynamic.thd(xy[0], xy[1], p.full_scale, unit, p.nb_harm), "thd"
)
table.add(lambda xy: dynamic.sfdr(xy[0], xy[1], p.full_scale, unit), "sfdr")
return table.compute(src)