11-mmsem-minutes.html
36.4 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
<!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>W3C Multimedia Semantics Incubator Group face to face
meeting, Amsterdam, Day 2 -- 11 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=
"W3C Multimedia Semantics Incubator Group face to face meeting, Amsterdam, Day 2"
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>W3C Multimedia Semantics Incubator Group face to face
meeting, Amsterdam, Day 2</h1>
<h2>11 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/11-mmsem-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>Ioannias, Vasileios, VassilisThomas, Raphael, Patrizia,
George, Lynda, Jacco, Giovanni, Christian, Jeff, Pasquale,
Alessio, Massimo, Roberto, Chris</dd>
<dt>Regrets</dt>
<dd>SusanneBoll</dd>
<dt>Chair</dt>
<dd>Raphael</dd>
<dt>Scribe</dt>
<dd>Thomas, anadiotis, jacco</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">Demos by Patrizia &
Giovanni</a></li>
<li><a href="#item02">Multimedia Annotation Exercise
Session</a></li>
<li><a href="#item03">MMSem XG roadmap</a></li>
<li><a href="#item04">next f2f</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>
<h3 id="item01">Demos by Patrizia & Giovanni</h3>
<p class='irc'><<cite>jacco</cite>> scribe: Thomas</p>
<p class='irc'><<cite>alessio</cite>> hi all</p>
<p class='irc'><<cite>JeffP</cite>> Hi alessio</p>
<p class='irc'><<cite>pasquale</cite>> hi all, from
Naples, Italy</p>
<p class='irc'><<cite>JeffP</cite>> are the slides
online?</p>
<p class='irc'><<cite>jacco</cite>> participants:
Ioannias, Vasileios, VassilisThomas, Raphael, Patrizia, George,
Lynda, Jacco, Giovanni, Christian, Jeff, Pasquale, Alessio,
Massimo</p>
<p class='irc'><<cite>Massimo</cite>> hi all</p>
<p class='irc'><<cite>JeffP</cite>> Hi Massimo</p>
<p class='irc'><<cite>jacco</cite>> Patrizia presenting
slides at <a href=
"http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/mmsem-member-presentation-pat3.ppt">
http://www.w3.org/2005/Incubator/mmsem/meetings/f2f-amsterdam/mmsem-member-presentation-pat3.ppt</a></p>
<p class='irc'><<cite>jacco</cite>> Patrizia explaining
links with MUSCLE, mm ontology requirements effort etc</p>
<p class='phone'>Patrizia explains the 4M (MultiMedia Metadata
Management) Infrastructure</p>
<p class='irc'><<cite>vasileios</cite>> massimo, which
software do you use for the extraction of MPEG-7
descriptors?</p>
<p class='irc'><<cite>JeffP</cite>> Hi Massimo: Yes, the
irc log is public, we can either edit the minutes later to
ensure the context of your texts are properly specified, or we
can send it to the mailing list so that we don't have to dig it
out from the minutes later.</p>
<p class='irc'><<cite>Massimo</cite>> we have extended
emir and mpeg-7 encoder</p>
<p class='irc'><<cite>jacco</cite>> rssagent, pointer</p>
<p class='irc'><<cite>jacco</cite>> massimo, see above
for the log</p>
<p class='irc'><<cite>Massimo</cite>> Hi Jeff/Jacco,
ok</p>
<p class='irc'><<cite>jacco</cite>> Other resources,
slides, minutes etc at <a href=
"http://www.w3.org/2005/Incubator/mmsem/#Meetings">http://www.w3.org/2005/Incubator/mmsem/#Meetings</a></p>
<p class='phone'>Raphael asking Patrizia: can you give an
example of how to use the Algorithms Thesaurus?</p>
<p class='phone'><cite>Patrizia:</cite> Algorithms Thesaurus
used to establish provenance information<br />
... ... to define formal processes that include the algorithms
used</p>
<p class='irc'><<cite>jacco</cite>> jeff asks about the
expressive power wrt swrl and owl that patrizia needs</p>
<p class='irc'><<cite>JeffP</cite>> jeff: what expressive
power do you need from owl and swrl</p>
<p class='irc'><<cite>jacco</cite>> Patrizia: not thought
very deeply about this, but we need some formal way to express
rules</p>
<p class='phone'>there is not yet a schedule for when the work
on the algorithms ontology will be finished</p>
<p class='irc'><<cite>IoannisPratikakis</cite>> A
question to Massimo:: Can you give an example of the existing
relations in the Algorithms ontology ?</p>
<p class='irc'><<cite>Massimo</cite>> we thought of a
sort of definition on how algorithms can be combined
together</p>
<p class='irc'><<cite>Massimo</cite>> on the base of the
multimedia object, the problem and the possible solutions</p>
<p class='irc'><<cite>jacco</cite>> jeff: asks what kind
of rules you need, for example, do you need disjunction in the
head, or do you need the vocabulary of the ontology in the
rules</p>
<p class='irc'><<cite>Massimo</cite>> an example (thought
now): suppose we need to obtain the contours of objects in an
image and locate salient features (more specifically, how it is
possible to extract features and locate a fracture on a Xray
image)</p>
<p class='irc'><<cite>jacco</cite>> Patrizia: not sure,
but we assume the rules are built on top of the ontology</p>
<p class='irc'><<cite>jacco</cite>> jeff: what are the
rules used for?</p>
<p class='irc'><<cite>jacco</cite>> Patrizia: I'm not
sure yet: we've just started</p>
<p class='phone'>Giovanni presents DBin, on the DBin website
there is a screen demo to follow</p>
<p class='irc'><<cite>jacco</cite>> DBin: <a href=
"http://dbin.org">http://dbin.org</a></p>
<p class='phone'>DBin provides brainlets: environments for
specific data/tasks that customize the user interface</p>
<p class='phone'><cite>Patrizia:</cite> can people modify the
ontology?</p>
<p class='phone'><cite>Giovanni:</cite> creators of brainlets
define the ontologies, you can install/deinstall ontologies</p>
<p class='phone'><cite>Raphael:</cite> please show how to
annotate a photo</p>
<p class='phone'><cite>Giovanni:</cite> you can use any
property given by the ontologies of the brainlet to add
annotations to resources</p>
<p class='irc'><<cite>JeffP</cite>> -meeting_room offline
...</p>
<p class='irc'><<cite>jacco</cite>> we're calling back in
...</p>
<p class='irc'><<cite>JeffP</cite>> ok</p>
<p class='irc'><<cite>VassilisT</cite>> nice</p>
<p class='irc'><<cite>jacco</cite>> Having short coffee
break</p>
<p class='irc'><<cite>VassilisT</cite>> ok</p>
<h3 id="item02">Multimedia Annotation Exercise Session</h3>
<p class='irc'><<cite>jacco</cite>> Raphael explains set
up of the annotation session.</p>
<p class='irc'><<cite>Jeff</cite>> I was out for minute,
can you send the URL again?</p>
<p class='irc'><<cite>jacco</cite>> Mostly personal
photos of beaches, anything, any tool, any vocabulary is
allowed</p>
<p class='irc'><<cite>jacco</cite>> jeff, no url has been
sent yet</p>
<p class='irc'><<cite>raphael</cite>> World Cup photos:
<a href=
"http://www.apa-images.at/cms/site/EN/breakingnews.html;jsessionid=agCHvRUiTwE7">
http://www.apa-images.at/cms/site/EN/breakingnews.html;jsessionid=agCHvRUiTwE7</a></p>
<p class='irc'><<cite>raphael</cite>> World cup videos:
<a href=
"http://www.euronews.net/create_html.php?page=detail_info&article=368313&lng=2">
http://www.euronews.net/create_html.php?page=detail_info&article=368313&lng=2</a></p>
<p class='irc'><<cite>raphael</cite>> Video: <a href=
"http://today.reuters.com/tv/videoChannel.aspx?storyid=2ba9545293e136702fab402c94af125ea8560bc1">
http://today.reuters.com/tv/videoChannel.aspx?storyid=2ba9545293e136702fab402c94af125ea8560bc1</a></p>
<p class='irc'><<cite>raphael</cite>> Photos: <a href=
"http://photos.reuters.com/Pictures/default.aspx">http://photos.reuters.com/Pictures/default.aspx</a></p>
<p class='irc'><<cite>raphael</cite>> Video Clip:
<a href="http://www.rap2k.com/clip-1218-mas-que-nada-feat-black-eyed-peas-sergio-mendes.html#open">
http://www.rap2k.com/clip-1218-mas-que-nada-feat-black-eyed-peas-sergio-mendes.html#open</a></p>
<p class='irc'><<cite>raphael</cite>> Lyrics: <a href=
"http://en.wikipedia.org/wiki/Mas_Que_Nada">http://en.wikipedia.org/wiki/Mas_Que_Nada</a></p>
<p class='irc'><<cite>raphael</cite>> Official Web Site:
<a href=
"http://www.blackeyedpeas.com">http://www.blackeyedpeas.com</a>
and <a href=
"http://www.brasil66.com/">http://www.brasil66.com/</a></p>
<p class='irc'><<cite>raphael</cite>> Temporary URLs of
media files: <a href=
"http://homepages.cwi.nl/~troncy/tmp/W3C/">http://homepages.cwi.nl/~troncy/tmp/W3C/</a></p>
<p class='irc'><<cite>jacco</cite>> thanks massimo</p>
<p class='irc'><<cite>jacco</cite>> massimo, you can
phone in, we will just mute you</p>
<p class='irc'><<cite>Massimo</cite>> ok, i'll retry!</p>
<p class='irc'><<cite>raphael</cite>> there is now a
Beach ontology 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>> for annotating the
personal photos</p>
<p class='irc'><<cite>raphael</cite>> Massimo, please,
DCC me the file</p>
<p class='irc'><<cite>raphael</cite>> you're flooding</p>
<p class='irc'><<cite>jacco</cite>> lunch break</p>
<p class='irc'><<cite>Massimo</cite>> see you later
(sorry for the previous flooding)</p>
<p class='irc'><<cite>anadiotis</cite>> Sample RDF output
: <a href=
"http://www.flickr.com/services/feeds/photos_public.gne?id=11026577@N00&tags=http://www.flickr.com/photos/11026577@N00/187187881&format=rss2">
http://www.flickr.com/services/feeds/photos_public.gne?id=11026577@N00&tags=http://www.flickr.com/photos/11026577@N00/187187881&format=rss2</a></p>
<p class='irc'><<cite>jacco</cite>> my annotations are
at</p>
<p class='irc'><<cite>jacco</cite>> <a href=
"http://homepages.cwi.nl/~jrvosse/spool/try.rdf">http://homepages.cwi.nl/~jrvosse/spool/try.rdf</a>,
<a href=
"http://homepages.cwi.nl/~jrvosse/spool/try2.rdf">http://homepages.cwi.nl/~jrvosse/spool/try2.rdf</a>,
<a href=
"http://homepages.cwi.nl/~jrvosse/spool/ct.rdf">http://homepages.cwi.nl/~jrvosse/spool/ct.rdf</a></p>
<p class='irc'><<cite>anadiotis</cite>> More sample RDF
output : <a href=
"http://homepages.cwi.nl/~anadioti/RDF/rembrandt.rdf">http://homepages.cwi.nl/~anadioti/RDF/rembrandt.rdf</a></p>
<p class='irc'><<cite>vasileios</cite>> massimo, which
annotation tool have you used for the extraction of the
massimo.mp7 file?</p>
<p class='irc'><<cite>Massimo</cite>> our 4M</p>
<p class='irc'><<cite>vasileios</cite>> massimo, is this
tool publicly available?</p>
<p class='irc'><<cite>Massimo</cite>> it's developed
under the MUSCLE NoE, so i don't know the copyright policy</p>
<p class='irc'><<cite>vasileios</cite>> so, I assume
there is no currently available version for download and
testing</p>
<p class='irc'><<cite>Massimo</cite>> the thing we are
thinking to propose to MUSCLE is if we can give an URI where
people can connect and upload multimedia object, when MUSCLE
will finish we would like to open the code</p>
<p class='irc'><<cite>IoannisPratikakis</cite>> Massimo,
does '4M' support other descriptors than MPEG-7 ones ?</p>
<p class='irc'><<cite>Massimo</cite>> not at the
moment</p>
<p class='irc'><<cite>Massimo</cite>> we started the
developement less than one year ago, we would like to add some
more features</p>
<p class='irc'><<cite>raphael</cite>> ALL: go on <a href=
"http://homepages.cwi.nl/~troncy/tmp/W3C/multimedia/">http://homepages.cwi.nl/~troncy/tmp/W3C/multimedia/</a></p>
<p class='irc'><<cite>IoannisPratikakis</cite>> have you
used the MPEG-7 XM software for '4M'?</p>
<p class='irc'><<cite>Massimo</cite>> no</p>
<p class='irc'><<cite>Massimo</cite>> we started with
vizir (emir) and mpeg7encoder, it's all written in java</p>
<p class='irc'><<cite>Massimo</cite>> we compiled XM6.1
on a windows pc (terrible experience) and we've use it to
compare the results</p>
<p class='irc'><<cite>vasileios</cite>> massimo, i can
see from the massimo.mp7 file that the descriptors have been
extracted for the whole image (i.e. not region-based). Is this
right?</p>
<p class='irc'><<cite>Massimo</cite>> but 4M extracts
more features than XM now: some less for images, a lot more for
audio, some for video</p>
<p class='irc'><<cite>Massimo</cite>> yes you're
right</p>
<p class='irc'><<cite>Massimo</cite>> that is the next
module under developing</p>
<p class='irc'><<cite>Jeff</cite>> <a href=
"http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf">
http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf</a></p>
<p class='phone'>my "handmade" rdf file is at <a href=
"http://www.uni-koblenz.de/~franz/manual.rdf">http://www.uni-koblenz.de/~franz/manual.rdf</a></p>
<p class='irc'><<cite>jacco</cite>> jeff,
<rdf:Description rdf:about="photo:DSC03139.JPG"/> should
be <rdf:Description rdf:about="photo:DSC03139.JPG"></p>
<p class='irc'><<cite>jacco</cite>> without the slash in
the end</p>
<p class='irc'><<cite>raphael</cite>> Jeff, all RDF files
are at: <a href=
"http://homepages.cwi.nl/~troncy/tmp/W3C/multimedia/annotations/">
http://homepages.cwi.nl/~troncy/tmp/W3C/multimedia/annotations/</a></p>
<p class='irc'><<cite>raphael</cite>> yours too</p>
<p class='irc'><<cite>Jeff</cite>> thanks</p>
<p class='irc'><<cite>jacco</cite>> jeff, can you put a
real url to an image in your rdf:about</p>
<p class='irc'><<cite>jacco</cite>> ?</p>
<p class='irc'><<cite>Jeff</cite>> ok</p>
<p class='irc'><<cite>Jeff</cite>> jacco, done</p>
<p class='irc'><<cite>Jeff</cite>> <a href=
"http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf">
http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf</a></p>
<p class='irc'><<cite>anadiotis</cite>> Round table -
details about what everyone did and how</p>
<p class='irc'><<cite>anadiotis</cite>> Vassilis and
Ioannis used PhotoStuff</p>
<p class='irc'><<cite>Massimo</cite>> (i can't see the
last rdf)</p>
<p class='irc'><<cite>jacco</cite>> scribe: anadiotis</p>
<p class='phone'><cite>Limitations:</cite> no low-level feature
extraction, no automatic segmentation</p>
<p class='irc'><<cite>jacco</cite>> jeff, we get an
access denied on your RDF page</p>
<p class='irc'><<cite>Jeff</cite>> it should be fine
now</p>
<p class='irc'><<cite>Jeff</cite>> ?</p>
<p class='phone'>Could have used M-OntomatAnotizer, that deals
with issues, but not yet publicly available</p>
<p class='phone'><cite>Thomas:</cite> tried to use PhotoStuff +
Protege</p>
<p class='phone'><cite>Issues:</cite> could not load ontology
to Protege</p>
<p class='phone'>Did manual annotations..</p>
<p class='phone'><cite>Massimo:</cite> obtained MPEG-7 using
4M</p>
<p class='irc'><<cite>Massimo</cite>> RDF: foafer, image
annotator (notepad to add the coordinates, and google to
check). MPEG-7: 4M. OWL: Swoogle</p>
<p class='irc'><<cite>lynda</cite>> george used 2
different methods: uploaded picture to flickr, added regional
annotations.</p>
<p class='irc'><<cite>lynda</cite>> Also added URL of
picture.</p>
<p class='irc'><<cite>lynda</cite>> Then created RSS of
this.</p>
<p class='irc'><<cite>lynda</cite>> Template Newsml of
picture, found news codes, sample file -> converter for
RDF</p>
<p class='phone'><cite>Jacco:</cite> tried to upload WordNet -
crashed Protege</p>
<p class='phone'>Then used Raphael's beach ontology</p>
<p class='phone'><cite>Raphael:</cite> created beach ontology
with Protege</p>
<p class='phone'>Then used it with PhotoStuff to annotate the
pictures</p>
<p class='irc'><<cite>Massimo</cite>> (opps SWOOP2.3 for
owl not swoogle)</p>
<p class='phone'>PhotoStuff does not support properties</p>
<p class='phone'>(it does in the latest version - Raphael was
using a previous one)</p>
<p class='phone'><cite>Lynda:</cite> could not produce an
RDF</p>
<p class='phone'>tried to find all the ontologies</p>
<p class='phone'>also tried with NewsML, but could not find the
NewsCodes</p>
<p class='irc'><<cite>jacco</cite>> jacco: I used
<a href="http://www.mindswap.org/2003/PhotoStuff/webstarts/PhotoStuff-3.33/PhotoStuff-20060531.zip">
http://www.mindswap.org/2003/PhotoStuff/webstarts/PhotoStuff-3.33/PhotoStuff-20060531.zip</a></p>
<p class='phone'>syntax was difficult to use too</p>
<p class='phone'>Giovanni + Christian : set up environment,
fixed broken soccer ontology, loaded ontologies</p>
<p class='irc'><<cite>jacco</cite>> giovanni: set up an
environment in dbin.org to annote images</p>
<p class='phone'>Giovanni + Christian : Found a simplified
MPGE-7 ontology</p>
<p class='phone'>Inserted new images by navigating the ontology
and creating new 'image' instance</p>
<p class='irc'><<cite>jacco</cite>> added line to say
place was a geo:spatialthing</p>
<p class='irc'><<cite>Jeff</cite>> The owl-full bug is
fixed, see</p>
<p class='irc'><<cite>Jeff</cite>> <a href=
"http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf">
http://www.csd.abdn.ac.uk/~jpan/w3c/mm-annotation/mm-annotation.rdf</a></p>
<p class='phone'><cite>Giovanni:</cite> also used geographic
ontology<br />
... in the end everything is exported in a single RDF file</p>
<p class='phone'>wrap-up by Raphael : everyone went for
images</p>
<p class='phone'>initially at least</p>
<p class='phone'><cite>Giovanni:</cite> why is precise
region-drawing important? Aren't most use cases covered by
rectangle selction?</p>
<p class='phone'><cite>Ioannis:</cite> Precise region marking
helps achieving better feature extraction</p>
<p class='phone'><cite>Raphael:</cite> purpose of the hands-on
exercise was to show issues with ontology-based
annotation<br />
... discussion on the roadmap follows</p>
<h3 id="item03">MMSem XG roadmap</h3>
<p class='irc'><<cite>raphael</cite>> <a href=
"http://www.w3.org/2006/07/10-mmsem-minutes.html">http://www.w3.org/2006/07/10-mmsem-minutes.html</a></p>
<p class='irc'><<cite>jacco</cite>> Music use case: id of
track, diff perf. of the same song; different encodings</p>
<p class='irc'><<cite>jacco</cite>> id3 tags, CDDB data,
musicbrainz</p>
<p class='irc'><<cite>jacco</cite>> classification of
music on rythm,tempo,gentre, which ontologies to use</p>
<p class='irc'><<cite>jacco</cite>> lyrics: paper about
finding music based on lyrics</p>
<p class='irc'><<cite>jacco</cite>> thierry: there is a
more or less standard linguistic annotation scheme</p>
<p class='irc'><<cite>jacco</cite>> (by us/ISO)</p>
<p class='irc'><<cite>jacco</cite>> link text of lyrics
to audio? manual/automatic</p>
<p class='irc'><<cite>jacco</cite>> or use mpeg-7
linguistic scheme</p>
<p class='irc'><<cite>jacco</cite>> thierry was
talking</p>
<p class='irc'><<cite>jacco</cite>> now giovanni</p>
<p class='irc'><<cite>Jeff</cite>> thanks</p>
<p class='irc'><<cite>jacco</cite>> raphael: we first
need to describe the problem of the use case, than the general
solution. only highlight specific tools as example</p>
<p class='irc'><<cite>jacco</cite>> thomas: what is the
intention of listing these problems, this is not in the context
of the real use case?</p>
<p class='irc'><<cite>jacco</cite>> What is the added
value of SW?</p>
<p class='irc'><<cite>jacco</cite>> Raphael: Yes, this
will be key to all use cases</p>
<p class='irc'><<cite>jacco</cite>> Thomas: yes, so we
need a real scenario in which these problems occur</p>
<p class='irc'><<cite>jacco</cite>> raphael: we can be
creative and can reuse all relevant RDF out there on the web,
as long as it fits in a real scenario</p>
<p class='irc'><<cite>jacco</cite>> giovanni: music
browsing, with intelligent "next" button, or locating
scenario</p>
<p class='irc'><<cite>jacco</cite>> we can show how the
problems listed so far relate to the use case</p>
<p class='irc'><<cite>jacco</cite>> Thomas:music browsing
is too generic, need a real specific scenario</p>
<p class='irc'><<cite>jacco</cite>> patrizia: is a tool
from vienna that does similar stuff</p><a name="action01" id=
"action01"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> patrizia to find pointer to this tool
[recorded in <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html#action01">http://www.w3.org/2006/07/11-mmsem-minutes.html#action01</a>]</p>
<p class='irc'><<cite>jacco</cite>> Rapahel: structured
annotation of the lyrics?</p>
<p class='irc'><<cite>jacco</cite>> Thierry: we could do
that, but we are not so strong in classifaction</p>
<p class='irc'><<cite>jacco</cite>> looking at <a href=
"http://freedb.org">http://freedb.org</a></p>
<p class='phone'><cite>jacco:</cite> aim is to produce readable
documents, so compact and specific use-cases are required</p>
<p class='irc'><<cite>Jeff</cite>> agreed</p>
<p class='irc'><<cite>jacco</cite>> Low level feature
extraction use case:</p>
<p class='irc'><<cite>Jeff</cite>> which use case are we
talking about?</p>
<p class='irc'><<cite>jacco</cite>> current tools
represent results of extraction in XML/MPEG7, why do we need
RDF/OWL?</p>
<p class='irc'><<cite>jacco</cite>> Jeff, this is use
case <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>> Christian, there is
overlap with Massimo's use case</p>
<p class='irc'><<cite>jacco</cite>> Christian: there is
overlap with Massimo's use case</p>
<p class='irc'><<cite>jacco</cite>> So we should provide
a link</p>
<p class='irc'><<cite>Jeff</cite>> thanks</p>
<p class='irc'><<cite>jacco</cite>> Advantages of RDF:
combine with background knowledge, bootstrap and infer more
information</p>
<p class='irc'><<cite>jacco</cite>> Patrizia:we also have
the semantics of the algorithm</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: two issues:
we must have use cases that cover a broad range of languages
and vocabularies</p>
<p class='irc'><<cite>jacco</cite>> not all use cases
should be based on mpeg-7, not all shou</p>
<p class='irc'><<cite>jacco</cite>> not all use cases
should be based on mpeg-7, not all should only use RDF, but
also different flavours of OWL</p>
<p class='irc'><<cite>jacco</cite>> otherwise we cannot
show interoperability</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: we should
use many metadata standards, not just three</p>
<p class='irc'><<cite>jacco</cite>> all agree</p>
<p class='irc'><<cite>jacco</cite>> Ioannis: we need
spatio-temporal relations to be supported</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: spatio
temporal relations are, from a language perspective, just
relations, so there is not a issue</p>
<p class='irc'><<cite>jacco</cite>> the problem could be
on the reasoning level</p>
<p class='irc'><<cite>chalaschek</cite>> yes the problem
is on the reasoning level</p>
<p class='irc'><<cite>jacco</cite>> jeff: I agree with
Vassilis, can do something even if spatio-temporal reasoning is
not supported</p>
<p class='irc'><<cite>jacco</cite>> Unstructured tagging
use case: <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>> show limitation of
tags, using tags across modalities or applications</p>
<p class='irc'><<cite>jacco</cite>> show first efforts to
bring more structure to tagging, show advantages and common
approaches</p>
<p class='irc'><<cite>jacco</cite>> show how it is
possible to use SW technology to use, for example picasa tags
in flickr, or from blogging app to another</p>
<p class='irc'><<cite>jacco</cite>> thomas: I agree</p>
<p class='irc'><<cite>jacco</cite>> other issues are
navigation between tags, clustering etc</p>
<p class='irc'><<cite>jacco</cite>> jacco: maybe reuse
existing flickr2rdf converters etc</p>
<p class='irc'><<cite>jacco</cite>> make use case that
works cross modality</p>
<p class='irc'><<cite>jacco</cite>> Next use case: News
(<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>> Raphael: I will work
with people of the newsml/iptc community</p>
<p class='irc'><<cite>jacco</cite>> use case should show
what you can do more if you convert all current vocabs. to RDF
and link to other material already out there</p>
<p class='irc'><<cite>jacco</cite>> including: cross
modality search on news images and text</p>
<p class='irc'><<cite>jacco</cite>> recognize different
version of the same story</p>
<p class='irc'><<cite>jacco</cite>> make explicit links
among different versions</p>
<p class='irc'><<cite>jacco</cite>> patrizia: should
speach be added?</p>
<p class='irc'><<cite>jacco</cite>> reuse exisiting
metdatda, convert to RDF</p>
<p class='irc'><<cite>jacco</cite>> Massimo (by SMS):
audio is not only music</p>
<p class='irc'><<cite>jacco</cite>> all agree</p>
<p class='irc'><<cite>Jeff</cite>> who is here?</p>
<p class='irc'><<cite>jacco</cite>> Raphael puts
Massimo's use case sent yesterday on the beamer</p>
<p class='irc'><<cite>jacco</cite>> raphael: is this a
representation problem, massimo?</p>
<p class='irc'><<cite>Massimo</cite>> i was only thinking
of use cases</p>
<p class='irc'><<cite>Massimo</cite>> but yes, you're
right raphael, it could be</p>
<p class='irc'><<cite>Jeff</cite>> BTW, do we have any
use cases on videos?</p>
<p class='irc'><<cite>jacco</cite>> Massimo, could you
write this up in terms of a concrete use case? For example one
on e-science, or on image transforms on personal photos</p>
<p class='irc'><<cite>jacco</cite>> news domain and
unstructured tagging deal with video, maybe the music use case
also</p>
<p class='irc'><<cite>Massimo</cite>> ok we'll think
about it</p>
<p class='irc'><<cite>jacco</cite>> Raphael: lets talk
about deadlines</p>
<p class='irc'><<cite>jacco</cite>> We have a teleconf on
the 20th of July, so submit half a page description on the 19th
of July, so we can disccus 5 use cases during the teleconf</p>
<p class='irc'><<cite>jacco</cite>> Thomas will be on
vacation but will contact George before</p>
<p class='irc'><<cite>jacco</cite>> Skip 3, 16 august
teleconf because of vacations</p>
<p class='irc'><<cite>jacco</cite>> proposal: next
teleconf on 31 august?</p>
<p class='irc'><<cite>jacco</cite>> resolved</p>
<p class='irc'><<cite>Jeff</cite>> next teleconfs: 20
July and 31 August?</p>
<p class='irc'><<cite>Vassilis</cite>> have we decided
who is goin to do be the editor of this deliverable?</p>
<p class='irc'><<cite>jacco</cite>> no, we will do the
individual use cases first</p>
<p class='irc'><<cite>jacco</cite>> raphael: we do not
yet have talked about the structure of the document</p>
<p class='irc'><<cite>jacco</cite>> jeff: agrees with
Vassilis, can we use the time left to look ahead?</p>
<p class='irc'><<cite>jacco</cite>> raphael: we will all
be contributors to the XG notes, but we also need editors</p>
<p class='irc'><<cite>jacco</cite>> Vassilis volunteers
to be one of the editors</p>
<p class='irc'><<cite>jacco</cite>> obections to Vassilis
being an editor?</p>
<p class='irc'><<cite>jacco</cite>> Resolved</p>
<p class='irc'><<cite>jacco</cite>> Any more
voluteers?</p>
<p class='irc'><<cite>jacco</cite>> No, want to see what
the documents are going to look like</p>
<h3 id="item04">next f2f</h3>
<p class='irc'><<cite>jacco</cite>> proposal: co-locate
with next ISWC conference in November, Athens, Georgia</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: There are
many other competing events like ruleml, rif, owl2</p>
<p class='irc'><<cite>jacco</cite>> Other posibility is
to co-locate with SAMT in Athens, Greece</p>
<p class='irc'><<cite>jacco</cite>> But this will be the
second f2f in Europe</p>
<p class='irc'><<cite>Massimo</cite>> could be thougth
the possibility of a videocon too ?</p>
<p class='irc'><<cite>jacco</cite>> 5 november is
tutorials only</p>
<p class='irc'><<cite>raphael</cite>> <a href=
"http://iswc2006.semanticweb.org/program/dates.htm">http://iswc2006.semanticweb.org/program/dates.htm</a></p>
<p class='irc'><<cite>rellero_</cite>> could be a good
idea make next f2f in Venice</p>
<p class='phone'><cite>giovanni:</cite> having the f2f coincide
with ISWC workshops/demos may not be a good idea, since people
in the XG will attend the workshops/. Maybe before
ISWC?</p><a name="action02" id="action02"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Raphael and Jeff to contact US
partners and propose f2f date and location [recorded in
<a href="http://www.w3.org/2006/07/11-mmsem-minutes.html#action02">
http://www.w3.org/2006/07/11-mmsem-minutes.html#action02</a>]</p>
<p class='irc'><<cite>jacco</cite>> Vassilis: Workshop in
Athens on cultural domain, presence from this XG will be
appreciated</p><a name="action03" id="action03"></a>
<p class='irc'><<cite>jacco</cite>>
<strong>ACTION:</strong> Vassilis to write proposal on the
agenda for 20 jult teleconf [recorded in <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html#action03">http://www.w3.org/2006/07/11-mmsem-minutes.html#action03</a>]</p>
<p class='irc'><<cite>jacco</cite>> any other
business?</p>
<p class='irc'><<cite>jacco</cite>> Jeff: we skipt
discussing future deliverables, if any has an idea or
volunteers to be an editor, send mail to public mailing
list</p>
<p class='irc'><<cite>jacco</cite>> Chairs close the
meeting and thank all particpants</p>
<p class='irc'><<cite>Massimo</cite>> hi all and thank
you!</p>
<p class='irc'><<cite>rellero_</cite>> see you soon</p>
<p class='irc'><<cite>pasquale</cite>> bye all</p>
<p class='irc'><<cite>rellero_</cite>> bye</p>
<p class='irc'><<cite>alessio</cite>> see you next time
:)</p>
<p class='irc'><<cite>jacco</cite>> scribe: jacco</p>
</div>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> patrizia to find
pointer to this tool [recorded in <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html#action01">http://www.w3.org/2006/07/11-mmsem-minutes.html#action01</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Raphael and Jeff
to contact US partners and propose f2f date and location
[recorded in <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html#action02">http://www.w3.org/2006/07/11-mmsem-minutes.html#action02</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Vassilis to write
proposal on the agenda for 20 jult teleconf [recorded in <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html#action03">http://www.w3.org/2006/07/11-mmsem-minutes.html#action03</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/11 14:49:06 $
</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/pus/puts/
Succeeded: s/Vasilis/Vassilis/
Found Scribe: Thomas
Inferring ScribeNick: Thomas
Found Scribe: anadiotis
Inferring ScribeNick: anadiotis
Found Scribe: jacco
Inferring ScribeNick: jacco
Scribes: Thomas, anadiotis, jacco
ScribeNicks: Thomas, anadiotis, jacco
Default Present: meeting_room, Vassilis, Jeff_Pan, massimo
Present: Ioannias Vasileios VassilisThomas Raphael Patrizia George Lynda Jacco Giovanni Christian Jeff Pasquale Alessio Massimo Roberto Chris
WARNING: Replacing previous Regrets list. (Old list: Susanne, Boll)
Use 'Regrets+ ... ' if you meant to add people without replacing the list,
such as: <dbooth> Regrets+ SusanneBoll
Regrets: SusanneBoll
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: 11 Jul 2006
Guessing minutes URL: <a href=
"http://www.w3.org/2006/07/11-mmsem-minutes.html">http://www.w3.org/2006/07/11-mmsem-minutes.html</a>
People with action items: jeff patrizia raphael vassilis
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>