2012-02-19 141 views
0

的直方圖是否可以在gnuplot中繪製[v(1); ...; v(i-1); v(i)]這樣的矩陣(直方圖)。這是stringstream的標準輸出< < cv :: Mat()。這是色相值0到180的y值。Gnuplot,Opencv。顯示cv :: Mat

[25; 0; 0; 0; 0; 0; 1; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 4; 0; 0; 0; 5; 0; 0; 0; 0; 0; 16; 0; 0; 0; 0; 0; 3; 0; 0; 0; 4; 0; 10; 0; 0; 1; 0; 0; 4; 0; 37; 3; 3; 0; 0; 11; 10; 7; 0; 0; 47; 0; 0; 16; 0; 18; 91; 8; 41; 34; 101; 22; 15; 149; 223; 45; 94; 25; 0; 312; 745; 53; 28; 166; 413; 253; 47; 682; 144; 63; 630; 48; 92; 222; 3; 253; 175; 1; 62; 7; 1; 80; 0; 40; 9; 0; 1; 0; 0; 2; 12; 0; 0; 0; 9; 1; 0; 0; 0; 0; 2; 0; 0; 0; 0; 0; 5; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 7; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0]

有關如何爲gnuplot顯示數據的簡短指南將很好。

回答

1

您有幾種選擇 (1)使用GNUPLOT-CPP包裝(點擊這裏下載:http://code.google.com/p/gnuplot-cpp/) 這將指導本身通過其教程/文檔

(2)簡單的解決方案。保存價值的文件,說「DATA.TXT」然後調用,從CPP(exec命令),如「plot.plt」腳本它看起來像:

#!/usr/bin/gnuplot -persist 

set terminal postscript 
set output "TXTFILE.ps" 
unset key 

#set title "Titel" 
set xlabel "cy/px" 
set ylabel "SFR" 
(...) 
set grid 

plot "DATA.txt" using 1:2 smooth csplines w l ls 1,\ 
    "DATA.txt" using 3:4 smooth csplines w l ls 2 
# EOF 

正如你所看到的,它會繪製您剛剛輸出的DATA.txt。使用谷歌gnuplot腳本f.e.上的所有以前的。