這篇文章給大家分享的是有關(guān)apollo怎么在預(yù)測模塊中添加一個(gè)預(yù)測器的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了沾化免費(fèi)建站歡迎大家使用!
簡介
預(yù)測器為每個(gè)障礙物生成預(yù)測軌跡。在這里,假設(shè)我們想給我們的車輛增加一個(gè)新的預(yù)測器,用于其他類型的障礙。
添加預(yù)測器的步驟
如下步驟將會指導(dǎo)您在預(yù)測器中添加一個(gè) NewPredictor
:
定義一個(gè)繼承基類
Predictor
的類實(shí)現(xiàn)新類
NewPredictor
在
prediction_conf.proto
中添加一個(gè)新的預(yù)測器類型更新
prediction_conf
更新預(yù)測器管理器(Predictor manager)
下面讓我們用上面的方法來添加新的預(yù)測器。
一、定義一個(gè)繼承基類 Predictor的類
在文件夾 modules/prediction/predictor/vehicle
中創(chuàng)建一個(gè)名為new_predictor.h
的文件,文件內(nèi)容如下:
#include "modules/prediction/predictor/predictor.h" namespace apollo { namespace prediction { class NewPredictor : public Predictor { public: void Predict(Obstacle* obstacle) override; // Other useful functions and fields. }; } // namespace prediction } // namespace apollo
二、Implement the class NewPredictor
在創(chuàng)建了 new_predictor.h
的文件夾中創(chuàng)建文件 new_predictor.cc
。 文件內(nèi)容如下:
#include "modules/prediction/predictor/vehicle/new_predictor.h" namespace apollo { namespace prediction { NewPredictor::Predict(Obstacle* obstacle)() { // Get the results from evaluator // Generate the predicted trajectory } // Other functions } // namespace prediction } // namespace apollo
三、添加新的預(yù)測器類型
在prediction_conf.proto
中添加新預(yù)測器類型:
enum PredictorType { LANE_SEQUENCE_PREDICTOR = 0; FREE_MOVE_PREDICTOR = 1; REGIONAL_PREDICTOR = 2; MOVE_SEQUENCE_PREDICTOR = 3; NEW_PREDICTOR = 4; }
四、更新prediction_conf
在modules/prediction/conf/prediction_conf.pb.txt
中, 更新predictor_type
部分如下:
obstacle_conf { obstacle_type: VEHICLE obstacle_status: ON_LANE evaluator_type: NEW_EVALUATOR predictor_type: NEW_PREDICTOR }
五、更新預(yù)測器管理器(Predictor manager)
更新 CreateEvluator( ... )
如下:
case ObstacleConf::NEW_PREDICTOR: { predictor_ptr.reset(new NewPredictor()); break; }
更新 RegisterPredictors()
如下:
1 RegisterPredictor(ObstacleConf::NEW_PREDICTOR);
感謝各位的閱讀!關(guān)于“apollo怎么在預(yù)測模塊中添加一個(gè)預(yù)測器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!