summaryrefslogtreecommitdiff
path: root/src/loris/Dilator.h
blob: 33707887e74add921773d1b6f73106d3d80b2823 (plain)
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#ifndef INCLUDE_DILATOR_H
#define INCLUDE_DILATOR_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
 *
 *
 * Dilator.h
 *
 * Definition of class Dilator.
 *
 * Kelly Fitz, 26 Oct 1999
 * loris@cerlsoundgroup.org
 *
 * http://www.cerlsoundgroup.org/Loris/
 *
 */

#if defined(NO_TEMPLATE_MEMBERS)
#include "PartialList.h"
#endif

#include <vector>

//	begin namespace
namespace Loris {

class Marker;
class Partial;

// ---------------------------------------------------------------------------
//	class Dilator
//
//!	Class Dilator represents an algorithm for non-uniformly expanding
//!	and contracting the Partial parameter envelopes according to the initial
//!	and target (desired) times of temporal features.
//!	
//!	It is frequently necessary to redistribute temporal events in this way
//!	in preparation for a sound morph. For example, when morphing instrument
//!	tones, it is common to align the attack, sustain, and release portions
//!	of the source sounds by dilating or contracting those temporal regions.
//!
//!	This same procedure can be applied to the Markers stored in AiffFile,
//!	SdifFile, and SpcFile (see Marker.h).
//
class Dilator
{
//	-- instance variables --

	std::vector< double > _initial, _target;	//	time points
	
//	-- public interface --
public:
//	-- construction --

	//!	Construct a new Dilator with no time points.
	Dilator( void );
	 	
	//!	Construct a new Dilator using a range of initial time points
	//!	and a range of target (desired) time points. The client must
	//!	ensure that the target range has at least as many elements as
	//!	the initial range.
	//!	
	//!	\param 	ibegin is the beginning of a sequence of initial, or source,
	//!	         time points.
	//!	\param 	iend is (one-past) the end of a sequence of initial, or
	//!	         source, time points.
	//!	\param 	tbegin is the beginning of a sequence of target time points; 
	//!	         this sequence must be as long as the sequence of initial time
	//!	         point described by ibegin and iend.
	//!
	//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
	//!	only const double * arguments.
#if ! defined(NO_TEMPLATE_MEMBERS)
	template<typename Iter1, typename Iter2>
	Dilator( Iter1 ibegin, Iter1 iend, Iter2 tbegin );
#else
    inline
	Dilator( const double * ibegin, const double * iend, const double * tbegin );
#endif

	//	Use compiler-generated copy, assign, and destroy.
	
//	-- mutation --
	
	//!	Insert a pair of initial and target time points. 
	//!	
	//!	Specify a pair of initial and target time points to be used
	//!	by this Dilator, corresponding, for example, to the initial
	//!	and desired time of a particular temporal feature in an
	//!	analyzed sound.
	//!	
	//!	\param 	i is an initial, or source, time point
	//!	\param 	t is a target time point
	//!	
	//!	The time points will be sorted before they are used.
	//!	If, in the sequences of initial and target time points, there are
	//!	exactly the same number of initial time points preceding i as
	//!	target time points preceding t, then time i will be warped to 
	//!	time t in the dilation process.	
	void insert( double i, double t );
	
//	-- dilation --

	//!	Replace the Partial envelope with a new envelope having the
	//!	same Breakpoints at times computed to align temporal features
	//!	in the sorted sequence of initial time points with their 
	//!	counterparts the sorted sequence of target time points.
	//!
	//!	Depending on the specification of initial and target time 
	//!	points, the dilated Partial may have Breakpoints at times
	//!	less than 0, even if the original Partial did not.
	//!
	//!	It is possible to have duplicate time points in either sequence.
	//!	Duplicate initial time points result in very localized stretching.
	//!	Duplicate target time points result in very localized compression.
	//!
	//!	If all initial time points are greater than 0, then an implicit
	//!	time point at 0 is assumed in both initial and target sequences, 
	//!	so the onset of a sound can be stretched without explcitly specifying a 
	//!	zero point in each vector. (This seems most intuitive, and only looks
	//!	like an inconsistency if clients are using negative time points in 
	//!	their Dilator, or Partials having Breakpoints before time 0, both 
	//!	of which are probably unusual circumstances.)
	//!
	//!	\param	p is the Partial to dilate.
	void dilate( Partial & p ) const;
	 
	//!	Function call operator: same as dilate( Partial & p ).
	void operator() ( Partial & p ) const;

	//!	Compute a new time for the specified Marker using
	//!	warpTime(), exactly as Partial Breakpoint times are
	//!	recomputed. This can be used to dilate the Markers
	//!	corresponding to a collection of Partials. 
	//!
	//!	\param	m is the Marker whose time should be recomputed.
	void dilate( Marker & m ) const;
	 
