10-mmsem-minutes.html
45.5 KB
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='en' xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 12 April 2005), see www.w3.org" />
<title>MMSEM XG First Face to face meeting in Amsterdam -- 10 Jul
2006</title>
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/base.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/public.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/2004/02/minutes-style.css" />
<meta content="MMSEM XG First Face to face meeting in Amsterdam"
name="Title" />
<meta content="text/html; charset=us-ascii" http-equiv=
"Content-Type" />
</head>
<body>
<p><a href="http://www.w3.org/"><img src=
"http://www.w3.org/Icons/w3c_home" alt="W3C" border="0" height=
"48" width="72" /></a></p>
<h1>- DRAFT -</h1>
<h1>MMSEM XG First Face to face meeting in Amsterdam</h1>
<h2>10 Jul 2006</h2>
<p><a href=
'http://lists.w3.org/Archives/Public/public-xg-mmsem/2006Jul/0009.html'>
Agenda</a></p>
<p>See also: <a href="http://www.w3.org/2006/07/10-mmsem-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>Jeff_Pan, meeting_room, Vassilis, Chalaschek, JeffP</dd>
<dt>Regrets</dt>
<dt>Chair</dt>
<dd>raphael</dd>
<dt>Scribe</dt>
<dd>jacco2, Giovanni</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">W3C process 101</a></li>
<li><a href="#item02">1. Charter Overview /
Objectives</a></li>
<li><a href="#item03">MMSEM Background and
Demonstrations</a></li>
<li><a href="#item04">Discussion of "Image annotation on
the Semantic Web" note:
http://www.w3.org/2001/sw/BestPractices/MM/image_annotation.html</a></li>
<li><a href="#item05">Discussion of "Semantic Web Image
Annotation Interoperability"</a></li>
</ol>
</li>
<li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />
<div class="meeting">
<p class='phone'> </p>
<p class='phone'> </p>
<p class='irc'><<cite>JeffP</cite>> this will be mmsem
First F2F</p>
<p class='irc'><<cite>JeffP</cite>> what conference is
this?</p>
<p class='irc'><<cite>raphael</cite>> Scribe: jacco2</p>
<p class='phone'>people on IRC: you can connect by phone
too!</p>
<p class='phone'>See phone number in the agenda</p>
<p class='irc'><<cite>pasquale</cite>> sorry, for now i
can only irc</p>
<p class='phone'>Chair opens the meeting and welcomes all
participants</p>
<p class='phone'>start with role call</p>
<p class='phone'>Yioannis, athens, greece</p>
<p class='phone'>, feature extraction</p>
<p class='irc'><<cite>JeffP</cite>> I cannot hear very
good</p>
<p class='phone'>Vassilis, ITI, Greece, research interest
SemWeb technologies and mm annotation</p>
<p class='phone'>Giovanni, DBin project, DBin is p2p metadata
exchange</p>
<p class='phone'>Christian, PhD student, also from Ancona</p>
<p class='phone'>Thomas, Koblenz, also in k-space and aceMedia
- mediator role</p>
<p class='phone'>thierry, DFKI, aslo in k-space. Member of ISO
group on language resources</p>
<p class='phone'>George, CWI, PhD student, also in k-space</p>
<p class='phone'>Lynda, CWI, k-space</p>
<p class='phone'>Jacco, CWI, Semantic Media Interfaces</p>
<p class='phone'>Jeff Pan, chair of XG, semantic web languages,
reasoning</p>
<p class='phone'>Officially, we now have 21 members</p>
<p class='phone'>Vassilis of NTUA is AC Rep for k-space
members</p>
<p class='phone'>Giovanni, membership is pending via Italian
W3C office</p>
<p class='phone'>We also have Susanne Boll as an invited
expert</p>
<p class='irc'><<cite>raphael</cite>> hi Vassilis, do you
plan to join on the phone ?</p>
<p class='irc'><<cite>VassilisTzouv</cite>> Hello all</p>
<p class='irc'><<cite>JeffP</cite>> Hi Vassilis</p>
<p class='irc'><<cite>VassilisTzouv</cite>> Yes I will
join on the phone</p>
<p class='phone'>Vassilis and Yiannis connect by phone &
IRC, have send slides which will be presented later</p>
<p class='irc'><<cite>jacco</cite>> Chair introduces W3C
processes</p>
<p class='irc'><<cite>jacco</cite>> Explains about zakim
and RRSagent: all members, please lookup the short explanations
on the W3C website</p>
<h3 id="item01">W3C process 101</h3>
<p class='irc'><<cite>jacco</cite>> each member will be
asked to scribe</p>
<p class='irc'><<cite>jacco</cite>> we will have
bi-weekly teleconf, which will be announced on the web page and
mailing list</p>
<p class='irc'><<cite>jacco</cite>> public minutes will
be published</p>
<p class='irc'><<cite>JeffP</cite>> <a href=
"http://www.w3.org/2005/Talks/1130-sb-w3c-ac-mangrpt/Overview.html#(15)">
http://www.w3.org/2005/Talks/1130-sb-w3c-ac-mangrpt/Overview.html#(15)</a></p>
<p class='irc'><<cite>jacco</cite>> Chair explains goal
of the W3C incubators.</p>
<p class='irc'><<cite>raphael</cite>> Incubator Activity:
<a href=
"http://www.w3.org/2005/Talks/1130-sb-w3c-ac-mangrpt/Overview.html#(15)">
http://www.w3.org/2005/Talks/1130-sb-w3c-ac-mangrpt/Overview.html#(15)</a></p>
<p class='irc'><<cite>jacco</cite>> Raphael shows slides
of Steve</p>
<p class='irc'><<cite>jacco</cite>> Important: XGs are
light-weight, and will finish within one year</p>
<p class='irc'><<cite>jacco</cite>> Goal is to publish
technical report with advice to W3C about potential
Recommendation track followup</p>
<p class='irc'><<cite>jacco</cite>> We are the second XG
within W3C</p>
<p class='irc'><<cite>jacco</cite>> jeff: xg is new way
to prepare a new activity, with much better infrastructure as
before</p>
<p class='irc'><<cite>jacco</cite>> jeff: OWL was based
on member submission on DAML+OIL, but it took still 2 years to
get the OWL REC out, which is not that much difference</p>
<p class='irc'><<cite>jacco</cite>> With the XG we have a
better infrastructure to do the ground work of the
preparation</p>
<p class='irc'><<cite>jacco</cite>> So later during this
F2F we should discuss if we want to try to setup a Working
Group</p>
<p class='irc'><<cite>jacco</cite>> ... after the charter
of the XG ends</p>
<p class='irc'><<cite>jacco</cite>> Raphael: the Content
Labeling XG was the first XG, labeling content for parental
guidance etc</p>
<p class='irc'><<cite>jacco</cite>> We plan to work
closely with this XG, invite all members to follow the work of
this XG</p>
<p class='irc'><<cite>jacco</cite>> This XG is the second
XG, last week the 3rd XG started on "GEO", geo-tagging etc</p>
<h3 id="item02">1. Charter Overview / Objectives</h3>
<p class='irc'><<cite>jacco</cite>> Raphael shows
charter</p>
<p class='irc'><<cite>jacco</cite>> Explain history of
the MM taskforce of the SWBPD group</p>
<p class='irc'><<cite>jacco</cite>> Goal 1 of this XG:
show how semweb can be used to achieve mm metadata
interoperability</p>
<p class='irc'><<cite>jacco</cite>> Non-goal: create new
MM metadata standards</p>
<p class='irc'><<cite>jacco</cite>> Goal 2: show added
value of formal semantics by describing practical applications
and examples</p>
<p class='irc'><<cite>jacco</cite>> Goal 3: provide best
practices based on the above</p>
<p class='irc'><<cite>jacco</cite>> Open questions: the
modalities do we address, what standards, etc</p>
<p class='irc'><<cite>jacco</cite>> Intro of Massimo: I'm
from CNR Pisa, multimedia understanding, Semantic Web and
XML-based languages</p>
<p class='irc'><<cite>jacco</cite>> Yioannis:W3C lives
too much in its own world, need to talk to other bodies more.
In addition, related standards like mpeg-7 have not yet
finished. So we need to communicate to these bodies</p>
<p class='irc'><<cite>jacco</cite>> So how will this
happen?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: I agree,
best way is to have representatives from these other bodies in
this XG as a member or invited expert</p>
<p class='irc'><<cite>jacco</cite>> But I do not know who
could best represent the MPEG-7 community</p>
<p class='irc'><<cite>jacco</cite>> Yioannis: we could
recommend a view names</p>
<p class='irc'><<cite>jacco</cite>> Yionannis: I think
interoperability is the key issue, we would focus on automatic
annotation</p>
<p class='irc'><<cite>JeffP</cite>> Can people say their
names before they speak please?</p>
<p class='irc'><<cite>jacco</cite>> Vassilis (ITI): I
agree with previous speaker. Not only focus on the RDF-level,
also OWL, Rules or extensions.</p>
<p class='irc'><<cite>jacco</cite>> Modalities: we could
start with images and then try to extend later</p>
<p class='irc'><<cite>jacco</cite>> jeff: agrees with
Vassilis</p>
<p class='irc'><<cite>JeffP</cite>> Jeff: ... and OWL and
rules are also considered in the charter explicitly</p>
<p class='irc'><<cite>jacco</cite>> Raphael: MMTF of the
SWBPD only did images, maybe do this again is not a good
idea</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: Wants to
stress the importance of real use cases, not focus on theory
& formalisation side</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: I've tried
the music-oriented sites, often felt lost. We could find good
use cases in this area. Content-based identification is
important, once we have a URI there is a lot we can do</p>
<p class='irc'><<cite>jacco</cite>> What do we identify?
Melody, wave signal, midi or mp3 file, etc</p>
<p class='irc'><<cite>jacco</cite>> Raphael: what is CDDB
using? Giovanni: its based on a fingerprint of the recording,
not very robust on for example other versions of the same track
on a different album etc</p><a name="action01" id=
"action01"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Giovanni to coordinate write up of a
use case on music [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action01">http://www.w3.org/2006/07/10-mmsem-minutes.html#action01</a>]</p>
<p class='irc'><<cite>jacco</cite>> Christian: Agree with
Giovanni, real use case in a distributed may also need to
address right management</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: not
everybody want all metadatato be open and free</p>
<p class='irc'><<cite>jacco</cite>> Raphael: Does the
group care about rights management?</p>
<p class='irc'><<cite>jacco</cite>> Yionnis: addressing
MPEG-21 is also part of the interoperability issue. Doing music
means we expand from images to audio?</p>
<p class='irc'><<cite>jacco</cite>> Thomas: different use
cases with different modalities</p>
<p class='irc'><<cite>jacco</cite>> SemWeb could be a
good opportunity to also show high-level metadata intergrating
multiple modalities.</p>
<p class='irc'><<cite>jacco</cite>> For example, using
flickr annotations and than connecting it using semweb
technology could be a good basis for a use case</p>
<p class='irc'><<cite>jacco</cite>> Flickr is a good
example to show how easy things can be</p>
<p class='irc'><<cite>jacco</cite>> Thomas: our group is
interested in combining modalities, like image + audio</p>
<p class='irc'><<cite>jacco</cite>> Thierry: I'm not a
specialist on multimedia. Analysis of lyrics or speach
transcripts could be used for this use case</p>
<p class='irc'><<cite>jacco</cite>> Thierry: we could
also look at other projects for good use cases</p>
<p class='irc'><<cite>jacco</cite>> A use case from, for
example, the MESH project, could be on news.</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: MUSCLE is
working on music use cases</p>
<p class='irc'><<cite>jacco</cite>> AXMEDIS is a big
player in this</p>
<p class='irc'><<cite>jacco</cite>> Massimo, could you
say something on MUSCLE</p>
<p class='irc'><<cite>jacco</cite>> ?</p>
<p class='irc'><<cite>giovannit</cite>> <a href=
"http://www.axmedis.org/">http://www.axmedis.org/</a></p>
<p class='irc'><<cite>jacco</cite>> within the MPEG-7
standard actually using the description schemes is really
difficult</p><a name="action02" id="action02"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> thierry to write up limitations of
MPEG-7 description schemes [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action02">http://www.w3.org/2006/07/10-mmsem-minutes.html#action02</a>]</p>
<p class='irc'><<cite>jacco</cite>> George: also wants to
focus on real use cases, like the tagging example mentioned by
Thomas</p>
<p class='irc'><<cite>Massimo</cite>> in MUSCLE we are
developing an infrastructure to manage multimedia metadata
(images, audio, video). We started using the MPEG-7
standard.</p>
<p class='irc'><<cite>JeffP</cite>> shall we have a use
case for tagging?</p>
<p class='irc'><<cite>raphael</cite>> Massimo, do you
have concrete use cases written in MUSCLE ?</p>
<p class='irc'><<cite>raphael</cite>> About MUSIC ?</p>
<p class='irc'><<cite>jacco</cite>> george: blogging
could be another use case, with different modalities</p>
<p class='irc'><<cite>Massimo</cite>> I think we should
remember the use cases of the Semantic Web: eg: catalogs of
personal photos,</p>
<p class='irc'><<cite>Massimo</cite>> systems able to
recognize persons' faces</p>
<p class='irc'><<cite>jacco</cite>> george: DRM: I can
see the concern, but it is a hard issue that will not be solved
by this group</p>
<p class='irc'><<cite>Massimo</cite>> and then a thing we
haven't still seen that is about processed needed to obtain
multimedia objects</p>
<p class='irc'><<cite>jacco</cite>> giovannni: need to
align social/human tagging with formal/machine tagging</p>
<p class='irc'><<cite>jacco</cite>> Raphael: was a
workshop on this topic at WWW conference, this community starts
to pick this up.</p>
<p class='irc'><<cite>lynda</cite>> jacco: images too
limited, so include other modalities</p>
<p class='irc'><<cite>lynda</cite>> bridge gap between
formal ontologies and tagging</p>
<p class='irc'><<cite>Massimo</cite>> about music
thinking of the semweb use case the personal catalog and the
catalog of groups (sorry i can't hear i don't want to break who
is talking)</p><a name="action03" id="action03"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> george to write up a use case around
tagging [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action03">http://www.w3.org/2006/07/10-mmsem-minutes.html#action03</a>]</p>
<p class='irc'><<cite>jacco</cite>> raphael: summary:
focus on practical use cases like music combined with lyrics
analysis and lower level feature extraction, use case on social
tagging and semantic web</p>
<p class='irc'><<cite>jacco</cite>> Yioannis: our
features are not limited to the ones defined by MPEG-7</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: when you
use additional features, there is no incentive to go through
all the pain of a standardized serialization, becuase there is
no aother tool which can read it anyway</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: this is
related to the fact that MPEG-7 semantics is described in
informal English only, not machine readable version.</p>
<p class='irc'><<cite>jacco</cite>> SemWeb approach could
help here</p>
<p class='irc'><<cite>giovannit</cite>> jacco: well not
really english only , there is structuring among the
decriptors, but the meaning of each one is then in english</p>
<p class='irc'><<cite>jacco</cite>> Yioannis:mpeg-7 is
discussing support transformation matrices to transform
labels</p>
<p class='irc'><<cite>raphael</cite>> Nikolaos_Simou is
Vassilis</p>
<p class='irc'><<cite>jacco</cite>> Vasilis: want to
raise the question if we are interested in ontologicalization
of low level features?</p>
<p class='irc'><<cite>VassilisTzouv</cite>>
Nikolaos_Simou is Vassilis</p>
<p class='irc'><<cite>jacco</cite>> Raphael: for what do
you need a semantic interpretation of the low level
descriptors?</p>
<p class='irc'><<cite>jacco</cite>> yioannis: we need
both numeric and symbolic features in various
levels</p><a name="action04" id="action04"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Yioanis to write up use case showing
the need for semantic interpretation of low level features
[recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action04">http://www.w3.org/2006/07/10-mmsem-minutes.html#action04</a>]</p>
<p class='irc'><<cite>jacco</cite>> yioannis: in the
"fused" model all modalities are used to improve the automatic
annotation</p><a name="action05" id="action05"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Raphael to write up use case in the
news domain [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action05">http://www.w3.org/2006/07/10-mmsem-minutes.html#action05</a>]</p>
<p class='irc'><<cite>jacco</cite>> IPTC standardizes
NewsML, now doing version 2 of NewsML</p>
<p class='irc'><<cite>jacco</cite>> CWI works with IPTC
in the context of K-Space</p>
<p class='irc'><<cite>jacco</cite>> NewsML will likely be
in the spirit of RDF, but based on an XML syntax</p>
<p class='irc'><<cite>jacco</cite>> A representative of
IPTC is expected to join the XG in the near future</p>
<p class='irc'><<cite>jacco</cite>> Raphael: there are
different sources of metadata: from the camera, from the
photographer's (manual) annotation tool, news agency will add
more metadata, etc</p>
<p class='irc'><<cite>Massimo</cite>> (trying not to
break the conversation..) i think we have to remember two more
things about use cases: (1) the "Image annotation on the
Semantic Web" note (<a href=
"http://www.w3.org/2001/sw/BestPractices/MM/image_annotation_galway.html)">http://www.w3.org/2001/sw/BestPractices/MM/image_annotation_galway.html)</a>,
Jacco is one of the editors and (2) Algorithms (processed) to
obtain multimedia objects</p>
<p class='irc'><<cite>jacco</cite>> URL of last version
of the note is at <a href=
"http://www.w3.org/2001/sw/BestPractices/MM/image_annotation.html">
http://www.w3.org/2001/sw/BestPractices/MM/image_annotation.html</a></p>
<p class='irc'><<cite>Massimo</cite>> (...processeS
/)</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: we could
think about form interfaces generated by local event
ontologies</p>
<p class='irc'><<cite>jacco</cite>> massimo, what do you
mean with 'obtain multimedia objects'? Object tracking &
recognition?</p>
<p class='irc'><<cite>Massimo</cite>> i think there could
be systems able to reconstruct multimedia objects</p>
<p class='irc'><<cite>jacco</cite>> Raphael: should we
provide some demo web service for mm annotation?</p>
<p class='irc'><<cite>Massimo</cite>> a set of steps to
re-obtain an object</p>
<p class='irc'><<cite>jacco</cite>> Giovanni:, yes, if we
can pinpoint to a basic feature like identification, that
crosses all use cases</p>
<p class='irc'><<cite>Massimo</cite>> thinking of images
for example if an image is obtained after having applied some
algorithms then we can repeat the same steps to do it again</p>
<p class='irc'><<cite>jacco</cite>> Maybe there will be
an XG on identification as a followup of the Workshop at
WWW2006 on this topic</p>
<p class='irc'><<cite>jacco</cite>> Raphael: Repeats
things said by Massimo on IRC.</p>
<p class='irc'><<cite>jacco</cite>> Notes that the "Image
annotation on the Semantic Web" will be discussed by Jacco in
the afternoon</p>
<p class='irc'><<cite>jacco</cite>> Vasilis: I think
massimo refers to the process of analyzing the content
automatically</p>
<p class='irc'><<cite>jacco</cite>> ?</p>
<p class='irc'><<cite>Massimo</cite>> to analyze and to
reproduce the content</p>
<p class='irc'><<cite>jacco</cite>> For example: To
recognize this feature, you should apply this process</p>
<p class='irc'><<cite>jacco</cite>> Massimo, can you
explain about "reproduce the content"</p>
<p class='irc'><<cite>jacco</cite>> ?</p>
<p class='irc'><<cite>jacco</cite>> Is this a topic in
Muscle?</p>
<p class='irc'><<cite>Massimo</cite>> yes in Muscle and
in the ace Media</p>
<p class='irc'><<cite>Massimo</cite>> (the call for a
common multimedia ontology(</p>
<p class='irc'><<cite>jacco</cite>> Thierry: Raphael,
what is the role of low level features in your NewsML
scenario?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: Currently
none...</p>
<p class='irc'><<cite>jacco</cite>> Massimo, could you
write up something about the need for being able to reproducing
the content? Could I give you an action point?</p>
<p class='irc'><<cite>Massimo</cite>> ok, i'm writing it
give me some minutes</p>
<p class='irc'><<cite>jacco</cite>> there is no need to
hurry :-)</p>
<p class='irc'><<cite>Massimo</cite>> :-)</p>
<p class='irc'><<cite>JeffP</cite>> Massimo, for the
record, could you send to the public list please?</p><a name=
"action06" id="action06"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Massimo to write up use case on
analysis and reproducing content [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action06">http://www.w3.org/2006/07/10-mmsem-minutes.html#action06</a>]</p>
<p class='irc'><<cite>Massimo</cite>> ok</p>
<p class='irc'><<cite>JeffP</cite>> thanks</p>
<p class='irc'><<cite>jacco</cite>> Raphael: Mentioned
that this XG will focus on metadata interoperability, where
k-space is doing work on combining low level features</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: are we
considering cross modality interoperability?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: yes, we
discussed this in the beginning of the meeting</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: I'm not
sure this is in scope for the 1st deliverable?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: We have not
decided about what documents and deliverables we will
produce</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: if it still
on the metadata level, it is ok</p>
<p class='irc'><<cite>jacco</cite>> Raphael: summary of
morning session: people have shown interest on practical use
cases on different modalities and domains, 6 action points to
write up use cases</p>
<p class='irc'><<cite>jacco</cite>> Raphael: use cases
will also look at the way RDF, OWL, rules etc will be used to
solve the use case problem</p>
<p class='irc'><<cite>jacco</cite>> Now first lunch,
after lunch we well have time for some demonstrations, after
coffee break more discussion about the deliverables of the
XG</p>
<p class='irc'><<cite>jacco</cite>> Lunch break!</p>
<h3 id="item03">MMSEM Background and Demonstrations</h3>
<p class='irc'><<cite>raphael</cite>> ??P0 is
meeting_room</p>
<p class='irc'><<cite>giovannit</cite>> jeff: fine with
me to start again</p>
<p class='irc'><<cite>jacco</cite>> scribe: Giovanni</p>
<p class='irc'><<cite>giovannit</cite>> (practicing the
scribing..)</p>
<p class='irc'><<cite>jacco</cite>> scribenick:
giovannit</p>
<p class='phone'>i'll attempt my best (-:</p>
<p class='phone'><cite>raphael:</cite> 10 minute per person
presentation</p>
<p class='irc'><<cite>JeffP</cite>> Are the slides
available online?</p>
<p class='irc'><<cite>jacco</cite>> jeff, we will make
the slides available asap</p>
<p class='irc'><<cite>JeffP</cite>> thanks!</p>
<p class='irc'><<cite>jacco</cite>> Jacco show demo at
<a href=
"http://e-culture.multimedian.nl/demo/search">http://e-culture.multimedian.nl/demo/search</a></p>
<p class='phone'>ecoluter applications: converted metadata of a
few museums into rdf and seen how far we get without doing
heavy weight alignment</p>
<p class='irc'><<cite>raphael</cite>> All the slides
shwon will be at: <a href=
"http://homepages.cwi.nl/~troncy/tmp/W3C/">http://homepages.cwi.nl/~troncy/tmp/W3C/</a></p>
<p class='irc'><<cite>raphael</cite>> <a href=
"http://homepages.cwi.nl/~troncy/tmp/W3C/BOEMIE_MMSEM_100706.ppt">
http://homepages.cwi.nl/~troncy/tmp/W3C/BOEMIE_MMSEM_100706.ppt</a></p>
<p class='phone'>jaccos'd demo shows a full text search which
works recursively on the rdf graph</p>
<p class='phone'>basically resources are collected starting
from those which have a literal attached matching the query, a
number of euristics and settings enable meaningful rating and
limiting of the end result</p>
<p class='phone'>the whole structure works also fine when
generic dataset is loaded, providing an ontology based
navigations of the instances and visualization of related
metadata. Cool ajax makes it apparently very responsive</p>
<p class='phone'>the work is powered by swi prolog. Jacco says
they tried doing this in sparql but the expressivity is really
not sufficient for the needs of the algorithms used here.</p>
<p class='phone'>Ioannis presenting now</p>
<p class='phone'>presentation introduces ellogon <a href=
"http://www.ellogon.org">http://www.ellogon.org</a> a general
purpose language engineering platform</p>
<p class='phone'><cite>CIL:</cite> a computational intelligence
laboratory, applications are shown in the area of OCR , shape
based retrieval, human tracking</p>
<p class='phone'>violence detection</p>
<p class='phone'>now presenting the BOEMIE project</p>
<p class='phone'>low level methodologies are improoving but
high level annotation extraction is still difficult, the use of
ontologies to drive the information extraction process seem
very interesting</p>
<p class='irc'><<cite>jacco</cite>> BOEMIE is, and other
slides will be, published at <a href=
"http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/">
http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/</a></p>
<p class='phone'>Among the aspects involved in this project are
semantically annotated maps, evolving ontologies and fusion of
different aspects of multimedia metadata</p>
<p class='phone'>a use case/query is presented merging all the
aspects covered by the project.</p>
<p class='phone'><cite>raphael:</cite> there are other EU
proejcts which have similar goals ,what ar ethe
differences?</p>
<p class='phone'><cite>ioannis:</cite> BOEMIE is concerned with
multimodal metadata , to the best of my knowledge there is not
much overlap with the other projects</p>
<p class='phone'>question: at which level is the fusion
actually going to happen</p>
<p class='phone'><cite>ioannis:</cite> the fusion is going to
be supported by reasoning. Mid level concepts will be
constructed and reasoning mechanism will take the decisions
about the high level concepts<br />
... another novel concept is that the semantic extraction is
knowledge driven, using an ontology</p>
<p class='phone'>vassilis presenting</p>
<p class='phone'>toward a common multimedia ontology framework:
initiative started a few months ago , a framework for
collecting existing metadata knowledge reppresentation , an
approach for harmonization..</p>
<p class='phone'><a href=
"http://www.acemedia.org/aceMedia/reference/Multimedia_ontology/index.html">
http://www.acemedia.org/aceMedia/reference/Multimedia_ontology/index.html</a></p>
<p class='phone'>In the first phase of this initiative, a
number of requirements were collected</p>
<p class='phone'>reasoning support needs rules and DL based
methoodologies but also uncertainty and fuzzyness</p>
<p class='phone'>modularization is agreed to be an important
feature. Smaller ontologies which are reusable, specific and
interoperable</p>
<p class='phone'>there is the need of a upper ontology
"merging" or "harmonization". In general some practical way for
interoperability since people are using different ones.</p>
<p class='phone'>a semi automatic image annotation tool is
shown. Automatic image segmentation helps a human operator to
associate ontology labels (shown as a tree)</p>
<p class='irc'><<cite>Massimo</cite>> about the possible
use case on algorithms..</p>
<p class='irc'><<cite>Massimo</cite>> Currently we have
sets of tools to extract features from multimedia objects:</p>
<p class='irc'><<cite>Massimo</cite>> a set of rules can
be defined able to establish which tools could be</p>
<p class='irc'><<cite>Massimo</cite>> combined and how
(e.g. put in a pipeline).</p>
<p class='irc'><<cite>Massimo</cite>> Considering for
example image understanding problems (e.g. segmentation,</p>
<p class='irc'><<cite>Massimo</cite>> analysis, ...),</p>
<p class='irc'><<cite>Massimo</cite>> a thesaurus
containing related concepts and algorithm could be thought
of.</p>
<p class='irc'><<cite>Massimo</cite>> It would important
to represent features on how metadata could be</p>
<p class='irc'><<cite>Massimo</cite>> extracted so that
it could be used at a higher level</p>
<p class='irc'><<cite>Massimo</cite>> for images and
multimedia information handling in general.</p>
<p class='irc'><<cite>Massimo</cite>> Another important
feature would be to take trace of how a specific</p>
<p class='irc'><<cite>Massimo</cite>> result has been
obtained starting from a particular input.</p>
<p class='irc'><<cite>Massimo</cite>> A specific case of
image elaboration:</p>
<p class='irc'><<cite>Massimo</cite>> it is necessary to
apply to the image a series of algorithms to</p>
<p class='irc'><<cite>Massimo</cite>> calculate a
property (region shapes, color distribution)</p>
<p class='irc'><<cite>Massimo</cite>> The chain of
algorithms defines a procedure that resolve the given
problem.</p>
<p class='irc'><<cite>Massimo</cite>> It would be
interesting to 'store' the procedure - as an ordered set of</p>
<p class='irc'><<cite>Massimo</cite>> algorithms - to add
'knowledge'</p>
<p class='irc'><<cite>Massimo</cite>> to a system for
interpretation and analysis.</p>
<p class='irc'><<cite>Massimo</cite>> Once stored this
procedure the knowledge increases and another problem</p>
<p class='irc'><<cite>Massimo</cite>> could be resolved
applying the procedures already inserted.</p>
<p class='irc'><<cite>Massimo</cite>> Finally, this
knowledge could be codified using an ontology that merges</p>
<p class='irc'><<cite>Massimo</cite>> procedures and
problems.</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: what about
a formal cooperation between this XG and the requirements work
started by aceMedia</p>
<p class='irc'><<cite>jacco</cite>> ?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: yes, we
will. Yiannis will become a member.</p>
<p class='irc'><<cite>jacco</cite>> Vassilis of NTUA
presenting slides at <a href=
"http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/IVML.profile.2006.06.ppt">
http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/IVML.profile.2006.06.ppt</a>
via the telephone</p>
<p class='irc'><<cite>jacco</cite>> Yannis presenting
slides at <a href=
"http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/IVML.background.2006.06.ppt">
http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/IVML.background.2006.06.ppt</a></p>
<p class='phone'>Yannis speaking (NTUA) analisys of image and
video content for automatic annotaion. A tool is shown for
automatic segmentation, and manual region merging</p>
<p class='irc'><<cite>jacco</cite>> me: hi Chris</p>
<p class='irc'><<cite>VassilisTzouv</cite>> Hi chris</p>
<p class='irc'><<cite>chalaschek</cite>> Hi guys...time
difference is quite difficult for me :(</p>
<p class='irc'><<cite>JeffP</cite>> Hi Chris</p>
<p class='irc'><<cite>raphael</cite>> hi Chris, welcome
and thx for joining</p>
<p class='irc'><<cite>VassilisTzouv</cite>> what time is
now in maryland?</p>
<p class='irc'><<cite>chalaschek</cite>> 9:45am</p>
<p class='irc'><<cite>chalaschek</cite>> Are you guys on
break now?</p>
<p class='irc'><<cite>jacco</cite>> Show coffee break,
start again in 5 minutes with Thomas presentation and DBin</p>
<p class='irc'><<cite>jacco</cite>> Thomas presenting
<a href=
"http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/iswebAtMMSEM.pdf">
http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/iswebAtMMSEM.pdf</a></p>
<p class='irc'><<cite>jacco</cite>> giovanni presenting
slides, will put online later</p>
<p class='irc'><<cite>JeffP</cite>> ok</p>
<p class='irc'><<cite>jacco</cite>> slides are on
distributed man/macine cooperative mm annotation</p>
<h3 id="item04">Discussion of "Image annotation on the Semantic
Web" note: <a href=
"http://www.w3.org/2001/sw/BestPractices/MM/image_annotation.html">
http://www.w3.org/2001/sw/BestPractices/MM/image_annotation.html</a></h3>
<p class='phone'>jacco gives an over view of the semantic web
best practices and deployment working group</p>
<p class='irc'><<cite>raphael</cite>> <a href=
"http://www.w3.org/2001/sw/BestPractices/">http://www.w3.org/2001/sw/BestPractices/</a></p><a name="action07"
id="action07"></a>
<p class='irc'><<cite>raphael</cite>>
<strong>ACTION:</strong> ALL give comments on the "Image
annotation on the Semantic Web" Working Draft [recorded in
<a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action07">http://www.w3.org/2006/07/10-mmsem-minutes.html#action07</a>]</p>
<p class='irc'><<cite>raphael</cite>> The deadline for
the comments are 24/07/2006 !</p>
<p class='irc'><<cite>raphael</cite>> schedule: finish
this draft and get it published as a Working Group Note by
SWBPD in the summer</p>
<p class='irc'><<cite>raphael</cite>> give your comments
now or never :-)</p>
<p class='irc'><<cite>raphael</cite>> Maintain the
resources pages: Overview, Tools, Vocabularies</p>
<p class='irc'><<cite>raphael</cite>> In charge of this
XG !</p>
<p class='irc'><<cite>jacco</cite>> raphael mentions DOAP
as an example of things we could do</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: what about
a wiki?</p><a name="action08" id="action08"></a>
<p class='irc'><<cite>raphael</cite>>
<strong>ACTION:</strong> raphael to see if the W3C wiki can be
used to maintain these pages [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action08">http://www.w3.org/2006/07/10-mmsem-minutes.html#action08</a>]</p>
<p class='irc'><<cite>raphael</cite>> Giovanni volunteer
these pages</p>
<h3 id="item05">Discussion of "Semantic Web Image Annotation
Interoperability"</h3>
<p class='irc'><<cite>raphael</cite>> Jacco: this group
should explore what is there and what could be improved</p>
<p class='irc'><<cite>raphael</cite>> ... W3C is
concerned about what remains to be done in the multimedia
domain</p>
<p class='irc'><<cite>raphael</cite>> ... needs for more
industrial involvent</p>
<p class='phone'>jacco says w3c is somehow puzzled about
multimedia, traditionally being an ISO o MPEG-7 topic, but the
topic of multimedia semantics is so clearly connected with the
SW activity</p>
<p class='phone'>so w3c should probably do even more</p>
<p class='irc'><<cite>jacco</cite>> giovanni: metric of
what the advantage of using the semantic web is might also
involve just lines of code, not only performance etc</p>
<p class='irc'><<cite>jacco</cite>> Raphael: maybe
interoperability deliverable should also be centered around
clear use cases, not around the standards as it is now</p>
<p class='irc'><<cite>jacco</cite>> jeff: are we talking
about the deliverables in the charter?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: yes</p>
<p class='irc'><<cite>jacco</cite>> Raphael: I'm not sure
yet how many deliverables we are going to produce and it what
order</p>
<p class='irc'><<cite>jacco</cite>> Raphael: The proposal
includes to broaden the scope to other modalities, but focus on
use cases</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: I agree to
start from use cases, they do the same in RIF</p>
<p class='irc'><<cite>jacco</cite>> giovanni: list of
things we can do (semi) automatically, with some rating on how
reliable this is</p>
<p class='irc'><<cite>Massimo</cite>> i agree to Vassilis
starting from use cases</p>
<p class='irc'><<cite>jacco</cite>> so we know when to
connect for example to social tagging for things we cannot do
automatic</p>
<p class='irc'><<cite>jacco</cite>> Ioannis: I think it
is better to start from the use cases</p>
<p class='irc'><<cite>jacco</cite>> Giovanni: but the two
are very similar</p>
<p class='irc'><<cite>jacco</cite>> For example, if you
have a music scenario, with a request for "similar" music, what
do you mean by similar and what types of similarity can you do
automatically?</p>
<p class='irc'><<cite>jacco</cite>> Ioannis: but is a
very broad question, use cases might focus discussion</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: what is the
focus? interoperability or the reliability of the extracted
metadata?</p>
<p class='irc'><<cite>jacco</cite>> Ioannis: stick to the
existing use cases of the image annotation draft</p>
<p class='irc'><<cite>jacco</cite>> Jacco: I would like
to stick to the use cases discussed in the morning</p>
<p class='irc'><<cite>jacco</cite>> Raphael: we will
discuss deadlines on the action points tomorrow</p>
<p class='irc'><<cite>jacco</cite>> for use cases
discussed in the morning, see action points at <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#ActionSummary">
http://www.w3.org/2006/07/10-mmsem-minutes.html#ActionSummary</a></p>
<p class='irc'><<cite>JeffP</cite>>
Restaurant-Café In de Waag, Nieuwmarkt 4, 1012 CR
Amsterdam</p>
<p class='irc'><<cite>chalaschek</cite>> enjoy dinner
everyone</p>
<p class='irc'><<cite>Massimo</cite>> enjoy dinner and
Amsterdam everyone !!! "see" you tomorrow</p>
<p class='irc'><<cite>pasquale</cite>> ciao</p>
</div>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> ALL give comments
on the "Image annotation on the Semantic Web" Working Draft
[recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action07">http://www.w3.org/2006/07/10-mmsem-minutes.html#action07</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> george to write
up a use case around tagging [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action03">http://www.w3.org/2006/07/10-mmsem-minutes.html#action03</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Giovanni to
coordinate write up of a use case on music [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action01">http://www.w3.org/2006/07/10-mmsem-minutes.html#action01</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Massimo to write
up use case on analysis and reproducing content [recorded in
<a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action06">http://www.w3.org/2006/07/10-mmsem-minutes.html#action06</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> raphael to see if
the W3C wiki can be used to maintain these pages [recorded in
<a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action08">http://www.w3.org/2006/07/10-mmsem-minutes.html#action08</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Raphael to write
up use case in the news domain [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action05">http://www.w3.org/2006/07/10-mmsem-minutes.html#action05</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> thierry to write
up limitations of MPEG-7 description schemes [recorded in
<a href="http://www.w3.org/2006/07/10-mmsem-minutes.html#action02">
http://www.w3.org/2006/07/10-mmsem-minutes.html#action02</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Yioanis to write
up use case showing the need for semantic interpretation of low
level features [recorded in <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html#action04">http://www.w3.org/2006/07/10-mmsem-minutes.html#action04</a>]<br />
<br />
[End of minutes]<br />
<hr />
<address>
Minutes formatted by David Booth's <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> version 1.127 (<a href=
"http://dev.w3.org/cvsweb/2002/scribe/">CVS log</a>)<br />
$Date: 2006/07/10 15:39:05 $
</address>
<div class="diagnostics">
<hr />
<h2>Scribe.perl diagnostic output</h2>[Delete this section
before finalizing the minutes.]<br />
<pre>
This is scribe.perl Revision: 1.127 of Date: 2005/08/16 15:12:03
Check for newer version at <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/">http://dev.w3.org/cvsweb/~checkout~/2002/scribe/</a>
Guessing input format: RRSAgent_Text_Format (score 1.00)
Succeeded: s/Christioan/Christian/
Succeeded: s/Pann/Pan/
Succeeded: s/Suzanne/Susanne/
Succeeded: s/Wnats/Wants/
Succeeded: s/suse/use/
Succeeded: s/agood/a good/
Succeeded: s/on/in/
Succeeded: s/Noe/Now/
Succeeded: s/musiums/museums/
Succeeded: s/alightment/alignment/
Succeeded: s/projects/project/
Succeeded: s/vassalis/vassilis/
Succeeded: s/iannis/Yannis/
Succeeded: s/Yiannis/Yannis/
Succeeded: s/involvmen/involvent/
Succeeded: s/tradeitionally/traditionally/
Found Scribe: jacco2
Inferring ScribeNick: jacco2
WARNING: No scribe lines found matching previous ScribeNick pattern: <giovannit> ...
Found Scribe: Giovanni
Found ScribeNick: giovannit
Scribes: jacco2, Giovanni
ScribeNicks: giovannit, jacco2
WARNING: Replacing list of attendees.
Old list: Jeff_Pan meeting_room Yannis massimo Vassilis
New list: Jeff_Pan meeting_room Vassilis Chalaschek JeffP
Default Present: Jeff_Pan, meeting_room, Vassilis, Chalaschek, JeffP
Present: Jeff_Pan meeting_room Vassilis Chalaschek JeffP
Agenda: <a href=
"http://lists.w3.org/Archives/Public/public-xg-mmsem/2006Jul/0009.html">http://lists.w3.org/Archives/Public/public-xg-mmsem/2006Jul/0009.html</a>
Got date from IRC log name: 10 Jul 2006
Guessing minutes URL: <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html">http://www.w3.org/2006/07/10-mmsem-minutes.html</a>
People with action items: all george giovanni massimo raphael thierry yioanis
WARNING: Input appears to use implicit continuation lines.
You may need the "-implicitContinuations" option.
</pre>[End of <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> diagnostic output]
</div>
</body>
</html>