前提・実現したいこと
openframeworksでのofxOpencvとofxBox2dの組み合わせプログラムの実行したい。
visual studio 2017使用
発生している問題・エラーメッセージ
コマンドプロンプトにおいて以下のように表示されました。実行してカメラで映した映像が画面に表示されるのですが、すぐに固まって消えてしまい、プログラムが終了してしまいます。以下のSETUPの下から4行目の文が関係しているように思うのですが、いまいちよく分かりません。
SETUP: Setting up device 0 SETUP: Microsoft Camera Front SETUP: Default Format is set to 1920 by 1080 SETUP: trying requested format RGB24 @ 320 by 240 SETUP: trying format RGB24 @ 320 by 240 SETUP: trying format RGB32 @ 320 by 240 SETUP: trying format RGB555 @ 320 by 240 SETUP: trying format RGB565 @ 320 by 240 SETUP: trying format YUY2 @ 320 by 240 SETUP: trying format YVYU @ 320 by 240 SETUP: trying format YUYV @ 320 by 240 SETUP: trying format IYUV @ 320 by 240 SETUP: trying format UYVY @ 320 by 240 SETUP: trying format YV12 @ 320 by 240 SETUP: trying format YVU9 @ 320 by 240 SETUP: trying format Y411 @ 320 by 240 SETUP: trying format Y41P @ 320 by 240 SETUP: trying format Y211 @ 320 by 240 SETUP: trying format AYUV @ 320 by 240 SETUP: trying format Y800 @ 320 by 240 SETUP: trying format Y8 @ 320 by 240 SETUP: trying format GREY @ 320 by 240 SETUP: trying format OTHER @ 320 by 240 SETUP: couldn't find requested size - searching for closest matching size SETUP: closest supported size is YUY2 @ 640 360 SETUP: Capture callback set SETUP: Device is setup and ready to capture. [notice ] ofxBox2d:: - world created - [notice ] particleIterations 1 [notice ] particleIterations 1
該当のソースコード
以下がofApp.cppのコードです。
C++
1#include "ofApp.h" 2 3//-------------------------------------------------------------- 4void ofApp::setup() { 5 ofBackground(0, 0, 0); 6 ofSetFrameRate(60); 7 8 //vidGrabber.listDevices();//デバイスリスト 9 //vidGrabber.setDeviceID(2);//デバイスのID選択 10 11 //幅320pixel、高さ240pixelでビデオ取り込み初期化 12 vidGrabber.initGrabber(320, 240); 13 //OpenCVで解析する320pixel x 240pixelのカラー画像の領域を確保 14 colorImg.allocate(320, 240); 15 //OpenCVで解析する320pixel x 240pixelのグレースケール画像の領域を確保 16 grayImage.allocate(320, 240); 17 //背景画像として320pixel x 240pixelのグレースケール画像の領域を確保 18 grayBg.allocate(320, 240); 19 //背景との差分画像として320pixel x 240pixelのグレースケール画像の領域を確保 20 grayDiff.allocate(320, 240); 21 //背景の学習モードを真に 22 bLearnBakground = true; 23 //閾値を100に 24 threshold = 100; 25 26 //Box2D初期設定 27 box2d.init(); //Box2Dの世界を初期化 28 box2d.setGravity(0, 1); //重力を設定、下に5の力 29 box2d.createBounds(0, 0, colorImg.width, colorImg.height); //画面を壁で囲む 30 box2d.setFPS(30); //30fpsで表示 31 box2d.checkBounds(true); 32 33 //CustomCircleを1コ配置 34 static const int NUM = 1; 35 for (int i = 0; i < NUM; i++) { 36 Customcircle circle; 37 //ofPtr<ofxBox2dCircle> circle = ofPtr<ofxBox2dCircle>(new ofxBox2dCircle); 38 circle.setPhysics(1.0, 0.8, 0.0); 39 circle.setup(box2d.getWorld(), ofRandom(colorImg.width), ofRandom(colorImg.height), 3); 40 circles.push_back(circle); 41 } 42} 43 44 45//-------------------------------------------------------------- 46void ofApp::update() { 47 //box2d更新 48 box2d.update(); 49 50 //新規にフレームを取り込んだかを判定する変数 51 bool bNewFrame = false; 52 //最後に取り込んだフレームから変化があったかを判定 53 vidGrabber.update(); 54 bNewFrame = vidGrabber.isFrameNew(); 55 //新規のフレームの場合とりこみ実行 56 if (bNewFrame) { 57 //OpenCVで解析するカラー画像領域に取得した映像を格納 58 colorImg.setFromPixels(vidGrabber.getPixels()); 59 //取り込んだカラー映像をグレースケールに変換 60 grayImage = colorImg; 61 //新規に背景を記録する場合 62 if (bLearnBakground == true) { 63 //現在の取り込んだグレースケールイメージを記憶 64 grayBg = grayImage; 65 //背景の記録をしないモードに戻す 66 bLearnBakground = false; 67 } 68 //背景画像と現在の画像の差分の絶対値を取得 69 grayDiff.absDiff(grayBg, grayImage); 70 //差分画像を設定した閾値を境に二値化 71 grayDiff.threshold(threshold); 72 //二値化した差分画像から、輪郭を抽出する 73 contourFinder.findContours(grayDiff, 20, (340 * 240) / 3, 10, false); 74 //境界線の円をクリア 75 for (int i = 0; i < contourCircles.size(); i++) { 76 contourCircles[i].get()->destroy(); 77 } 78 contourCircles.clear(); 79 //検出された物体(Blobs)の数だけ分析 80 for (int i = 0; i < contourFinder.nBlobs; i++) { 81 for (int j = 0; j < contourFinder.blobs[i].pts.size(); j += 4) { 82 //輪郭線にそって等間隔に座標を抽出 83 ofPoint pos = contourFinder.blobs[i].pts[j]; 84 //輪郭線に並べるofxBox2dCircleを追加 85 ofPtr<ofxBox2dCircle> circle; 86 circle->setup(box2d.getWorld(), pos.x, pos.y, 4); 87 //Vector配列contourCirclesに追加 88 contourCircles.push_back(circle); 89 } 90 } 91 } 92} 93 94//-------------------------------------------------------------- 95void ofApp::draw() { 96 //画面に対する映像の比率を計算 97 float ratioX = ofGetWidth() / 320; 98 float ratioY = ofGetHeight() / 240; 99 100 //検出した解析結果を表示 101 ofPushMatrix(); 102 //画面サイズいっぱいに表示されるようリスケール 103 ofScale((float)ofGetWidth() / (float)grayDiff.width, (float)ofGetHeight() / (float)grayDiff.height); 104 //ソースの映像を描画 105 ofSetColor(255, 255, 255); 106 colorImg.draw(0, 0); 107 //解析結果を描画 108 contourFinder.draw(); 109 //境界線の円を描画 110 ofNoFill(); 111 ofSetColor(255, 0, 0); 112 //for (int i = 0; i < contourCircles.size(); i++) { 113 //contourCircles[i].draw(); 114 for (int i = 0; i < contourFinder.nBlobs; i++) { 115 contourFinder.blobs[i].draw(360, 540); 116 } 117 //CustomCircle描画 118 for (int i = 0; i < circles.size(); i++) { 119 circles[i].draw(); 120 } 121 ofPopMatrix(); 122} 123
以下がmain.cppです
C++
1#include "ofMain.h" 2#include "ofApp.h" 3 4//======================================================================== 5int main( ){ 6 ofSetupOpenGL(1024, 768,OF_WINDOW); 7 8 ofRunApp(new ofApp()); 9 10} 11
試したこと
発生している問題・エラーメッセージで記した、SETUPの下から4行目の文が関係しているように思うのですが、いまいちよく分かりません。ただ、外部にカメラを接続して(Webカメラ)やると、この表示は出てきませんでした。しかし、同じように画面がすぐに消えてしまいます。
SETUP: couldn't find requested size - searching for closest matching size
補足情報(FW/ツールのバージョンなど)
ボールは1つだけ表示されていますが、画面はすぐに消えます。
###追記
的確なアドバイス本当にありがとうございます。見づらいのでこちらに書かせていただきました。
逐次動作確認をしながら調べた結果、おそらく輪郭線に並べるofxBox2dCircleを追加の2文目(circle->setupから始まる)のところが関係しているように思います。その文を入れないと動くのですが、入れると動かずに画面が消えます。また、境界線の円を描画のところで以下のコードを入れると、drawのところに以下のように出ました。ただ、ofxBox2dCircle.hを見たところdrawがあると思うのですが違うのでしょうか。また、円が重力で落ちたりするはずなのですがそれも動いていないです。
C++
1//検出された物体(Blobs)の数だけ分析 2 for (int i = 0; i < contourFinder.nBlobs; i++) { 3 for (int j = 0; j < contourFinder.blobs[i].pts.size(); j += 4) { 4 //輪郭線にそって等間隔に座標を抽出320 * 240 5 ofPoint pos = contourFinder.blobs[i].pts[j]; 6 //輪郭線に並べるofxBox2dCircleを追加 7 ofPtr<ofxBox2dCircle> circle; 8 circle->setup(box2d.getWorld(), pos.x, pos.y, 4); 9 //Vector配列contourCirclesに追加 10 contourCircles.push_back(circle); 11 } 12 }
境界線の円を描画のところ
E0135 class "std::shared_ptr<ofxBox2dCircle>" にメンバー "draw" がありません
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/18 11:39
2019/10/18 12:09 編集
2019/10/18 13:07
2019/10/18 13:11
2019/10/18 13:42
2019/10/18 13:51
2019/10/18 14:34
2019/10/18 14:59
2019/10/19 01:18
2019/10/19 01:39 編集
2019/10/19 03:58
2019/10/19 04:27 編集
2019/10/28 03:18
2019/10/29 02:37