前提・実現したいこと
openframeworksでのofxOpencvとofxBox2dの組み合わせプログラムを実行しようとしています。
2つエラーが出ました
- ofApp.cppのvoid ofApp::update()の中で境界線の円をクリアする記述でエラー
- 輪郭線に関するところで、Vector配列contourCirclesに追加するところの.(ドット)にエラー
直し方が分からないためご教授お願い致します。
visual studio 2017使用
発生している問題・エラーメッセージ
E0135 class "std::shared_ptr<ofxBox2dCircle>" にメンバー "destroy"がありません
E0304 オーバーロードされた関数 "std::vector<_Ty, _Alloc>::push_back [代入_Ty=ofPtr<ofxBox2dCircle>, _Alloc=std::allocator<ofPtr<ofxBox2dCircle>>]" のインスタンスが引数リストと一致しません
該当のソースコード
ofApp.cppのコードの一部
C++
1//境界線の円をクリア 2 for (int i = 0; i < contourCircles.size(); i++) { 3 contourCircles[i].destroy(); 4 } 5 contourCircles.clear(); 6 //検出された物体(Blobs)の数だけ分析 7 for (int i = 0; i < contourFinder.nBlobs; i++) { 8 for (int j = 0; j < contourFinder.blobs[i].pts.size(); j += 4) { 9 //輪郭線にそって等間隔に座標を抽出 10 ofPoint pos = contourFinder.blobs[i].pts[j]; 11 //輪郭線に並べるofxBox2dCircleを追加 12 ofxBox2dCircle circle; 13 circle.setup(box2d.getWorld(), pos.x, pos.y, 4); 14 //Vector配列contourCirclesに追加 15 contourCircles.push_back(circle); 16 } 17 }
補足情報
以下が参考にしたソースコードです。
https://github.com/tado/BeyondInteraction_2nd_examples/tree/master/3%E2%80%934_h/src
以下がofApp.hのコードです。
#pragma once #include "ofMain.h" #include "ofxOpenCv.h" #include "ofxBox2d.h" #include "CustomCircle.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(int x, int y, int button); void mouseEntered(int x, int y); void mouseExited(int x, int y); void windowResized(int w, int h); void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); // ofxBox2dに関連する変数 ofxBox2d box2d;// vector <CustomCircle> circles; //浮遊する円のVector配列 vector < ofPtr<ofxBox2dCircle> > contourCircles; //境界線に配置する円のVector配列 // ofxOpenCvに関連する変数 ofVideoGrabber vidGrabber; //ビデオ入力 ofxCvColorImage colorImg; //OpenCVで扱うカラーイメージ ofxCvGrayscaleImage grayImage; //OpenCVで扱うグレースケールイメージ ofxCvGrayscaleImage grayBg; //背景のグレースケールイメージ ofxCvGrayscaleImage grayDiff; //背景との差分のグレースケールイメージ ofxCvContourFinder contourFinder; //輪郭抽出のためのインスタンス bool bLearnBakground; //背景を記録したかどうか int threshold; //背景の差分の閾値 };
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/18 04:19