開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC2010
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
我想將vector<LBP_Encoder> 型態用指標方式傳入函數,
目的是 [為了傳入函數並修改結構內資料],
但指標與向量&結構概念結合不太清楚,
想知道如何宣告比較能達成
餵入的資料(Input):
vector<LBP_Encoder> encoder
預期的正確結果(Expected Output):
encoder.roi 內容成功修改
錯誤結果(Wrong Output):
無法執行 Error:no operator "<<" matches these operands
程式碼(Code):(請善用置底文網頁, 記得排版)
struct LBP_Encoder{
DAB_Model model;
Rect roi;
int splitx;
int splity;
};
typedef struct LBP_Encoder LBP_Encoder;
vector<LBP_Encoder> encoder;
vector<LBP_Encoder> *ptr;
ptr=&encoder;
cout<< *ptr.roi.x <<endl;
LDP_based_on_Landmark(ptr);
補充說明(Supplement):
我是弱弱的機械初學者QQ...