我QCustomPlot
在 Qt 上使用 来绘制视频序列的各个方面。
我想定义我的图表的背景,以便沿着我的yAxis
. 我的图表是这样的:
我想在我的定义间隔yAxis
得到这样的东西:
最后一张图片属于一个名为 PEAT 的程序,用于分析可能引发癫痫发作的视频。我指的是他们定义沿yAxis
.
有什么建议么?
我QCustomPlot
在 Qt 上使用 来绘制视频序列的各个方面。
我想定义我的图表的背景,以便沿着我的yAxis
. 我的图表是这样的:
我想在我的定义间隔yAxis
得到这样的东西:
最后一张图片属于一个名为 PEAT 的程序,用于分析可能引发癫痫发作的视频。我指的是他们定义沿yAxis
.
有什么建议么?
要在图中有一个区域,您可以添加两个定义区域边界的图表:
//Upper bound
customPlot->addGraph();
QPen pen;
pen.setStyle(Qt::DotLine);
pen.setWidth(1);
pen.setColor(QColor(180,180,180));
customPlot->graph(0)->setName("Pass Band");
customPlot->graph(0)->setPen(pen);
customPlot->graph(0)->setBrush(QBrush(QColor(255,50,30,20)));
//Lower bound
customPlot->addGraph();
customPlot->legend->removeItem(customPlot->legend->itemCount()-1); // don't show two Band graphs in legend
customPlot->graph(1)->setPen(pen);
接下来,您可以使用以下方法填充边界之间的区域setChannelFillGraph
:
customPlot->graph(0)->setChannelFillGraph(customPlot->graph(1));
也不要忘记为 bounds 分配相关值:
QVector<double> x(250);
QVector<double> y0(250), y1(250);
for (int i=0; i<250; ++i)
{
x[i] = i ;
y0[i] = upperValue;
y1[i] = lowerValue;
}
customPlot->graph(0)->setData(x, y0);
customPlot->graph(1)->setData(x, y1);
您还可以添加其他图表以显示一些边界,例如您的示例中的边界。