我正在尝试运行class Bean{
public List<Guy> guys; // filled from DB
public List<Car> cars; // filled from DB
public List<CarType> types; // filled from DB
private Car selectedCar; // getter setter ok
private CarType selectedType; // getter setter ok
public List<Car> cars(Guy g){
selectedCar = g.getCar();
cars = selectedCar.getCarType().getCars(); // all cars of this type
}
public void changeType(){
cars = selectedType.getCars();
}
public void changeCar(Guy g){
g.setCar(selectedCar);
}
}
以查看rcnn(https://github.com/ShaoqingRen/faster_rcnn)的工作速度。我已经成功地将Caffe(https://github.com/Microsoft/caffe)用于MATLAB,并运行script_faster_rcnn_demo.m
和faster_rcnn_build.m
函数。我的软件环境是:win10 + vs2013 + cuda7.5 + Matlab2016b。
在运行startup.m
时,MATLAB在代码到达此时崩溃了:
script_faster_rcnn_demo.m
MATLAB错误详情如下:
%% -------------------- WARM UP --------------------
% the first run will be slower; use an empty image to warm up
…...
[boxes, scores] = fast_rcnn_conv_feat_detect(proposal_detection_model.conf_detection, fast_rcnn_net, im, ...
rpn_net.blobs(proposal_detection_model.last_shared_output_blob_name), ...
aboxes(:, 1:4), opts.after_nms_topN);