	//!	Function call operator: same as dilate( Marker & p ).
	void operator() ( Marker & m ) const;
	 
	//!	Non-uniformly expand and contract the parameter envelopes of the each
	//!	Partial in the specified half-open range according to this Dilator's
	//!	stored initial and target (desired) times. 
	//!
	//!	\param dilate_begin is the beginning of a sequence of Partials to dilate.
	//!	\param dilate_end is (one-past) the end of a sequence of Partials to dilate.
	//!
	//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
	//!	only PartialList::const_iterator arguments. Otherwise, this member
	//!   also works for sequences of Markers.
	//!	
	//!	\sa Dilator::dilate( Partial & p ) const
	//!	\sa Dilator::dilate( Marker & m ) const
#if ! defined(NO_TEMPLATE_MEMBERS)
	template<typename Iter>
	void dilate( Iter dilate_begin, Iter dilate_end  ) const;
#else
    inline
	void dilate( PartialList::iterator dilate_begin, 
				    PartialList::iterator dilate_end  ) const;
#endif
	 
	//!	Function call operator: same as 
	//!	dilate( Iter dilate_begin, Iter dilate_end )
	//!
	//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
	//!	only PartialList::const_iterator arguments. Otherwise, this member
	//!   also works for sequences of Markers.
	//!	
	//!	\sa Dilator::dilate( Partial & p ) const
	//!	\sa Dilator::dilate( Marker & m ) const
#if ! defined(NO_TEMPLATE_MEMBERS)
	template<typename Iter>
	void operator() ( Iter dilate_begin, Iter dilate_end  ) const;
#else
    inline
	void operator() ( PartialList::iterator dilate_begin, 
					      PartialList::iterator dilate_end ) const;
#endif
	 
	//!	Return the dilated time value corresponding to the specified initial time.
	//! 
	//!	\param currentTime is a pre-dilated time.
	//! \return the dilated time corresponding to the initial time currentTime
    double warpTime( double currentTime ) const;

// -- static members --

