我目前正在开发一个涉及在Android手机上使用心电图信号的项目。
我决定是否应该为Android创建自己的信号处理库,因为我似乎无法在网上找到任何信号处理库。
有人知道我可以使用的图书馆,还是更容易,更快地制作我自己的图书馆?
由于
答案 0 :(得分:0)
我使用AndroidPlot实时绘制心电信号。我使用的传感器是4导联心电图,可以通过蓝牙提供RL和LL。这是绘图的示例,但您可以随意根据需要进行修改。如果最近的AndroidPlot不支持此处使用的任何方法,请研究并更改它。最后这种方法效率不高,因为它不断重绘情节,我相信AndroidPlot支持在新版本中更好的实现:
这是您在XML中定义绘图的方式:
<com.androidplot.xy.XYPlot
android:id="@+id/ecgSPlot"
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
title="ECG History" />
这是绘制它的代码:
public static XYPlot ecgHistoryPlot = null;
public static SimpleXYSeries ecgLevelsSeries = new SimpleXYSeries(
"ECG History");
private static LinkedList<Integer> ecgRaLlHistory = new LinkedList<Integer>();
private static LinkedList<Integer> ecgLaLlHistory = new LinkedList<Integer>();
/**
* This method will set plot paramaters including look and label
*/
private void setMergedPlotParam() {
ecgHistoryPlot = (XYPlot) viewRTPlotting.findViewById(R.id.ecgSPlot);
ecgHistoryPlot
.setRangeBoundaries(-180, 359, XYPlot.BoundaryMode.FIXED);
ecgHistoryPlot.setDomainBoundaries(0, 60, XYPlot.BoundaryMode.FIXED);
ecgHistoryPlot.addSeries(ecgRaLlHistorySeries,
LineAndPointRenderer.class,
new LineAndPointFormatter(Color.rgb(0, 0, 255), Color.BLACK));
ecgHistoryPlot.addSeries(ecgLaLlHistorySeries,
LineAndPointRenderer.class,
new LineAndPointFormatter(Color.rgb(255, 0, 0), Color.BLACK));
ecgHistoryPlot.setDomainStepValue(5);
ecgHistoryPlot.setTicksPerRangeLabel(3);
ecgHistoryPlot.setDomainLabel("Time");
ecgHistoryPlot.getDomainLabelWidget().pack();
ecgHistoryPlot.setRangeLabel("Level");
ecgHistoryPlot.getRangeLabelWidget().pack();
ecgHistoryPlot.disableAllMarkup();
}
/**
* This method will update plot data
*/
private static void drawMergedPlot(int EcgRaLl, int EcgLaLl) {
Number[] seriesRNumbers = { EcgRaLl, EcgLaLl };
ecgLevelsSeries.setModel(Arrays.asList(seriesRNumbers),
SimpleXYSeries.ArrayFormat.XY_VALS_INTERLEAVED);
if (ecgRaLlHistory.size() > HISTORY_SIZE
|| ecgLaLlHistory.size() > HISTORY_SIZE) {
ecgRaLlHistory.removeFirst();
ecgLaLlHistory.removeFirst();
}
ecgRaLlHistory.addLast(EcgRaLl);
ecgLaLlHistory.addLast(EcgLaLl);
ecgRaLlHistorySeries.setModel(ecgRaLlHistory,
SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
ecgLaLlHistorySeries.setModel(ecgLaLlHistory,
SimpleXYSeries.ArrayFormat.Y_VALS_ONLY);
ecgSHistoryPlot.redraw();
}
/**
* This method should be called when there's new data.
*/
private static void onSensorReading(int EcgRaLl, int EcgLaLl) {
drawMergedPlot(EcgRaLl, EcgLaLl);
}