1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
#ifndef INCLUDE_SPECTRALSURFACE_H
#define INCLUDE_SPECTRALSURFACE_H
/*
* This is the Loris C++ Class Library, implementing analysis,
* manipulation, and synthesis of digitized sounds using the Reassigned
* Bandwidth-Enhanced Additive Sound Model.
*
* Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY, without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* SpectralSurface.h
*
* Definition of class SpectralSurface, a class representing
* a smoothed time-frequency surface that can be used to
* perform cross-synthesis, the filtering of one sound by the
* time-varying spectrum of another.
*
* Kelly Fitz, 21 Dec 2005
* loris@cerlsoundgroup.org
*
* http://www.cerlsoundgroup.org/Loris/
*
*/
#include "LorisExceptions.h"
#include "Partial.h"
#include "PartialList.h"
#include "PartialUtils.h" // for compareLabelLess
#include <algorithm> // for sort
#include <vector>
// begin namespace
namespace Loris {
// ---------------------------------------------------------------------------
// Class SpectralSurface
//
//! SpectralSurface represents a smoothed time-frequency surface that
//! can be used to perform cross-synthesis, the filtering of one sound
//! by the time-varying spectrum of another.
//
class SpectralSurface
{
// -- public interface --
public:
// -- lifecycle --
//! Contsruct a new SpectralSurface from a sequence of distilled
//! Partials.
//!
//! \pre the specified Partials must be channelized and distilled.
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
SpectralSurface( Iter b, Iter e );
#else
inline
SpectralSurface( PartialList::iterator b, PartialList::iterator e );
#endif
// use compiler-generated copy/assign/destroy
// --- operations ---
//! Scale the amplitude of every Breakpoint in a Partial
//! according to the amplitude of the spectral surface
//! at the corresponding time and frequency.
//!
//! \param p the Partial to modify
void scaleAmplitudes( Partial & p );
//! Scale the amplitudes of a sequence of Partials
//! according to the amplitude of the spectral surface
//! at the corresponding times and frequencies,
//! performing cross-synthesis, the filtering of one
//! sound (the sequence of Partials) by the time-varying
//! spectrum of another sound (the Partials used to
//! construct the surface). The surface is stretched
//! in time and frequency according to the values of
//! the two stretch factors (default 1, no stretching)
//! and the amount of the effect is governed by the
//! `effect' parameter (default 1, full effect).
//!
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void scaleAmplitudes( Iter b, Iter e );
#else
inline
void scaleAmplitudes( PartialList::iterator b, PartialList::iterator e );
#endif
//! Set the amplitude of every Breakpoint in a Partial
//! equal to the amplitude of the spectral surface
//! at the corresponding time and frequency.
//!
//! \param p the Partial to modify
void setAmplitudes( Partial & p );
//! Set the amplitudes of a sequence of Partials
//! equal to the amplitude of the spectral surface
//! at the corresponding times and frequencies.
//! This can be used to perform formant-corrected
//! pitch shifting of a sound: construct the surface
//! from the unmodified Partials, perform the pitch
//! shift on the Partials, then apply the surface
//! to the shifted Partials using setAmplitudes.
//! The surface is stretched
//! in time and frequency according to the values of
//! the two stretch factors (default 1, no stretching)
//! and the amount of the effect is governed by the
//! `effect' parameter (default 1, full effect).
//!
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void setAmplitudes( Iter b, Iter e );
#else
inline
void setAmplitudes( PartialList::iterator b, PartialList::iterator e );
#endif
// --- access/mutation ---
//! Return the amount of strecthing in the frequency dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the frequency dimension, values less than 1
//! (but greater than 0) compress the surface in the frequency
//! dimension.
double frequencyStretch( void ) const;
//! Return the amount of strecthing in the time dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the time dimension, values less than 1
//! (but greater than 0) compress the surface in the time
//! dimension.
double timeStretch( void ) const;
//! Return the amount of effect applied by scaleAmplitudes
//! and setAmplitudes (default 1, full effect). Values
//! less than 1 (but greater than 0) reduce the amount of
//! amplitude modified performed by application of the
//! surface. (This is rarely a good way of controlling the
//! amount of the effect.)
double effect( void ) const;
//! Set the amount of strecthing in the frequency dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the frequency dimension, values less than 1
//! (but greater than 0) compress the surface in the frequency
//! dimension.
//!
//! \pre stretch must be positive
//! \param stretch the new stretch factor for the frequency dimension
void setFrequencyStretch( double stretch );
//! Set the amount of strecthing in the time dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the time dimension, values less than 1
//! (but greater than 0) compress the surface in the time
//! dimension.
//!
//! \pre stretch must be positive
//! \param stretch the new stretch factor for the time dimension
void setTimeStretch( double stretch );
//! Set the amount of effect applied by scaleAmplitudes
//! and setAmplitudes (default 1, full effect). Values
//! less than 1 (but greater than 0) reduce the amount of
//! amplitude modified performed by application of the
//! surface. (This is rarely a good way of controlling the
//! amount of the effect.)
//!
//! \pre effect must be between 0 and 1, inclusive
//! \param effect the new factor controlling the amount of
//! amplitude modification performed by scaleAmplitudes
//! and setAmplitudes
void setEffect( double effect );
private:
// -- instance variables --
std::vector< Partial > mPartials; //! the Partials comprising the surface are
//! stored in a vector for easy random access
double mStretchFreq; //! stretch factor for the frequency dimension
double mStretchTime; //! stretch factor for the time dimension
double mEffect; //! factor for controlling the amount of
//! of the effect applied in setAmplitudes and
//! scaleAmplitudes: 0 gives unmodified amplitudes
//! 1 gives fully modified amplitudes.
double mMaxSurfaceAmp; //! the maximum amplitude of any Breakpoint on
//! the surface, used for normalizing the surface
//! amplitude for scaleAmplitudes
// --- private helpers ---
// helper used by constructor for adding Partials one by one
void addPartialAux( const Partial & p );
};
// ---------------------------------------------------------------------------
// constructor
// ---------------------------------------------------------------------------
//! Contsruct a new SpectralSurface from a sequence of distilled
//! Partials.
//!
//! \pre the specified Partials must be channelized and distilled.
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
SpectralSurface::SpectralSurface( Iter b, Iter e ) :
#else
inline
SpectralSurface::SpectralSurface( PartialList::iterator b,
PartialList::iterator e ) :
#endif
mStretchFreq( 1.0 ),
mStretchTime( 1.0 ),
mEffect( 1.0 ),
mMaxSurfaceAmp( 0.0 )
{
// add only labeled Partials:
while ( b != e )
{
if ( b->label() != 0 )
{
addPartialAux( *b );
}
++b;
}
// complain if the Partials were not distilled
if ( mPartials.empty() )
{
Throw( InvalidArgument, "Partals need to be distilled to build a SpectralSurface" );
}
if ( 0 == mMaxSurfaceAmp )
{
Throw( InvalidArgument, "The SpectralSurface is zero amplitude everywhere!" );
}
// sort by label
std::sort( mPartials.begin(), mPartials.end(), PartialUtils::compareLabelLess() );
}
// ---------------------------------------------------------------------------
// scaleAmplitudes
// ---------------------------------------------------------------------------
//! Scale the amplitudes of a sequence of Partials
//! according to the amplitude of the spectral surface
//! at the corresponding times and frequencies,
//! performing cross-synthesis, the filtering of one
//! sound (the sequence of Partials) by the time-varying
//! spectrum of another sound (the Partials used to
//! construct the surface). The surface is stretched
//! in time and frequency according to the values of
//! the two stretch factors (default 1, no stretching)
//! and the amount of the effect is governed by the
//! `effect' parameter (default 1, full effect).
//!
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void SpectralSurface::scaleAmplitudes( Iter b, Iter e )
#else
inline
void SpectralSurface::scaleAmplitudes( PartialList::iterator b,
PartialList::iterator e )
#endif
{
while ( b != e )
{
// debugger << b->label() << endl;
scaleAmplitudes( *b );
++b;
}
}
// ---------------------------------------------------------------------------
// setAmplitudes
// ---------------------------------------------------------------------------
//! Set the amplitudes of a sequence of Partials
//! equal to the amplitude of the spectral surface
//! at the corresponding times and frequencies.
//! This can be used to perform formant-corrected
//! pitch shifting of a sound: construct the surface
//! from the unmodified Partials, perform the pitch
//! shift on the Partials, then apply the surface
//! to the shifted Partials using setAmplitudes.
//! The surface is stretched
//! in time and frequency according to the values of
//! the two stretch factors (default 1, no stretching)
//! and the amount of the effect is governed by the
//! `effect' parameter (default 1, full effect).
//!
//! \param b the beginning of the sequence of Partials
//! \param e the end of the sequence of Partials
//!
//! If compiled with NO_TEMPLATE_MEMBERS defined, then b and e
//! must be PartialList::iterators, otherwise they can be any type
//! of iterators over a sequence of Partials.
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void SpectralSurface::setAmplitudes( Iter b, Iter e )
#else
inline
void SpectralSurface::setAmplitudes( PartialList::iterator b,
PartialList::iterator e )
#endif
{
while ( b != e )
{
// debugger << b->label() << endl;
setAmplitudes( *b );
++b;
}
}
} // namespace Loris
#endif /* ndef INCLUDE_SPECTRALSURFACE_H */
|