我正在嘗試創建光分佈圖。我想要完成這個問題的其中一個步驟:Statistical analysis on Bell shaped (Gaussian) curve。現在我有一個數組的數組。我希望數組元素的索引號位於圖的x軸上,並且索引中存儲的實際值位於y軸上。我正在嘗試使用OpenCV來做到這一點,但OpenCV的直方圖函數似乎只繪製了值的頻率,而沒有其他值。從值數組創建直方圖/繪圖
1
A
回答
0
我發現cvplot有用,儘管非常有限:http://code.google.com/p/cvplot/
此外,它是相當容易嵌入蟒和飼料matplotlib它從C命令++。我用它來製作漂亮的圖表,這絕對不會從cvplot獲得。 這裏是一個快速和髒類,隨後的例子,但是沒有DOCO(當然有DOCO的用於matplotlib堆):
// Interface to Python's Matplotlib
#include <Python.h>
using namespace std;
class PyPlot
{
private:
// Singleton Constructor
PyPlot() : locked(false)
{
Py_SetProgramName("argv[0]"); /* optional but recommended */
Py_Initialize();
PyRun_SimpleString(
"import numpy as np\n"
"import matplotlib.pyplot as plt\n"
"import matplotlib.text as text\n"
"import matplotlib as mpl\n"
);
}
~PyPlot()
{
Py_Finalize();
}
// prevent copies of singleton
PyPlot(PyPlot const&); // No implemention
void operator=(PyPlot const&); // No implemention
string to_string(double dval)
{
return std::to_string(long double(dval));
}
string to_string(int ival)
{
return std::to_string(long long(ival));
}
public:
// get singleton instance
static PyPlot& getInstance()
{
static PyPlot instance; // Guaranteed to be destroyed.
// Instantiated on first use.
return instance;
}
// prevent reentry to Matplotlib's show()
bool locked;
inline void print_time()
{
PyRun_SimpleString("from time import time,ctime\n"
"print 'Today is',ctime(time())\n");
}
inline void exec(string command)
{
PyRun_SimpleString(command.c_str());
}
inline void show()
{
locked = true;
exec("plt.show()\n");
locked = false;
}
inline void title(string s, string args = "")
{
string command = "plt.title(r'" + s + "'";
if(args.length() != 0)
command += ", " + args;
command += ")\n";
exec(command);
}
inline void xlabel(string s, string args = "")
{
string command = "plt.xlabel(r'" + s + "'";
if(args.length() != 0)
command += ", " + args;
command += ")\n";
exec(command);
}
inline void ylabel(string s, string args = "")
{
string command = "plt.ylabel(r'" + s + "'";
if(args.length() != 0)
command += ", " + args;
command += ")\n";
exec(command);
}
inline void legend(string args = "")
{
string command = "plt.legend(";
if(args.length() != 0)
command += args;
command += ")\n";
exec(command);
}
template <typename T>
inline void define_vector(string name, vector<T> values)
{
string command = name + " = [";
vector<T>::iterator it;
for(it = values.begin(); it != values.end(); it++)
{
command += to_string(*it);
if(it + 1 != values.end())
command += ", ";
}
command += "]\n";
exec(command);
}
template <typename T>
inline void plot(vector<T> x, vector<T> y, string args = "")
{
define_vector("x", x);
define_vector("y", y);
string command = "plt.plot(x, y";
if(args.length() != 0)
command += ", " + args;
command += ")\n";
exec(command);
}
template <typename T>
inline void plot(vector<T> y, string args = "")
{
define_vector("y", y);
vector<int> x;
for(unsigned int i = 0; i < y.size(); i ++)
x.push_back(i);
define_vector("x", x);
string command = "plt.plot(x, y";
if(args.length() != 0)
command += ", " + args;
command += ")\n";
exec(command);
}
inline void example()
{
double xa[] = {0.5, 0.7, 0.9 , 1.3 , 1.7 , 1.8};
vector<double> x;
x.assign(xa, xa + 6);
double ya[] = {0.1 , 0.2 , 0.75 , 1.5 , 2.1 , 2.4};
vector<double> y;
y.assign(ya, ya + 6);
plot(x, y);
plot(x, y, "'go', markersize=20");
exec(
"plt.xticks(np.arange(0,3))\n"
"plt.yticks(np.arange(0,2.5,0.2))\n"
);
xlabel("x axis");
ylabel("y axis");
title("My Plot Example");
show();
}
};
#endif
然後使用這樣的:
PyPlot &plt = PyPlot::getInstance();
std::vector<int> values;
plt.exec("mpl.rcParams['font.family']='Times New Roman'\n"
"mpl.rcParams['lines.linewidth'] = 2\n"
"mpl.rcParams['axes.linewidth'] = 3\n"
"mpl.rc('xtick', labelsize=12)\n"
"mpl.rc('ytick', labelsize=12)\n"
"ax = plt.gca()\n"
"ax.set_ylim(0, 100)\n"
);
plt.plot(values, "'go-', label='values'");
plt.ylabel("Value", "fontsize=14");
plt.xlabel("Index", "fontsize=14");
plt.show();
這有matplotlib命令需要創建一個直方圖: http://matplotlib.org/examples/api/histogram_demo.html
當然,你需要Python安裝。所有與Python 2.7.3/Win 7/VS2010/OpenCV 2.4.4工作正常
相關問題
- 1. 從3個不同的直方圖創建圖像直方圖
- 2. 從單元格值繪製直方圖
- 3. 繪製直方圖與二維數組
- 4. 任何方式與matplotlib.pyplot創建直方圖,而不繪製直方圖?
- 5. 創建點的組直方圖的gnuplot
- 6. OpenCV:從多個浮點數組創建直方圖
- 7. 從計數向量繪製直方圖
- 8. 從數組中的數據繪製直方圖
- 9. 從子集函數創建的子集中創建直方圖
- 10. 從出現列表創建「直方圖」
- 11. 繪製圖形直方圖
- 12. 繪製直方圖
- 13. 繪製直方圖
- 14. 繪製直方圖
- 15. 如何創建直方圖
- 16. Python - 創建直方圖
- 17. 創建直方圖OCaml
- 18. 創建從位圖繪製
- 19. 試圖用ZedGraph創建直方圖
- 20. 的Python/Pyside:創建圖像直方圖
- 21. EmguCV:創建圖像直方圖 - 錯誤
- 22. C++試圖創建直方圖
- 23. 在直方圖/條形圖中繪製兩個分類數組?
- 24. 根據數據數組創建直方圖的顏色映射
- 25. WinRT中RGB值的直方圖繪製
- 26. 繪製文本值的直方圖
- 27. Python:在numpy數組中創建具有不同數值的堆棧直方圖
- 28. 如何創建直方圖的直方圖?
- 29. 從字典中繪製直方圖
- 30. GGPLOT2多直方圖圖表描繪僅單個直方圖