CINXE.COM

CISP-BMEI 2025

<!DOCTYPE html PUBliC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/2199/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> --> <meta name="keywords" content="Image and Video Processing,Signal Processing,BioMedical Engineering,Bioinformatics, Systems Biology, and Medical Informatics,Informatics: Fundamental Technologies Important to Medicine and Biology,CISP,BMEI, CISP'21,BMEI'21,International Conference,Coding Signal identification and prediction,image restoration, video analysis,Biomedical signal processing and analysis, Medical data storage" /> <meta name="description" content="2021 14th International Congress on Image and Signal Processing, BioMedical Engineering and Informatics(CISP-BMEI 2021), Shanghai China " /> <title>CISP-BMEI 2025</title> <link href="css/mobanwang.css" type="text/css" rel="stylesheet" media="screen" /> <script src="js/jquery-1.8.0.min.js" type="text/javascript" language="javascript"></script> <script type="text/javascript" language="javascript"> var $ = function (id) { return "string" == typeof id ? document.getElementById(id) : id; }; var Extend = function(destination, source) { for (var property in source) { destination[property] = source[property]; } return destination; } var CurrentStyle = function(element){ return element.currentStyle || document.defaultView.getComputedStyle(element, null); } var Bind = function(object, fun) { var args = Array.prototype.slice.call(arguments).slice(2); return function() { return fun.apply(object, args.concat(Array.prototype.slice.call(arguments))); } } var Tween = { Quart: { easeOut: function(t,b,c,d){ return -c * ((t=t/d-1)*t*t*t - 1) + b; } }, Back: { easeOut: function(t,b,c,d,s){ if (s == undefined) s = 1.70158; return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; } }, Bounce: { easeOut: function(t,b,c,d){ if ((t/=d) < (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t < (2/2.75)) { return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; } else if (t < (2.5/2.75)) { return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; } else { return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; } } } } //容器对象,滑动对象,切换数量 var SlideTrans = function(container, slider, count, options) { this._slider = $(slider); this._container = $(container);//容器对象 this._timer = null;//定时器 this._count = Math.abs(count);//切换数量 this._target = 0;//目标值 this._t = this._b = this._c = 0;//tween参数 this.Index = 0;//当前索引 this.SetOptions(options); this.Auto = !!this.options.Auto; this.Duration = Math.abs(this.options.Duration); this.Time = Math.abs(this.options.Time); this.Pause = Math.abs(this.options.Pause); this.Tween = this.options.Tween; this.onStart = this.options.onStart; this.onFinish = this.options.onFinish; var bVertical = !!this.options.Vertical; this._css = bVertical ? "top" : "left";//方向 //样式设置 var p = CurrentStyle(this._container).position; p == "relative" || p == "absolute" || (this._container.style.position = "relative"); this._container.style.overflow = "hidden"; this._slider.style.position = "absolute"; this.Change = this.options.Change ? this.options.Change : this._slider[bVertical ? "offsetHeight" : "offsetWidth"] / this._count; }; SlideTrans.prototype = { //设置默认属性 SetOptions: function(options) { this.options = {//默认值 Vertical: true,//是否垂直方向(方向不能改) Auto: true,//是否自动 Change: 0,//改变量 Duration: 80,//滑动持续时间 Time: 10,//滑动延时 Pause: 3000,//停顿时间(Auto为true时有效) onStart: function(){},//开始转换时执行 onFinish: function(){},//完成转换时执行 Tween: Tween.Quart.easeOut//tween算子 }; Extend(this.options, options || {}); }, //开始切换 Run: function(index) { //修正index index == undefined && (index = this.Index); index < 0 && (index = this._count - 1) || index >= this._count && (index = 0); //设置参数 this._target = -Math.abs(this.Change) * (this.Index = index); this._t = 0; this._b = parseInt(CurrentStyle(this._slider)[this.options.Vertical ? "top" : "left"]); this._c = this._target - this._b; this.onStart(); this.Move(); }, //移动 Move: function() { clearTimeout(this._timer); //未到达目标继续移动否则进行下一次滑动 if (this._c && this._t < this.Duration) { this.MoveTo(Math.round(this.Tween(this._t++, this._b, this._c, this.Duration))); this._timer = setTimeout(Bind(this, this.Move), this.Time); }else{ this.MoveTo(this._target); this.Auto && (this._timer = setTimeout(Bind(this, this.Next), this.Pause)); } }, //移动到 MoveTo: function(i) { this._slider.style[this._css] = i + "px"; }, //下一个 Next: function() { this.Run(++this.Index); }, //上一个 Previous: function() { this.Run(--this.Index); }, //停止 Stop: function() { clearTimeout(this._timer); this.MoveTo(this._target); } }; </script> <style type="text/css"> <!-- *{ margin:0px; padding:0px; border:none; } select{ border:1px solid rgb(169,169,169); } body{ font-family: arial, Helvetica, sans-serif; } .header { text-align: center; width: 100%; height: 50px; background-color:#CCCCCC; } .content{ text-align: center; width: 100%; height: 50px; } .bartitle{ /*color:#E40300;*/ color:#333333; font-size:20px; padding-top:10px; font-weight:bold; text-align:left; padding-left:10px; } li{ font-size:14px; color:#E40300; text-align:left; height:24px; list-style:circle; } li a{ color:#E40300; text-decoration:none; } li a:hover{ color:#000000; font-weight:bold; } .rightcontent{ color:#000000; font-size:14px; line-height:20px; text-align:justify; padding:10px 5px 10px 5px; margin-bottom:5px; } .selcontent{ color:#000000; font-size:45px; line-height:40px; text-align:justify; } .foot{ width:100%; height: 50px; background-color:#CCCCCC; } .style34 { COLOR: #0066ff; } .style35 { COLOR: #0033ff; } .style36 { FONT-FAMILY: Arial, Helvetica, sans-serif; } .style37 { FONT-SIZE: 14px; } .style38 { COLOR: #ff0000; font-weight: bold; } .style39{ color: #0099FF; font-weight: bold; } .style40{ font-weight: bold; } .style41 { COLOR: #ff0000; } .style42{ color: #3366FF; } .style43{ color: #000000; } .style72 { COLOR: #000099; font-weight: bold; } --> </style> </head> <body bgcolor="#FFFFFF"> <div style="width:100%; height:300px; background-color:#FFFFFF;"> <div style="float:left; width:100%; height:300px; background-color:#CCCCCC;"> <div style="width: 50%; height:300px; float:left;"><img style="float:right; margin-right:480px;" src="images/bgl.png"/></div> <div style="width: 50%; height:300px; float:left;"><img style="float:left; margin-left:480px;" src="images/bgr.png"/></div> </div> <div id="idContainer2" class="container" style="margin:auto; position:relative; top: -300px;"> <table id="idSlider2" borde="0" cellspacing="0" cellpadding="0"> <tbody> <tr> <td class="td_f"><img src="images/1.png"/></td> <td class="td_f"><img src="images/2.png"/></td> <td class="td_f"><img src="images/3.png"/></td> <td class="td_f"><img src="images/4.png"/></td> <td class="td_f"><img src="images/5.png"/></td> </tr> </tbody> </table> <ul id="idNum" class="num"></ul> </div> </div> <!--begin content--> <!--因为增加或者减少Keynote信息导致页面大小不合适调下面的height--> <div class="content" style="width:100%; height:2800px; background-color:;"> <div style="margin-left:auto; margin-right:auto; width:975px;"> <div style="width:966px; background-color:#999999; margin-top:3px;"> <div style="float:left; width:200px; height:1500px;background-color:#FFFFFF;"> <div style="width:100%; height:35px; border-bottom:#888888 1px solid; background-image:url(images/barbottom.png); background-repeat:no-repeat; background-position:9px -9px;"> <p class="bartitle">Quick Links</p></div> <div style="width:100%; "> <ul style="padding-left:30px; padding-top:10px;"> <li><a href="/main.htm">Home</a></li> <li> <a href="/call.html">Important Dates</a> <!-- <p style="color: black"><strong>Important Dates</strong></p>--> </li> <li> <a href="/topics.html">Topics</a> </li> <li> <a href="/submission.html">Submission</a> </li> <li> <a href="/final.html">Final Submission</a> </li> <li> <a href="/organizing.html">Organizing Committee</a> </li> <li> <a href="/program.html">Program Committee</a> </li> <li> <a href="/keynotes.html">Keynotes</a> </li> <li> <a href="/venue.html">Conference Venue</a> </li> <li> <a href="/registration.html">Registration</a> </li> <li><a href="/album.html">Album</a></li> <li><a href="/contact.html">Contact Us</a></li> </ul> </div> </div> <div style="float:left; margin-left:8px;"> <div style="height:35px;"></div> <div style="height:700px; border-left:1px #888888 solid;"></div> </div> <div style="float:right; width:740px; background-color:#FFFFFF;"> <div style="width:100%; height:50px; border-bottom:#888888 1px solid; background-image:url(images/barbottom.png); background-repeat:no-repeat; background-position:9px -9px;"><p class="bartitle">Keynotes</p></div> <div style="width:100%;"> <p class="rightcontent"><br>To be announced.</p> <table border="0"> <!-- <tr>--> <!-- <td width="40%" align="left" valign="top">--> <!-- <img src="images/akay.jpg" width=100 border=0><br>--> <!-- <a href="http://www.bme.uh.edu/faculty/akay" target=_blank><b>Metin Akay</b></a><br>--> <!-- <a href="https://www.embs.org/">IEEE EMBS</a> President&lt;!&ndash;-Elect&ndash;&gt;<br>--> <!-- Founding Chair, John S Dunn Endowed Chair Professor<br>--> <!-- University of Houston, Department of Biomedical Engineering <br>--> <!-- Founding editor-in-chief of the IEEE Biomedical Engineering Book Series,--> <!-- FIEEE<br>--> <!-- </td>--> <!-- </tr>--> <!-- <tr> --> <!-- <td width="40%" align="left" valign="top"> --> <!-- <br> --> <!-- To be anounced.<br> --> <!-- </td> --> <!-- </tr> --> <!-- <tr> --> <!-- <td width="40%" align="left" valign="top"> --> <!-- <br> --> <!-- <img src="images/Metin Akay.png" width=100 border=0><br> --> <!-- <b>Metin Akay, PhD</b><br> --> <!-- Founding Chair & John S Dunn Endowed Chair Professor<br> --> <!-- Department of Biomedical Engineering<br/> --> <!-- Cullen College of Engineering<br> --> <!-- University of Houston<br> --> <!-- Chair, IEEE BRAIN Initiative<br> --> <!-- Past President, IEEE Engineering in Medicine and Biology Society 2023-2025<br> --> <!-- Chair, International Academy of Medical and Biological Engineering 2022-2025<br> --> <!-- Chief Ambassador, IEEE Engineering in Medicine and Biology Society<br> --> <!-- <br>Prof. Metin Akay is currently the founding chair of the new Biomedical Engineering Department and the John S. Dunn professor of biomedical engineering at the University of Houston. He received his B.S. and M.S. in Electrical Engineering from the Bogazici University, Istanbul, Turkey in 1981 and 1984, respectively and a Ph.D. degree from Rutgers University in 1990.<br> --> <!-- <br>Dr. Akay has played a key role in promoting biomedical education in the world by writing and editing several books, editing several special issues of prestigious journals, including the Proc of IEEE, and giving more than hundred keynote, plenary and invited talks at international conferences, symposiums and workshops regarding emerging technologies in biomedical engineering.<br> --> <!-- <br>His Neural Engineering and Informatics Lab is interested in developing an intelligent wearable system for monitoring motor functions in Post-Stroke Hemiplegic Patients and detecting coronary artery disease. In addition, his lab is currently investigating the effect of nicotine on the dynamics of ventral tegmental area (VTA) dopamine neural networks as well as the detection of coronary occlusions.<br> --> <!-- <br><br/> --> <!-- </td> --> <!-- </tr> --> <!-- <tr> --> <!-- <td width="40%" align="left" valign="top"> --> <!-- <br> --> <!-- <img src="images/Ajay Kumar.jpg" width=100 border=0><br> --> <!-- <b>Ajay Kumar</b><br> --> <!-- Professor, Department of Computing, The Hong Kong Polytechnic University<br> --> <!-- Fellow of IEEE & IAPR; President of IEEE Biometrics Council (2021-2022)<br/> --> <!-- <br>Prof. Kumar is currently a Professor in the Department of Computing at The Hong Kong Polytechnic University, and Chair of the Departmental Learning and Teaching Committee (2019-2021). He received B.Eng. degree in 1990, M.Eng. in 1992, and a Ph.D. degree from The University of Hong Kong, Hong Kong, in 2001. He has earlier been working as an Assistant Professor, in Department of Electrical Engineering, Indian Institute of Technology Delhi, India from 2005-2007.<br/> --> <!-- <br>His current research interests include biometrics with an emphasis on contactless hand biometrics, vascular biometrics, iris recognition, and multimodal biometrics. He holds seven U.S. patents and has authored a book on Contactless 3D Fingerprint Identification. He has served on the IEEE Biometrics Council as the Vice President for publications from 2011 to 2015. He was on the Editorial Board of the IEEE Transactions on Information Forensics and Security (2010-2013), IEEE Transactions on Biometrics, Behavior and Identity Sciences (2018-2020). He has served on the program committees and organizing committee of several international conferences in the field of his research interest and recently as an area chair for CVPR 2019, CVPR 2020. Prof. Kumar was also the Program Chair for CVPR 2013-2020 Biometrics Workshops, ICEB 2010 (Hong Kong) and Program Co-Chair for IJCB 2011 (Washington DC), ICB 2013 (Madrid). He has also served as the General Chair of WIFS 2018 (Hong Kong) and as the General Co-Chair of IJCB 2014 (Tampa) and ISBA 2015 (Hong Kong).<br/> --> <!-- <br>Prof. Kumar is a Fellow of IAPR (since 2016), Fellow of IEEE (since 2018), recipient of ‘Faculty Award in 2018 for Outstanding Achievement in Research and Scholarly Activities’ and President’s Award in 2012 for ‘Excellent Performance in Research and Scholarly Activities (Team) in PolyU. He is currently on the Editorial Board of the IEEE Transactions on Pattern Analysis and Machine Intelligence (2019 onwards). He was President of IEEE Biometrics Council (2021-2022).<br/> --> <!-- <br><br/> --> <!-- </td> --> <!-- </tr> --> <!-- <tr> --> <!-- <td width="40%" align="left" valign="top"> --> <!-- <img src="images/xvjin.jpg" width=100 border=0><br> --> <!-- <b>Xu Jin</b><br> --> <!-- Full Professor, IEEE Fellow<br/> --> <!-- Editor-in-Chief, IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing School of Computer Science, China University of Geosciences<br> --> <!-- Wuhan 430078, China<br> --> <!-- <br> --> <!-- <br>Xu Jin, full professor of Peking University, received Ph.D. degrees both in science and engineering. He has published more than 300 academic papers, including more than 200 SCI indexed articles as the first author or correspondent; 5 monographs and 1 translation manuscripts. He has presided over more than ten major national projects, including the National Natural Science Foundation of China Key Project, Major International Cooperation Project, Major Instrument Special Project, 863 Program, National Defense Project, and National Key R&D Program, etc. In 2013, he won the second prize of National Natural Science as the first complete person. Additionally, he has been awarded two First Prizes in Natural Science by the Ministry of Education and one First Prize in Natural Science by Hubei Province, all as the first complete person. In academic terms, he was the first, second, fourth, fifth, seventh, eighth International Biomedical Conference chairman, he is the vice chairman of the China Institute of circuits and systems, the vice chairman of the cloud computing and Big Data Committee of the China Communications Society, the director of the China Cyberspace Security Association, and the chairman of the professional committee of biological computing and biological processing; Deputy editor in chief of " Artificial Intelligence Review" and "Journal of Electronics and Information", editor in chief of Journal of Guangzhou University (NATURAL SCIENCE EDITION), editorial board members of "Journal of Electronics", "Journal of Computer Science" and "Journal of Software", currently. His main research areas are graph theory and combinatorial optimization, novel computing, biological computing, information security, etc.<br/> --> <!-- Title: Geographic Optimal Transport for Heterogenous Data: Fusing Remote Sensing and Social Media<<br> --> <!-- <br> --> <!-- <b>Abstract:</b> The fusion of heterogeneous remote sensing and social media data has shown increasing potential in recent years, being gradually adopted in multiple modalities of data analytics. However, there are still several problems concerning the following drift problems: 1) the probability density functions may differ from different data sources, and 2) the geo-locations may not be perfectly aligned. The former problem can be generally solved by performing an alignment of representations in the source and target domains using, for instance, domain adaptation. The latter problem is seldom considered in the fusion of heterogeneous geographic data. In this paper, we present a new method called Geographic Optimal Transport (GOT) which aims at aligning representations and geo-locations in simultaneous fashion. A flood event that took place in 2013 in Boulder, Colorado, is taken as a case study to evaluate our GOT method. Here, we consider two remote sensing features derived from water indicators, i.e., the normalized difference vegetation index (NDVI) and the normalized difference water index (NDWI), for the fusion of Landsat 8 imagery and Twitter data. A comparison between our newly developed GOT and the traditional optimal transport (OT) is performed. Experimental results demonstrate that the proposed GOT can accurately align spatially biased geo-referenced tweets to the flood phenomena, leading to the conclusion that GOT can effectively fuse heterogenous remote sensing and social media data. --> <!-- </td> --> <!-- </tr> --> <!-- <tr>--> <!-- <td width="40%" align="left" valign="top">--> <!-- <img src="images/Liucl.jpg" width=100 border=0><br>--> <!-- <a href="http://www.nlpr.ia.ac.cn/liucl/" target=_blank><b>Cheng-Lin Liu</b></a><br>--> <!-- Fellow of the CAA, CAAI, IAPR and IEEE<br/>--> <!-- Director, <a href="http://www.nlpr.ia.ac.cn/cn/index.html">National Laboratory of Pattern Recognition</a> (NLPR)<br>--> <!-- Vice President, <a href="http://www.ia.cas.cn/">Institute of Automation</a> of <a href="https://www.cas.cn/">Chinese Academy of Sciences</a><br>--> <!-- Vice Dean, School of Artificial Intelligence, <a href="https://www.ucas.edu.cn/">University of Chinese Academy of Sciences</a> <br>--> <!-- </td>--> <!-- </tr>--> <!-- <tr>--> <!-- <td width="40%" align="left" valign="top">--> <!-- <br>--> <!-- <img src="images/DinggangShen.jpg" width=100 border=0><br>--> <!-- <a href="https://bme.shanghaitech.edu.cn/bme_en/" target=_blank><b>Dinggang Shen</b></a><br>--> <!-- IEEE/AIMBE/IAPR/MICCAI Fellow<br>--> <!-- Professor<br>--> <!-- Founding Dean, School of Biomedical Engineering<br>--> <!-- ShanghaiTech University<br>--> <!-- Editor-in-Chief, Frontiers in Radiology<br>--> <!-- Co-CEO, Shanghai United Imaging Intelligence Co., Ltd.<br>--> <!-- </td>--> <!-- </tr>--> </table> </div> </div> </div> </div> </div> <!--end content--> <div style="width:100%; height:200px;"> <div style=" margin:auto; width: 500px; text-align:center;"> <!--改width大小改居中--> <table border="0"> <tr> <!-- <td width="12%" align="center"><img src="images/IEEElogo.gif" height="90" border="0"/></td> --> <!-- <td width="12%" align="center"><img src="images/emb.gif" height="90" border="0"/></td> --> <td width="12%" align="center"><img src="images/shanda.jpg" height="90" border="0"></td> <td width="12%" align="center"><img src="images/MILOGO.gif" height="90" border="0"/></td> <td width="12%" align="center"><img src="images/cee.png" height="90" border="0"/></td> <td width="12%" align="center"><img src="images/ssit.jpg" height="90" border="0"/></td> <td width="12%" align="center"><img src="images/NAIS.jpg" height="90" border="0"/></td> <!-- <td width="12%" align="center"><img src="images/ssit.jpg" height="90" border="0"/></td> --> <!-- <td width="12%" align="center"><img src="images/sensor.png" height="90" border="0"></td> --> </tr> </table> </div> <div style=" margin:auto; width: 500px; text-align:center;"> <!--改width大小改居中--> <table border="0"> <tr> <!-- <td width="12%" align="center"><img src="images/ssit.jpg" height="90" border="0"/></td> --> <td width="12%" align="center"><img src="images/jishu.png" height="90" border="0"></td> <!-- <td width="12%" align="center"><img src="images/JIG.jpg" height="90" border="0"/></td> --> <!-- <td width="12%" align="center"><img src="images/NAIS.jpg" height="90" border="0"/></td> --> <!-- <td width="12%" align="center"><img src="images/SVS.PNG" height="90" border="0"/></td> --> </tr> </table> </div> </div> <!--<div style="width:100%; height:100px;">--> <!-- <div style=" margin:auto; width: 50%; text-align:center;"> &lt;!&ndash;改width大小改居中&ndash;&gt;--> <!-- <table border="0">--> <!-- <tr>--> <!-- <td width="12%" align="center">--> <!-- <img src="images/JIG.jpg" height="90" border="0"/>--> <!-- </td>--> <!-- </tr>--> <!-- </table>--> <!-- </div>--> <!--</div>--> <footer> <div class="copyright"> <div style=" margin:auto; width: 960px; text-align:center;"> <p style=" padding-top:15px; font-size:14px; color:#000000;">Copyright CISP-BMEI 2025, Designed by School of Communication & Electronic Engineering, East China Normal University, China</p> <a style=" padding-top:15px; font-size:14px; color:#000000;" href='https://beian.miit.gov.cn' target='_blank'>沪ICP备2025114600号-2</a><br/> <!-- <a style=" background:url(images/beian.png) no-repeat; padding-left:22px; font-size:14px; color:#000000;" href='http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=32058302002030' target='_blank'>苏公网安备 32058302002030号</a> --> </div> </div> </footer> <script language="javascript" type="text/javascript"> var forEach = function(array, callback, thisObject){ if(array.forEach){ array.forEach(callback, thisObject); }else{ for (var i = 0, len = array.length; i < len; i++) { callback.call(thisObject, array[i], i, array); } } } var st = new SlideTrans("idContainer2", "idSlider2", 5, { Vertical: false }); var nums = []; //插入数字 for(var i = 0, n = st._count - 1; i <= n;){ (nums[i] = $("idNum").appendChild(document.createElement("li"))).innerHTML = ++i; } forEach(nums, function(o, i){ o.onmouseover = function(){ o.className = "on"; st.Auto = false; st.Run(i); } o.onmouseout = function(){ o.className = ""; st.Auto = true; st.Run(); } }) //设置按钮样式 st.onStart = function(){ forEach(nums, function(o, i){ o.className = st.Index == i ? "on" : ""; }) } st.Run(); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10