MATLAB的写代码窗口-CPlot:CPlot

时间:2024-06-12 04:52:13
【文件属性】:

文件名称:MATLAB的写代码窗口-CPlot:CPlot

文件大小:51KB

文件格式:ZIP

更新时间:2024-06-12 04:52:13

系统开源

MATLAB的写代码窗口 CPlot #简介 Matlab的plot函数非常的强大,进行数据显示的效果非常的好,但是经常使用Opencv的同学如果每次将计算之后的数据导入到Matlab里显示又比较麻烦,因此决定写一类似于plot的C函数,用于在OpenCV中进行数据显示。设计一个Plot类,项目位于github上 #主要参数 private: //窗口大小 int window_height; int window_width; vector< vector >dataset;//一个Figure中显示的数据集 public: IplImage* Figure;// 用于显示的图片 // manual or automatic range //显示比例和范围 bool custom_range_y; double y_max; double y_min; double y_scale; bool custom_range_x; double x_max; double x_min; double x_scale; //边界大小 int border_size


【文件预览】:
CPlot-master
----example.jpg(53KB)
----plot.h(8KB)
----CMakeLists.txt(365B)
----main.cpp(2KB)
----README.md(3KB)

网友评论