-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1587 lines (1483 loc) · 168 KB
/
index.html
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
<!DOCTYPE html>
<!-- saved from url=(0032)./index.html -->
<html>
<head>
<script>
document.addEventListener("DOMContentLoaded", function() {
var currentIndex = 0;
var imageWidth = document.querySelector('.box').clientWidth;
var ul = document.querySelector('.inner ul');
var totalImages = document.querySelectorAll('.inner li').length;
var isSliding = false;
var slideSpeed = 2; // Adjust the speed as needed
var direction = 0; // 1 for next, -1 for prev
var autoSlideInterval;
function slide() {
if (isSliding) {
var newLeft = parseFloat(ul.style.left || '0') - direction * slideSpeed;
if (newLeft > 0) {
newLeft = 0;
} else if (newLeft < -(totalImages - 1) * imageWidth) {
newLeft = -(totalImages - 1) * imageWidth;
}
ul.style.left = newLeft + 'px';
currentIndex = Math.round(Math.abs(newLeft) / imageWidth);
requestAnimationFrame(slide);
}
}
function startSliding(dir) {
direction = dir;
isSliding = true;
slide();
}
function stopSliding() {
isSliding = false;
}
function startAutoSlide() {
autoSlideInterval = setInterval(function() {
if (currentIndex < totalImages - 1) {
currentIndex++;
} else {
currentIndex = 0;
}
ul.style.left = -(currentIndex * imageWidth) + 'px';
}, 3000); // Adjust the interval time as needed
}
function stopAutoSlide() {
clearInterval(autoSlideInterval);
}
document.getElementById('nextButton').addEventListener('mouseenter', function() {
stopAutoSlide();
startSliding(1);
});
document.getElementById('nextButton').addEventListener('mouseleave', function() {
stopSliding();
startAutoSlide();
});
document.getElementById('prevButton').addEventListener('mouseenter', function() {
stopAutoSlide();
startSliding(-1);
});
document.getElementById('prevButton').addEventListener('mouseleave', function() {
stopSliding();
startAutoSlide();
});
window.addEventListener('resize', function() {
imageWidth = document.querySelector('.box').clientWidth;
ul.style.left = -(currentIndex * imageWidth) + 'px';
});
// Start automatic sliding when the page loads
startAutoSlide();
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>智能信息处理实验室:主页</title>
<link rel="stylesheet" type="text/css" href="./FoodComputing__Home_files/style.css">
<!-- modernizr enables HTML5 elements and feature detects -->
<script type="text/javascript" src="./FoodComputing__Home_files/modernizr-1.5.min.js.下载"></script>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 120%;
max-width: 800px;
height: 350px;
border: 1px solid #ccc;
margin: 10px auto;
overflow: hidden;
position: relative;
}
.inner {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.inner ul {
display: flex;
list-style: none;
padding: 0;
margin: 0;
transition: none; /* Remove transition for manual animation */
position: relative;
left: 0;
}
.inner li {
flex: 0 0 100%; /* Each image takes full width of the container */
}
.inner img {
width: 100%;
height: 100%;
object-fit: cover; /* Ensure the image covers the container */
}
#prevButton, #nextButton {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: #fff;
border: 1px solid #ccc;
cursor: pointer;
z-index: 10;
}
#prevButton {
left: 10px;
}
#nextButton {
right: 10px;
}
</style>
</head>
<body>
<div id="main">
<style>
/* 通用样式 */
header {
background-image: url('./FoodComputing__Home_files/99.png'); /* 替换为你的图片路径 */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 2em;
background: object-fit: cover;
; /* 确保图片始终覆盖其容器 */
}
/* 响应式调整 */
@media (max-width: 768px) {
header {
height: 100vh;
padding-top: 0;
}
}
</style>
<header>
<div id="logo">
<div id="logo_text" >
<!--class="logo_colour", allows you to change the colour of the text -->
<h1><a href="./index.html"><span
class="logo_colour"><strong></strong></span></a>
</h1>
<!--<h2>Food Computing Research Group</h2>-->
</div>
</div>
<!--头部标题-->
<nav>
<div id="menu_container">
<ul class="sf-menu" id="nav">
<li class="selected"><a href="./index.html">主页</a></li>
<li><a href="./People.html">成员</a></li>
<!--<li><a href="./FoodComputing__Publication.html">发表文章</a></li>-->
<!--<li><a href="./FoodComputing__Dataset.html">Dataset</a></li>-->
<!--<li><a href="./FoodComputing__Talk.html">Talk</a></li>-->
</ul>
</div>
</nav>
</header>
<div id="site_content">
<div id="content">
<h2><strong>
<font size="5">欢迎加入智能信息处理实验室!</font>
</strong></h2>
<p> 智能信息处理实验室隶属于鲁东大学,致力于轻量级识别、零样本检测、图像检索三个方向的研究和实际应用。
<!--Research activities of the lab include: super-resolution, frame rate conversion, video compression, and video quality assessment.</p>-->
<!--Research activities of the lab include: super-resolution, rain removal, low light enhancement, typography (automatic art-deco fonts synthesis and rendering), action analysis and understaning, and video compression.-->
<h2><strong>
<font size="5">组内动态</font>
</strong></h2>
<div class="box" id="box">
<div class="inner">
<!--轮播图-->
<ul>
<li>
<div><img src="./FoodComputing__People_files/dongtai/1.png" alt="" ></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/2.png" alt="" ></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/3.png" alt="" ></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/4.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/5.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/6.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/7.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/8.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/9.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/10.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/11.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/12.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/13.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/14.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/1.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/3.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/5.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/6.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/7.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/9.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/11.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/13.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/20.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/33.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/21.jpg" alt=""></div>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/34.jpg" alt=""></div>
</li>
</li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/36.jpg" alt=""></div>
</li> </li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/37.jpg" alt=""></div>
</li> </li> <li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/42.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/44.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/20240713/45.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/15.jpg" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/16.png" alt=""></div>
</li>
<li>
<div><img src="./FoodComputing__People_files/dongtai/17.png" alt=""></div>
</li>
</ul>
</div>
<button id="prevButton">Prev</button>
<button id="nextButton">Next</button>
</div>
<!--<script>-->
<!--/**-->
<!--*-->
<!--* @param id 传入元素的id-->
<!--* @returns {HTMLElement | null} 返回标签对象,方便获取元素-->
<!--*/-->
<!--function my$(id) {-->
<!--return document.getElementById(id);-->
<!--}-->
<!--//获取各元素,方便操作-->
<!--var box = my$("box");-->
<!--var inner = box.children[0];-->
<!--var ulObj = inner.children[0];-->
<!--var list = ulObj.children;-->
<!--var olObj = inner.children[1];-->
<!--var imgWidth = inner.offsetWidth;-->
<!--var right = my$("right");-->
<!--var pic = 0;-->
<!--//根据li个数,创建小按钮-->
<!--for(var i = 0; i < list.length; i++) {-->
<!--var liObj = document.createElement("li");-->
<!--//olObj.appendChild(liObj);-->
<!--liObj.innerText = (i + 1);-->
<!--liObj.setAttribute("index", i);-->
<!--//为按钮注册mouseover事件-->
<!--liObj.onmouseover = function() {-->
<!--//先清除所有按钮的样式-->
<!--for(var j = 0; j < olObj.children.length; j++) {-->
<!--olObj.children[j].removeAttribute("class");-->
<!--}-->
<!--this.className = "current";-->
<!--pic = this.getAttribute("index");-->
<!--animate(ulObj, -pic * imgWidth);-->
<!--}-->
<!--}-->
<!--//设置ol中第一个li有背景颜色-->
<!--//olObj.children[0].className = "current";-->
<!--//克隆一个ul中第一个li,加入到ul中的最后=====克隆-->
<!--ulObj.appendChild(ulObj.children[0].cloneNode(true));-->
<!--var timeId = setInterval(onmouseclickHandle, 4000);-->
<!--function onmouseclickHandle() {-->
<!--//如果pic的值是5,恰巧是ul中li的个数-1的值,此时页面显示第六个图片,而用户会认为这是第一个图,-->
<!--//所以,如果用户再次点击按钮,用户应该看到第二个图片-->
<!--if(pic == list.length - 1) {-->
<!--//如何从第6个图,跳转到第一个图-->
<!--pic = 0; //先设置pic=0-->
<!--ulObj.style.left = 0 + "px"; //把ul的位置还原成开始的默认位置-->
<!--}-->
<!--pic++; //立刻设置pic加1,那么此时用户就会看到第二个图片了-->
<!--animate(ulObj, -pic * imgWidth); //pic从0的值加1之后,pic的值是1,然后ul移动出去一个图片-->
<!--}-->
<!--//设置任意的一个元素,移动到指定的目标位置-->
<!--function animate(element, target) {-->
<!--clearInterval(element.timeId);-->
<!--//定时器的id值存储到对象的一个属性中-->
<!--element.timeId = setInterval(function() {-->
<!--//获取元素的当前的位置,数字类型-->
<!--var current = element.offsetLeft;-->
<!--//每次移动的距离-->
<!--var step = 10;-->
<!--step = current < target ? step : -step;-->
<!--//当前移动到位置-->
<!--current += step;-->
<!--if(Math.abs(current - target) > Math.abs(step)) {-->
<!--element.style.left = current + "px";-->
<!--} else {-->
<!--//清理定时器-->
<!--clearInterval(element.timeId);-->
<!--//直接到达目标-->
<!--element.style.left = target + "px";-->
<!--}-->
<!--}, 10);-->
<!--}-->
<!--</script>-->
<h2>
<font size="5"><strong>近期成果</strong></font>
</h2>
<font color="#000080"><b><i>July. 02, 2024</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">第二十六届中国机器人及人工智能大赛 获得省赛一等奖一项,二等奖两项,三等奖一项,并已推荐至国赛 “兆易创新杯”第十九届中国研究生电子设计竞赛 获得省赛一等奖,并已推荐至国赛。
<!--<a href="https://www.mdpi.com/2304-8158/12/17/3145">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>May. 02, 2024</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">论文 "基于Transformer的零样本食品图像检测"已在《食品工业科技》发表。
<!--<a href="https://www.mdpi.com/2304-8158/12/17/3145">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>May. 02, 2024</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">论文 "Lightweight Food Image Recognition With Global Shuffle Convolution"已在IEEE Transactions on AgriFood Electronics ( Early Access )发表。
<!--<a href="https://www.mdpi.com/2304-8158/12/17/3145">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Mar. 09, 2024</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">论文 "基于增强Vision Transformer的哈希食品图像检索"已在《食品科学》发表。
<!--<a href="https://www.mdpi.com/2304-8158/12/17/3145">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Jan. 22, 2024</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">论文 "A Lightweight Hybrid Model with Location-Preserving ViT for Efficient Food Recognition"已在二区nutrients发表。
<!--<a href="https://www.mdpi.com/2304-8158/12/17/3145">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Jun. 22, 2023</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">获第二十五届中国机器人及人工智能大赛(山东赛区)暨”济南超算杯”第三届山东省机器人及人工智能大赛三等奖。
</p>
</font>
<p></p>
<font color="#000080"><b><i>Jun. 9, 2023</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">获第二十五届中国机器人及人工智能大赛(山东赛区)暨”济南超算杯”第三届山东省机器人及人工智能大赛二等奖。
</p>
</font>
<p></p>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Jun. 8, 2023</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">获第二十五届中国机器人及人工智能大赛全国总决赛人工智能创新赛三等奖。
<!--<a href="https://ieeexplore.ieee.org/document/10268369">-->
<!--<font color="#0000E3">link</font></a>-->
</p>
</font>
<p></p>
<font color="#000080"><b><i>Sep. 02, 2022</b></font><br><br>
</i>
<span style="color: #666666; ">
<i><p style="text-align:justify; text-justify:inter-ideograph;"> 论文"Food recognition via an efficient neural network with transformer grouping"已在SCI一区TOP期刊发表。
</p>
</span>
<p></p>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Aug. 29, 2022</b></font><br><br>
</font>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;"> 获得第二十四届中国机器人及人工智能大赛全国总决赛人工智能创新赛一等奖。
</p>
</font>
<p></p>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<font color="#000080"><b><i>Jun. 25, 2022</b></font><br><br>
</i>
<font color="#666666">
<i><p style="text-align:justify; text-justify:inter-ideograph;">获得第二十四届中国机器人及人工智能大赛(山东赛区)暨第二届山东省机器人及人工智能大赛二等奖。
</p>
</font>
<p></p>
<font color="#666666">
<p style="margin-top: 10px"><i></p>
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Jul. 26, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The paper-->
<!--"SeeDS: Semantic Separable Diffusion Synthesizer for Zero-shot Food-->
<!--Detection" has been accepted by ACM MM2023.-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<!– <font color="#000080"><b><i>May. 26, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The paper "Vision-based fruit recognition via multi-scale attention CNN" has been accepted by Computers and Electronics in Agriculture.-->
<!--<a href="https://www.sciencedirect.com/science/article/pii/S0168169923002995?via%3Dihub">-->
<!--<font color="#0000E3">link</font></a>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i> </p> –>-->
<!--<font color="#000080"><b><i>May. 22, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The-->
<!--paper "Towards Food Image Retrieval via Generalization-oriented-->
<!--Sampling and Loss Function Design" has been accepted by ACM-->
<!--Transactions on Multimedia Computing Communications and-->
<!--Applications.-->
<!--<!– <a href="https://ieeexplore.ieee.org/document/10019590">-->
<!--<font color="#0000E3">link</font></a> –>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>May. 5, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The-->
<!--paper "Vision-Based Fruit Recognition via Multi-Scale Attention-->
<!--CNN" has been accepted by Computers and Electronics in-->
<!--Agriculture.-->
<!--<!– <a href="https://ieeexplore.ieee.org/document/10019590">-->
<!--<font color="#0000E3">link</font></a> –>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>May. 3, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper "Vision-based Food Nutrition Estimation via RGB-D-->
<!--Fusion Network" has been accepted by Food Chemistry.-->
<!--<a href="https://doi.org/10.1016/j.foodchem.2023.136309">-->
<!--<font color="#0000E3">link</font></a>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Apr. 27, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--IEEE TMM Special Issue on When Multimedia Meets-->
<!--Food: Multimedia Computing for Food Data Analysis-->
<!--and Applications due July 1, 2023, and the-->
<!--submission system for this TMM SI is open. <a-->
<!--href="https://mp.weixin.qq.com/s/XSOvkHizfbp_bviN7KZTSA"><font-->
<!--color="#0000E3">link</font></a></p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Jan. 14, 2023</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper "Large Scale Visual Food Recognition"-->
<!--has been accepted by IEEE Transactions on-->
<!--Pattern Analysis and Machine Intelligence.-->
<!--<a href="https://ieeexplore.ieee.org/document/10019590">-->
<!--<font color="#0000E3">link</font></a>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Dec. 28, 2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper"A Survey on Future Action-->
<!--Anticipation in Videos" has been accepted by-->
<!--Chinese Journal of Computers.-->
<!--<!– <a href="https://www.cifst.org.cn/a/dynamic/tongzhi/20221209/2633.html">-->
<!--<font color="#0000E3">link</font></a> –>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Dec. 12, 2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The workshop “Food Computing-->
<!--Technologies and Applications” will be-->
<!--held in conjunction with the 19th Annual-->
<!--Meeting of Chinese Institute of Food-->
<!--Science and Technology (CIFST) on-->
<!--December 15, 2022, and please refer to-->
<!--the website for more details:-->
<!--<a href="https://www.cifst.org.cn/a/dynamic/tongzhi/20221209/2633.html">-->
<!--<font color="#0000E3">link</font></a>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Aug. 25,-->
<!--2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--IEEE TMM Special Issue on When-->
<!--Multimedia Meets Food: Multimedia-->
<!--Computing for Food Data Analysis and-->
<!--Applications due July 1, 2023, and-->
<!--please refer to the website for more-->
<!--details:-->
<!--<a href="https://signalprocessingsociety.org/blog/ieee-tmm-special-issue-when-multimedia-meets-food-multimedia-computing-food-data-analysis-and">-->
<!--<font color="#0000E3">link</font></a>-->
<!--</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<!–-->
<!--<font color="#000080"><b><i>Aug. 01, 2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The paper “Ingredient-Guided Region Discovery and Relationship Modeling for Food Category-Ingredient Prediction.” is accepted by IEEE Transactions on Image Processing 2022.</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i> </p> –>-->
<!--<!–-->
<!--<font color="#000080"><b><i>Jul. 16, 2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i><p style="text-align:justify; text-justify:inter-ideograph;">The paper “Rethinking the Optimization of Average Precision: Only Penalizing Negative Instances before Positive Ones Is Enough.” is accepted by AAAI2022.</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i> </p> –>-->
<!--<font color="#000080"><b><i>Jul. 10,-->
<!--2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper “Ingredient-Guided-->
<!--Region Discovery and-->
<!--Relationship Modeling for Food-->
<!--Category-Ingredient Prediction”-->
<!--is accepted by IEEE Transactions-->
<!--on Image Processing.</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Jun. 30,-->
<!--2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The workshop “AI4Food: Food-->
<!--intelligent analysis and-->
<!--application” will be held in-->
<!--conjunction with ChinaMM2022-->
<!--on June 30, 2022, and please-->
<!--refer to the website for-->
<!--more details:-->
<!--</p><a-->
<!--href="http://chinamm.csig.org.cn/2022/forum.html">-->
<!--<font color="#0000E3">http://chinamm.csig.org.cn/2022/forum.html</font></a></p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i></p>-->
<!--<font color="#000080"><b><i>Mar. 8,-->
<!--2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper “Applications-->
<!--of knowledge graphs for-->
<!--the food science and-->
<!--industry” is accepted by-->
<!--Patterns (Cell-->
<!--Press).</p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px"><i>-->
<!--</p>-->
<!--<font color="#000080"><b><i>Feb.-->
<!--13, 2022</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper “A review-->
<!--on vision-based-->
<!--analysis for-->
<!--automatic dietary-->
<!--assessment” is-->
<!--accepted by Trends-->
<!--in Food Science &-->
<!--Technology-->
<!--(IF:16.002). </p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i></p>-->
<!--<font color="#000080"><b><i>Dec.-->
<!--1,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The paper-->
<!--“Rethinking the-->
<!--Optimization of-->
<!--Average-->
<!--Precision: Only-->
<!--Penalizing-->
<!--Negative-->
<!--Instances before-->
<!--Positive Ones is-->
<!--Enough” is-->
<!--accepted by-->
<!--AAAI2022. </p>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i></p>-->
<!--<font color="#000080"><b><i>Oct.-->
<!--24,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The videos-->
<!--of the-->
<!--ICCV2021-->
<!--workshop-->
<!--“LargeFineFoodAI:-->
<!--Large-Scale-->
<!--Fine-Grained-->
<!--Food-->
<!--AnalysIs”-->
<!--can be-->
<!--available-->
<!--from the-->
<!--website: </p>-->
<!--<a href="https://foodai-workshop.meituan.com/foodai2021.html#index">-->
<!--<font color="#0000E3">https://foodai-workshop.meituan.com/foodai2021.html#index</font></a>-->
<!--</font>-->
<!--<p></p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i></p>-->
<!--<font color="#000080"><b><i>Oct.-->
<!--11,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The-->
<!--workshop-->
<!--“LargeFineFoodAI:-->
<!--Large-Scale-->
<!--Fine-Grained-->
<!--Food-->
<!--AnalysIs”-->
<!--will be-->
<!--held in-->
<!--conjunction-->
<!--with-->
<!--ICCV on-->
<!--October-->
<!--16,-->
<!--2021,-->
<!--and-->
<!--please-->
<!--refer to-->
<!--the-->
<!--website-->
<!--for more-->
<!--details:-->
<!--<a href="https://foodai-workshop.meituan.com/foodai2021.html#index">-->
<!--<font color="#0000E3">https://foodai-workshop.meituan.com/foodai2021.html#index</font></a>-->
<!--</p>-->
<!--</font>-->
<!--</p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i>-->
<!--<font color="#000080"><b><i>Jul.-->
<!--5,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The-->
<!--paper-->
<!--“FoodLogoDet-1500:-->
<!--A-->
<!--Dataset-->
<!--for-->
<!--Large-Scale-->
<!--Food-->
<!--Logo-->
<!--Detection-->
<!--via-->
<!--Multi-Scale-->
<!--Feature-->
<!--Decoupling-->
<!--Network”-->
<!--is-->
<!--accepted-->
<!--by-->
<!--ACM-->
<!--MM2021. </p>-->
<!--</font>-->
<!--</p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i>-->
<!--<font color="#000080"><b><i>May-->
<!--26,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--Dr.-->
<!--Weiqing-->
<!--Min-->
<!--was-->
<!--selected-->
<!--as-->
<!--one-->
<!--Member-->
<!--of-->
<!--the-->
<!--Youth-->
<!--Editorial-->
<!--Board-->
<!--of-->
<!--Smart-->
<!--Agriculture.</p>-->
<!--</font>-->
<!--</p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i>-->
<!--<font color="#000080"><b><i>Apr.-->
<!--29,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The-->
<!--paper-->
<!--“What-->
<!--If-->
<!--We-->
<!--Could-->
<!--Not-->
<!--See?-->
<!--Counterfactual-->
<!--Analysis-->
<!--for-->
<!--Egocentric-->
<!--Action-->
<!--Anticipation”-->
<!--is-->
<!--accepted-->
<!--by-->
<!--IJCAI-->
<!--2021. </p>-->
<!--</font>-->
<!--</p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i>-->
<!--<font color="#000080"><b><i>Apr.-->
<!--9,-->
<!--2021</b></font><br><br>-->
<!--</i>-->
<!--<font color="#666666">-->
<!--<i>-->
<!--<p style="text-align:justify; text-justify:inter-ideograph;">-->
<!--The-->
<!--workshop-->
<!--“LargeFineFoodAI:-->
<!--Large-Scale-->
<!--Fine-Grained-->
<!--Food-->
<!--AnalysIs”-->
<!--will-->
<!--be-->
<!--held-->
<!--in-->
<!--conjunction-->
<!--with-->
<!--ICCV-->
<!--2021.-->
<!--<a href="https://foodai-workshop.meituan.com/foodai2021.html#index">-->
<!--<font color="#0000E3">[link]</font></a>-->
<!--</p>-->
<!--</font>-->
<!--</p>-->
<!--<font color="#666666">-->
<!--<p style="margin-top: 10px">-->
<!--<i>-->
<!--<font color="#000080"><b><i>Mar.-->
<!--29,-->
<!--2021</b></font><br><br>-->
<!--</i>-->