0

我目前正在从事一个涉及在安卓手机上使用心电图信号的项目。

我正在决定是否应该为 android 制作自己的信号处理库,因为我似乎无法在网上找到任何东西。

有没有人知道我可以使用的库,或者制作我自己的库会更容易和更快吗?

谢谢

4

1 回答 1

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); 
}
于 2013-06-22T02:20:59.077 回答