44 #include "EST_Track.h"
45 #include "EST_track_aux.h"
46 #include "EST_Features.h"
47 #include "EST_error.h"
49 static int match_rf_point(
EST_Track &fz,
int b_start,
int b_stop,
50 int e_start,
int e_stop,
106 op.
set(
"start_limit", 0.1);
107 op.
set(
"stop_limit", 0.1);
108 op.
set(
"range", 0.3);
109 op.
set(
"min_event_duration", 0.03);
116 float start_search, end_search;
122 cout <<
"rfc_recognise\n";
126 int_segment_to_unit(ev, eva);
130 cout <<
"rfc_recognise\n";
135 for (e = ev.
head(); e != 0; e = n)
141 end_search = e->
F(
"end") + op.
F(
"stop_limit");
142 start_search = e->
F(
"start") - op.
F(
"start_limit");
146 cout <<
"start = " << e->
F(
"start") <<
" End "
147 << e->
F(
"end")<< endl;
148 cout <<
"s start = " << start_search <<
" sEnd "
149 << end_search << endl;
153 if (comp_extract(fz, part, start_search, end_search,
154 op.
F(
"min_event_duration")))
155 rf_match(part, *e, op.
F(
"range"));
164 make_int_item(*tmp,
"sil", fz.
t(0), fz.
t(fz.
num_frames() - 1),
172 convert_to_local(ev);
177 ev.
f.
set(
"intonation_style",
"rfc");
181 cout <<
"After RFC analysis\n";
194 static void convert_to_local(
EST_Item *e)
196 if (e->
S(
"rfc.type",
"0") ==
"RISEFALL")
198 e->
set(
"rfc.rise_amp", (e->
F(
"rfc.peak_f0") - e->
F(
"ev.start_f0")));
199 e->
set(
"rfc.rise_dur", (e->
F(
"rfc.peak_pos") - e->
F(
"start")));
200 e->
set(
"rfc.fall_amp", (e->
F(
"rfc.end_f0") - e->
F(
"rfc.peak_f0")));
201 e->
set(
"rfc.fall_dur", (e->
F(
"end") - e->
F(
"rfc.peak_pos")));
202 e->
set(
"ev.f0", e->
F(
"rfc.peak_f0"));
206 e->
A(
"rfc").
remove(
"peak_pos");
211 else if (e->
S(
"rfc.type",
"0") ==
"RISE")
213 e->
set(
"rfc.rise_amp", (e->
F(
"rfc.end_f0") - e->
F(
"ev.start_f0")));
214 e->
set(
"rfc.rise_dur", (e->
F(
"end") - e->
F(
"start")));
215 e->
set(
"rfc.fall_amp", 0.0);
216 e->
set(
"rfc.fall_dur", 0.0);
217 e->
set(
"ev.f0", e->
F(
"rfc.end_f0"));
221 e->
A(
"rfc").
remove(
"peak_pos");
226 else if (e->
S(
"rfc.type",
"0") ==
"FALL")
228 e->
set(
"rfc.rise_amp", 0.0);
229 e->
set(
"rfc.rise_dur", 0.0);
230 e->
set(
"rfc.fall_amp", (e->
F(
"rfc.end_f0") - e->
F(
"ev.start_f0")));
231 e->
set(
"rfc.fall_dur", (e->
F(
"end") - e->
F(
"start")));
232 e->
set(
"ev.f0", e->
F(
"ev.start_f0"));
235 e->
A(
"rfc").
remove(
"peak_pos");
241 e->
set(
"time", (e->
F(
"end") - e->
F(
"rfc.fall_dur")));
248 for (e = ev.
head(); e; e = e->next())
261 ev.
f.
set(
"timing_style",
"event");
267 &end,
float min_length)
275 EST_error(
"Illegal start and end times: %f %f\n", start, end);
285 extract2(fz, start, end, tr_tmp);
288 tr_tmp.rm_trailing_breaks();
300 if ((tr_tmp.
end() - tr_tmp.
start()) < min_length)
302 cout <<
"Contour too small for analysis\n";
322 int longest, s_c, s_l;
323 longest = s_c = s_l = 0;
328 if ((i - s_c) > longest)
330 longest = i - s_c - 1;
338 if ((i - s_c) > longest)
340 longest = i - s_c - 1;
347 extract2(tr_tmp, tr_tmp.
t(s_l), tr_tmp.
t(s_l + longest), part);
349 part.rm_trailing_breaks();
360 if ((fz.
a(i) >= 0.0) && (fz.
a(i + 1) < 0.0))
376 int b_start, b_stop, e_start, e_stop, region;
381 ev.
set(
"start", 0.0);
383 ev.
set(
"rfc", empty);
384 ev.
set(
"ev.start_f0", 0.0);
385 ev.
set(
"rfc.peak_f0", 0.0);
386 ev.
set(
"rfc.peak_pos", 0.0);
389 diff = differentiate(fz);
394 n = zero_cross(diff);
402 region = (int)(range *
float(stop - b_start));
404 region = region > 0 ? region : 1;
406 b_stop = b_start + region;
407 e_start = stop - region;
408 e_stop = stop + region;
410 e_start = (e_start < b_stop)? b_stop : e_start;
414 match_rf_point(fz, b_start, b_stop, e_start, e_stop, start, stop);
417 ev.
set(
"ev.start_f0", fz.
a(start));
418 ev.
set(
"start", fz.
t(start));
426 region = (int)(range *
float(e_stop - b_start));
427 region = region > 0 ? region : 1;
428 e_start = e_stop - region;
433 match_rf_point(fz, b_start, b_stop, e_start, e_stop, start, stop);
439 ev.
set(
"rfc.peak_f0", fz.
a(start));
440 ev.
set(
"rfc.peak_pos", fz.
t(start));
441 ev.
set(
"rfc.end_f0", fz.
a(stop));
443 ev.
set(
"end", fz.
t(stop));
444 ev.
set(
"rfc.type",
"RISEFALL");
464 region = (int)(range *
float(e_stop - b_start));
465 region = region > 0 ? region : 1;
467 b_stop = b_start + region;
468 e_start = e_stop - region;
473 match_rf_point(fz, b_start, b_stop, e_start, e_stop, start, stop);
475 ev.
set(
"start", fz.
t(start));
476 ev.
set(
"ev.start_f0", fz.
a(start));
477 ev.
set(
"rfc.peak_f0", 0.0);
478 ev.
set(
"rfc.peak_pos", 0.0);
480 ev.
set(
"rfc.end_f0", fz.
a(stop));
481 ev.
set(
"end", fz.
t(stop));
486 ev.
set(
"rfc.type",
"RISE");
488 ev.
set(
"rfc.type",
"FALL");
500 for (e = ev.
head(); e; e = e->next())
505 e->
set(
"ev.start_f0", fz.
a(i));
507 e->
set(
"ev.end_f0", fz.
a(i));
518 for (e = ev.
head(); e; e = n)
525 s = e->insert_before();
526 s->
set(
"name",
"phrase_end");
527 s->
set(
"ev.f0", e->
F(
"ev.start_f0"));
528 s->
set(
"time", e->
F(
"start"));
532 s = e->insert_after();
533 s->
set(
"name",
"phrase_start");
534 s->
set(
"ev.f0", e->
F(
"ev.end_f0"));
535 s->
set(
"time", e->
F(
"end"));
540 for (e = ev.
head(); e; e = n)
606 static void make_int_item(
EST_Item &tmp,
607 const EST_String name,
float end,
float start,
608 float start_f0,
float peak_pos,
615 tmp.
set(
"start", start);
617 tmp.
set(
"ev", dummy);
618 tmp.
set(
"ev.start_f0", start_f0);
620 if ((name !=
"sil") && (name !=
"c"))
622 tmp.
set(
"rfc", dummy);
623 tmp.
set(
"rfc.peak_pos", peak_pos);
624 tmp.
set(
"rfc.peak_f0", peak_f0);
625 tmp.
set(
"rfc.pos", 1);
633 float distance = 0.0;
636 for (i = 0; i < num_points; ++i)
638 diff = fz.
a(i + pos) - new_fz.
a(i);
641 distance += (diff * diff);
646 static float weight(
float duration)
657 static int match_rf_point(
EST_Track &fz,
int b_start,
int b_stop,
658 int e_start,
int e_stop,
int &mi,
int &mj)
661 float s_pos, e_pos, s_freq, e_freq, t;
662 float amp, duration, dist, ndist;
663 float min_dist = MAXFLOAT;
670 if ((b_start >= b_stop) || (b_start < 0))
672 cerr <<
"Illegal beginning search region in match_rf_point:" <<
673 b_start <<
"-" << b_stop << endl;
676 if ((e_start >= e_stop) || (e_stop > fz.
num_frames()))
678 cerr <<
"Illegal ending search region in match_rf_point:" <<
679 e_start <<
"-" << e_stop << endl;
683 f_shift = fz.
shift();
686 for (i = b_start; i < b_stop; ++i)
687 for (j = e_start; j < e_stop; ++j)
695 duration = e_pos - s_pos;
696 amp = e_freq - s_freq;
699 for (k = 0; k < length + 1; ++k)
701 t = ((float) k) * f_shift;
702 new_fz.
a(k) = (amp * fncurve(duration, t, 2.0))
706 dist = distance(fz, i, new_fz, length);
707 ndist = dist / (duration * 100.0);
708 ndist *= weight(duration);
710 if (ndist < min_dist)