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=gbk" /> --> <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; } 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; } .foot{ width:100%; height: 50px; background-color:#CCCCCC; } --> </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--> <div class="content" style="width:100%; height:2900px; background-color:;"> <div style="margin-left:auto; margin-right:auto; width:965px;"> <div style="width:956px; background-color:#999999; margin-top:3px;"> <div style="float:left; width:200px; height:470px;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:450px; border-left:1px #888888 solid;"></div> </div> <div style="float:right; width:740px; 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">Conference Venue</p> </div> <p class="rightcontent"> School of Information Science and Engineering<br> Shandong University<br> No.72 Binhai Highway, Jimo District, Qingdao, Shandong, China. </p> <!-- <p class="rightcontent"> --> <!-- No.3663, North Zhongshan Road, Putuo District, Shanghai, China --> <!-- </p> --> <!-- <p class="rightcontent"> --> <!-- Email address: <a href='cisp-bmei@ecnu.edu.cn'>cisp-bmei@ecnu.edu.cn</a> --> <!-- </p> --> <!-- <p class="rightcontent"> --> <!-- Registration location: lobby on the first floor of Yifulou --> <!-- </p> --> <!-- <p class="rightcontent">--> <!-- (中英文对照):--> <!-- </p>--> <!-- <tr> --> <!-- <img src="images/yifulou.jpg" width="300" border="0"/> --> <!-- </tr> --> <!-- <p class="rightcontent"> --> <!-- <a href="http://www.cisp-bmei.cn/overview.pdf"target="_blank">http://www.cisp-bmei.cn/overview.pdf</a> --> <!-- </p> --> <p class="rightcontent"> Qingdao Attractions (青岛景点): </p> <!-- <div style=" margin:auto; width: 250px; text-align:center;"><img src="C:\Users\nwffl\Desktop\shenxianju.png" /><br/>文字</div>--> <div style=" margin:auto; width: 600px; text-align:center;"> <!--改width大小改居中--> <table> <tr> <img src="images/Lao Mountain.jpg" width="600" border="0"/> </tr> <tr> Lao Mountain(崂山) </tr> <br><br> <tr> <img src="images/First Seaside Bathing Beach.jpg" width="600" border="0"/> </tr> <tr> First Seaside Bathing Beach(第一海水浴场) </tr> <br><br> <tr> <img src="images/Sea Bridge.jpg" width="600" border="0"/> </tr> <tr> Sea Bridge(栈桥) </tr> <br><br> <tr> <img src="images/Olympic Sailing Center.jpg" width="600" border="0"/> </tr> <tr> Olympic Sailing Center(奥帆中心) </tr> <br><br> <tr> <img src="images/Wusi Square.jpg" width="600" border="0"/> </tr> <tr> Wusi Square(五四广场) </tr> <br><br> <tr> <img src="images/Qingdao Beer Museum.jpg" width="600" border="0"/> </tr> <tr> Qingdao Beer Museum(青岛啤酒博物馆) </tr> </table> </div> <div style="width:100%; "> <br> <!--<p class="rightcontent">Huaqiao International Expo Center</p> <p class="rightcontent">1598 Greenland Avenue, Huaqiao Economic Development Zone, Kunshan, Suzhou, China.</p> <p class="rightcontent">昆山市花桥经济开发区绿地大道1598号花桥国际博览中�?/p> <!-- <p></p> --> <!-- <p class="rightcontent"><strong>Registration (13 October 10:00 - 21:00)�?/strong>Science Building, 5th Floor A504</p> --> <!-- <p class="rightcontent"><strong>Registration & Opening Ceremony & Keynotes (14 October morning)�?/strong>Lecture Hall, Yifu Building</p> --> <!-- <p class="rightcontent"><strong>Oral & Posters (14 October afternoon - 15 October afternoon)�?/strong>Science Building, 5th Floor, A508 & A510</p> --> <!-- <p class="rightcontent"><strong>Contact Phone: </strong>+862154345219</p> --> <!-- <p class="rightcontent"><strong>Contact Person: </strong>Chen Yuan (Email: yuanchen2018@163.com)</p> --> <!-- <p></p> --> <!-- <p class="rightcontent"><strong>13鏃ユ姤鍒?10:00 - 21:00)�?/strong>鐞嗙澶ф�?灞侫504鎶ュ憡鍘?/p> --> <!-- <p class="rightcontent"><strong>14鏃ヤ笂鍗堟姤鍒般€佸ぇ浼氬紑骞曚互鍙奒eynotes�?/strong>閫稿か妤兼姤鍛婂�?/p> --> <!-- <p class="rightcontent"><strong>14鏃ヤ笅鍗堝強15鏃ヤ綔鑰呮姤鍛婏�?/strong>鐞嗙澶ф�?�?</p> --> </div> <!-- <div> --> <!-- <p class="rightcontent"><strong>Map: <a href=images/map.jpg>Download Map</a></strong></p> --> <!-- <img src=images/map-min.jpg width="90%" > --> <!-- </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;"> <!–改width大小改居中–>--> <!-- <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;"> <!-- <a href="http://www.cisp-bmei.cn/schedule.png"> --> <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> --> <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>