   //!   Static member that constructs an instance and applies
   //!   it to a sequence of Partials. 
   //!   Construct a Dilator using the specified initial and 
   //!   target times, and apply it to a sequence of Partials.
  	//!
	//!	\param   dilate_begin is the beginning of a sequence of Partials to dilate.
	//!	\param   dilate_end is (one-past) the end of a sequence of Partials to dilate.
	//!	\param 	ibegin is the beginning of a sequence of initial, or source,
	//!	         time points.
	//!	\param 	iend is (one-past) the end of a sequence of initial, or
	//!	         source, time points.
	//!	\param 	tbegin is the beginning of a sequence of target time points; 
	//!	         this sequence must be as long as the sequence of initial time
	//!	         point described by ibegin and iend.
	//!
	//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
	//!	only PartialList::const_iterator arguments. Otherwise, this member
	//!   also works for sequences of Markers.
	//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
	//!	only const double * arguments for the times, otherwise, any iterator
	//!   will do..
	//!	
	//!	\sa Dilator::dilate( Partial & p ) const
	//!	\sa Dilator::dilate( Marker & m ) const
#if ! defined(NO_TEMPLATE_MEMBERS)
	template< typename PartialsIter, typename TimeIter1, typename TimeIter2 >
	static 
	void dilate( PartialsIter dilate_begin, PartialsIter dilate_end,
	             TimeIter1 ibegin, TimeIter1 iend, TimeIter2 tbegin  );
#else
    static inline
 	void dilate( PartialList::iterator dilate_begin, 
				 PartialList::iterator dilate_end,
		   		 const double * ibegin, const double * iend, 
				 const double * tbegin  );
#endif

};	//	end of class Dilator


// ---------------------------------------------------------------------------
//	constructor (sequences of time points)
// ---------------------------------------------------------------------------
//!	Construct a new Dilator using a range of initial time points
//!	and a range of target (desired) time points. The client must
//!	ensure that the target range has at least as many elements as
//!	the initial range.
//!	
//!	\param 	ibegin is the beginning of a sequence of initial, or source,
//!	        time points.
//!	\param 	iend is (one-past) the end of a sequence of initial, or
//!	        source, time points.
//!	\param 	tbegin is the beginning of a sequence of target time points; 
//!	        this sequence must be as long as the sequence of initial time
//!	        point described by ibegin and iend.
//!
//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
//!	only const double * arguments.
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter1, typename Iter2>
Dilator::Dilator( Iter1 ibegin, Iter1 iend, Iter2 tbegin )
#else
inline
Dilator::Dilator( const double * ibegin, const double * iend, const double * tbegin )
#endif
{
	while ( ibegin != iend )
	{
		insert( *ibegin++, *tbegin++ );
	}
}

// ---------------------------------------------------------------------------
//	dilate (sequence of Partials or Markers)
// ---------------------------------------------------------------------------
//!	Non-uniformly expand and contract the parameter envelopes of the each
//!	Partial in the specified half-open range according to this Dilator's
//!	stored initial and target (desired) times. 
//!
//!	\param dilate_begin is the beginning of a sequence of Partials to dilate.
//!	\param dilate_end is (one-past) the end of a sequence of Partials to dilate.
//!
//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
//!	only PartialList::const_iterator arguments. Otherwise, this member
//! also works for sequences of Markers.
//!	
//!	\sa Dilator::dilate( Partial & p ) const
//!	\sa Dilator::dilate( Marker & m ) const
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void Dilator::dilate( Iter dilate_begin, Iter dilate_end  ) const
#else
inline
void Dilator::dilate( PartialList::iterator dilate_begin, 
					  PartialList::iterator dilate_end  ) const
#endif
{
	while ( dilate_begin != dilate_end )
	{
		dilate( *(dilate_begin++) );
	}
}

// ---------------------------------------------------------------------------
//	Function call operator (sequence of Partials or Markers)
// ---------------------------------------------------------------------------
//!	Function call operator: same as 
//!	dilate( Iter dilate_begin, Iter dilate_end )
//!
//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
//!	only PartialList::const_iterator arguments. Otherwise, this member
//! also works for sequences of Markers.
//!	
//!	\sa Dilator::dilate( Partial & p ) const
//!	\sa Dilator::dilate( Marker & m ) const
//	 
#if ! defined(NO_TEMPLATE_MEMBERS)
template<typename Iter>
void Dilator::operator() ( Iter dilate_begin, Iter dilate_end  ) const
#else
inline
void Dilator::operator() ( PartialList::iterator dilate_begin, 
						   PartialList::iterator dilate_end ) const
#endif
{ 
	dilate( dilate_begin, dilate_end ); 
}

// ---------------------------------------------------------------------------
//	Function call operator (single Partial)
// ---------------------------------------------------------------------------
//!	Function call operator: same as dilate( Partial & p ).
//!	
//!	\sa Dilator::dilate( Partial & p ) const
//
inline 
void Dilator::operator() ( Partial & p ) const
{ 
	dilate( p ); 
}

// ---------------------------------------------------------------------------
//	Function call operator (single Marker)
// ---------------------------------------------------------------------------
//!	Function call operator: same as dilate( Marker & m ).
//!	
//!	\sa Dilator::dilate( Marker & m ) const
//
inline 
void Dilator::operator() ( Marker & m ) const
{ 
	dilate( m ); 
}

// ---------------------------------------------------------------------------
//	dilate (static)
// ---------------------------------------------------------------------------
//!   Static member that constructs an instance and applies
//!   it to a sequence of Partials. 
//!   Construct a Dilator using the specified initial and 
//!   target times, and apply it to a sequence of Partials.
//!
//!	\param   dilate_begin is the beginning of a sequence of Partials to dilate.
//!	\param   dilate_end is (one-past) the end of a sequence of Partials to dilate.
//!	\param 	ibegin is the beginning of a sequence of initial, or source,
//!	         time points.
//!	\param 	iend is (one-past) the end of a sequence of initial, or
//!	         source, time points.
//!	\param 	tbegin is the beginning of a sequence of target time points; 
//!	         this sequence must be as long as the sequence of initial time
//!	         point described by ibegin and iend.
//!
//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
//!	only PartialList::const_iterator arguments. Otherwise, this member
//!   also works for sequences of Markers.
//!	If compiled with NO_TEMPLATE_MEMBERS defined, this member accepts
//!	only const double * arguments for the times, otherwise, any iterator
//!   will do..
//!	
//!	\sa Dilator::dilate( Partial & p ) const
//!	\sa Dilator::dilate( Marker & m ) const
//
#if ! defined(NO_TEMPLATE_MEMBERS)
template< typename PartialsIter, typename TimeIter1, typename TimeIter2 >
void Dilator::dilate( PartialsIter dilate_begin, PartialsIter dilate_end,
			 		  TimeIter1 ibegin, TimeIter1 iend, TimeIter2 tbegin  )
#else
inline
void Dilator::dilate( PartialList::iterator dilate_begin, 
			 		  PartialList::iterator dilate_end,
			 		  const double * ibegin, const double * iend, 
			 		  const double * tbegin  )
#endif
{ 
  	Dilator instance( ibegin, iend, tbegin );
	instance.dilate( dilate_begin, dilate_end ); 
}

}	//	end of namespace Loris

#endif /* ndef INCLUDE_DILATOR_H */