openFrameworksはC++で書かれており、まだまだ使い慣れない。
備忘録として、デモ画面上にテキスト文字を表示する方法を残しておく。
変数等を表示すると便利。
結論として、下記のようにofDrawBitmapStringを使うと良い。
1 2 3 | string thresholdMsg = "threshold:" + ofToString( threshold ); ofDrawBitmapString( thresholdMsg, 20, 600); |
今回の例では、キー入力でthresholdの値を変更可能としている。
そのため、現在のthresholdの値を画面上に表示している。
まずはthresholdMsgという変数を用意し、thresholdをテキストに変換する。
その後、ofDrawBitmapStringを使ってx軸=20, y軸=600の位置に文字を表示している。