資源簡介
使用MATLAB實(shí)現(xiàn)的車輛識別工具,可選擇RCNN模型和分類模型對圖像或視頻進(jìn)行操作,采用手動選擇目標(biāo)進(jìn)行訓(xùn)練,可根據(jù)載入圖像或視頻識別其中車輛的位置和型號,并將車輛框選出來,以便識別。
代碼片段和文件信息
classdef??CarProphet
????properties(Access?=?‘public‘)
???????%?object?for?recognize?
???????Mat;
???????Video;
???????%%
???????STATE=-1;%?Attention:?STATE?is?the?program‘s?status.?0?represents?image?1?represents?video.
???????%%
???????END=false;%?Attention:?END?is?an?instruction?to?play?or?stop?the?video
???????%%
???????RealRegion;?%?[x?y?width?height]?or?a?matrix?of?it.
???????%%
???????Threshold=0.5;?%?judge?the?bbox?by?this?value.?(is?car?or?not??)
????end
????
????%%
????%?our?model?:RCNNModel?ClassifyModel.?“class_array“?is?the?index?of?car?type.?
????properties(Access?=?‘private‘)
???????RCNNModel;
???????ClassifyModel;
???????class_array;
????end
????%%
????methods(Access?=?‘public‘)
????????%?Constructor?of?the?class
????????function?Predictor?=?CarPr
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-03-31?09:12??Vehicle_Detection_Recognition-master\
?????文件????????3201??2017-03-31?09:12??Vehicle_Detection_Recognition-master\CarProphet.m
?????目錄???????????0??2017-03-31?09:12??Vehicle_Detection_Recognition-master\core_func\
?????文件?????????391??2017-03-31?09:12??Vehicle_Detection_Recognition-master\core_func\draw.m
?????文件?????????358??2017-03-31?09:12??Vehicle_Detection_Recognition-master\core_func\draw_roi_class.m
?????文件?????????277??2017-03-31?09:12??Vehicle_Detection_Recognition-master\core_func\get_highscore_proposals.m
?????目錄???????????0??2017-03-31?09:12??Vehicle_Detection_Recognition-master\GUI\
?????文件???????70136??2017-03-31?09:12??Vehicle_Detection_Recognition-master\GUI\MainWindow.fig
?????文件????????8785??2017-03-31?09:12??Vehicle_Detection_Recognition-master\GUI\MainWindow.m
?????目錄???????????0??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Model\
?????文件?????????250??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Model\Download.txt
?????目錄???????????0??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Old\
?????文件?????????765??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Old\Pic_Detect_Recognition.m
?????文件?????????302??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Old\Start.m
?????文件?????????960??2017-03-31?09:12??Vehicle_Detection_Recognition-master\Old\Video_Detect_Recognition.m
?????文件????????3156??2017-03-31?09:12??Vehicle_Detection_Recognition-master\README.md
?????文件?????????187??2017-03-31?09:12??Vehicle_Detection_Recognition-master\start.m
評論
共有 條評論