wavelib/about.html

28 lines
1.4 KiB
HTML
Raw Normal View History

2015-09-27 16:34:43 +08:00
<div data-ng-controller="TabsController">
2015-09-30 14:47:57 +08:00
<tabset justified="true" type="pills">
2015-09-27 16:34:43 +08:00
<tab heading="About">
<br/>
<p>Wavelib is a web implementation of C/C++ 1D Wavelet Transform codebase using Emscripten and javascript.</p>
<br/>
<p><b>Requirements</b> : HTML5 compliant modern web browser with javascript enabled. This webapp uses asm.js and angularjs that are not compatible with
2015-09-30 14:47:57 +08:00
older browsers. Internet Explorer >= 10.0</p>
2015-09-27 16:34:43 +08:00
<br/>
<p><b>Inputs</b> : You can enter the data vector using either the file input interface or data input interface. In either case, the input is just a
one dimensional data vector consisting only of numbers and only including common separators like commas or spaces. </p>
</tab>
<tab heading="Code">
<br/>
2016-05-29 20:01:40 +08:00
<p><b>C/C++ Codebase</b> is available at <a href="http://rafat.github.io/#/sites/wavelib/front" target="_blank">my github page</a></p>
2015-09-27 16:34:43 +08:00
<br/>
</tab>
<tab heading="Thanks">
<br/>
<ul>
<li><b>Emscripten</b> : <a href="https://kripken.github.io/emscripten-site/" target="_blank">https://kripken.github.io/emscripten-site/</a></li>
<li><b>Angularjs</b> : <a href="https://angularjs.org" target="_blank">https://angularjs.org</a></a></li>
2016-05-29 20:01:40 +08:00
<li><b>Plotly</b> : <a href="http://plot.ly/" target="_blank">http://plot.ly/</a></a></li>
2015-09-27 16:34:43 +08:00
</ul>
2016-05-29 20:01:40 +08:00
</tab>
2015-09-27 16:34:43 +08:00
</tabset>
</div>