forked from sp-nitech/SPTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e347c0
commit ab7967d
Showing
4 changed files
with
268 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ glogsp | |
|
||
.. doxygenfile:: glogsp.py | ||
|
||
.. seealso:: :ref:`fdrw` | ||
.. seealso:: :ref:`fdrw` :ref:`grlogsp` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. _grlogsp: | ||
|
||
grlogsp | ||
======= | ||
|
||
.. doxygenfile:: grlogsp.py | ||
|
||
.. seealso:: :ref:`fdrw` :ref:`glogsp` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
#!/usr/bin/env python | ||
# ------------------------------------------------------------------------ # | ||
# Copyright 2021 SPTK Working Group # | ||
# # | ||
# Licensed under the Apache License, Version 2.0 (the "License"); # | ||
# you may not use this file except in compliance with the License. # | ||
# You may obtain a copy of the License at # | ||
# # | ||
# http://www.apache.org/licenses/LICENSE-2.0 # | ||
# # | ||
# Unless required by applicable law or agreed to in writing, software # | ||
# distributed under the License is distributed on an "AS IS" BASIS, # | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # | ||
# See the License for the specific language governing permissions and # | ||
# limitations under the License. # | ||
# ------------------------------------------------------------------------ # | ||
|
||
import argparse | ||
import os | ||
import sys | ||
|
||
import numpy as np | ||
import plotly.graph_objs as go | ||
|
||
import sptk.draw_utils as utils | ||
|
||
|
||
def get_arguments(): | ||
parser = argparse.ArgumentParser(description="draw a running log spectrum graph") | ||
parser.add_argument( | ||
metavar="infile", | ||
dest="in_file", | ||
default=None, | ||
nargs="?", | ||
type=str, | ||
help="log spectrum (double)", | ||
) | ||
parser.add_argument( | ||
metavar="outfile", | ||
dest="out_file", | ||
type=str, | ||
help="figure", | ||
) | ||
parser.add_argument( | ||
"-F", | ||
metavar="F", | ||
dest="factor", | ||
default=1.0, | ||
type=float, | ||
help="scale of figure", | ||
) | ||
parser.add_argument( | ||
"-W", | ||
metavar="W", | ||
dest="width", | ||
default=None, | ||
type=int, | ||
help="width of figure [px]", | ||
) | ||
parser.add_argument( | ||
"-H", | ||
metavar="H", | ||
dest="height", | ||
default=None, | ||
type=int, | ||
help="height of figure [px]", | ||
) | ||
parser.add_argument( | ||
"-g", | ||
dest="grid", | ||
action="store_true", | ||
help="draw grid", | ||
) | ||
parser.add_argument( | ||
"-t", | ||
dest="transpose", | ||
action="store_true", | ||
help="transpose axis", | ||
) | ||
parser.add_argument( | ||
"-s", | ||
metavar="s", | ||
dest="start_frame_number", | ||
default=0, | ||
type=int, | ||
help="start frame number", | ||
) | ||
parser.add_argument( | ||
"-e", | ||
metavar="e", | ||
dest="end_frame_number", | ||
default=None, | ||
type=int, | ||
help="end frame number", | ||
) | ||
parser.add_argument( | ||
"-l", | ||
metavar="l", | ||
dest="frame_length", | ||
default=256, | ||
type=int, | ||
help="frame length (FFT length)", | ||
) | ||
parser.add_argument( | ||
"-z", | ||
metavar="z", | ||
dest="bias", | ||
default=20.0, | ||
type=float, | ||
help="distance between spectra", | ||
) | ||
parser.add_argument( | ||
"-x", | ||
metavar="x", | ||
dest="sr", | ||
default=1, | ||
type=float, | ||
help="sampling rate [kHz]", | ||
) | ||
parser.add_argument( | ||
"-ls", | ||
dest="line_style", | ||
choices=utils.line_styles, | ||
default="solid", | ||
type=str, | ||
help="line style", | ||
) | ||
parser.add_argument( | ||
"-lc", | ||
metavar="lc", | ||
dest="line_color", | ||
default="#636EFA", | ||
type=str, | ||
help="line color", | ||
) | ||
parser.add_argument( | ||
"-lw", | ||
metavar="lw", | ||
dest="line_width", | ||
default=1, | ||
type=int, | ||
help="line width", | ||
) | ||
return parser.parse_args() | ||
|
||
|
||
## | ||
# @a grlogsp [ @e option ] [ @e infile ] @e outfile | ||
# | ||
# - @b -F @e float | ||
# - scale of figure | ||
# - @b -W @e float | ||
# - width of figure in pixels | ||
# - @b -H @e float | ||
# - height of figure in pixels | ||
# - @b -g | ||
# - draw grid | ||
# - @b -t | ||
# - transpose axis | ||
# - @b -s @e int | ||
# - start frame number | ||
# - @b -e @e int | ||
# - end frame number | ||
# - @b -l @e int | ||
# - frame length | ||
# - @b -z @e float | ||
# - distance between spectra in decibels | ||
# - @b -x @e float | ||
# - sampling rate in kHz | ||
# - @b -y @e float @e float | ||
# - y-axis limits | ||
# - @b -ls @e str | ||
# - line style (solid, dash, dot, or dashdot) | ||
# - @b -lc @e str | ||
# - line color | ||
# - @b -lw @e str | ||
# - line width | ||
# - @b infile @e str | ||
# - double-type log spectrum | ||
# - @b outfile @e str | ||
# - figure | ||
# | ||
# The below example draws a running log spectrum on @c out.eps. | ||
# @code{.sh} | ||
# x2x +sd data.short | frame -p 80 -l 400 | window -l 400 -L 512 | spec -l 512 | | ||
# grlogsp -l 512 -H 6000 out.eps | ||
# @endcode | ||
def main(): | ||
args = get_arguments() | ||
|
||
dim = args.frame_length // 2 + 1 | ||
|
||
if args.in_file is None: | ||
if not utils.is_pipe(): | ||
utils.print_error_message("grlogsp", "Input file is not given") | ||
sys.exit(1) | ||
data = utils.read_stdin(dim=dim) | ||
else: | ||
if utils.is_pipe(): | ||
utils.print_error_message("grlogsp", "Too many input files") | ||
sys.exit(1) | ||
if not os.path.exists(args.in_file): | ||
utils.print_error_message("grlogsp", f"Cannot open {args.in_file}") | ||
sys.exit(1) | ||
data = utils.read_binary(args.in_file, dim=dim) | ||
|
||
x = np.linspace(0, 1, dim) | ||
if 0 < args.sr: | ||
x *= args.sr * 0.5 # Multiply Nyquist frequency. | ||
if args.transpose: | ||
x = np.flip(x) | ||
ys = data[args.start_frame_number : args.end_frame_number] | ||
|
||
fig = go.Figure() | ||
for i in range(len(ys)): | ||
y = ys[i] + (args.bias * i) | ||
|
||
fig.add_trace( | ||
go.Scatter( | ||
x=y if args.transpose else x, | ||
y=x if args.transpose else y, | ||
line=dict( | ||
color=args.line_color, | ||
width=args.line_width, | ||
dash=args.line_style, | ||
), | ||
) | ||
) | ||
xaxis = dict( | ||
range=(x[0], x[-1]), | ||
showgrid=args.grid, | ||
) | ||
yaxis = dict( | ||
showticklabels=False, | ||
showgrid=False, | ||
zeroline=False, | ||
) | ||
if args.sr <= 0: | ||
xaxis["title_text"] = "Normalized frequency [rad]" | ||
xaxis["tickmode"] = "array" | ||
xaxis["tickvals"] = [0, 0.5, 1] | ||
xaxis["ticktext"] = ["$0$", r"$\pi/2$", r"$\pi$"] | ||
elif args.sr == 1: | ||
xaxis["title_text"] = "Normalized frequency [cyc]" | ||
else: | ||
xaxis["title_text"] = "Frequency [kHz]" | ||
fig.update_layout( | ||
xaxis=yaxis if args.transpose else xaxis, | ||
yaxis=xaxis if args.transpose else yaxis, | ||
showlegend=False, | ||
) | ||
fig.write_image( | ||
args.out_file, width=args.width, height=args.height, scale=args.factor | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |