Skip to content

Commit c7ab833

Browse files
committed
remove height and width parameters from MaskRCNNProposal
1 parent 75fe2ac commit c7ab833

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/caffe/layers/maskrcnn_proposal_layer.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ void MaskRCNNProposalLayer<Dtype>::LayerSetUp(
1515
CHECK_EQ(bottom.size(), 3) << "Only input 3 Tensors at a time!";
1616
CHECK_EQ(top.size(), 1) << "Only output one Tensor at a time!";
1717

18-
// int height = this->layer_param_.maskrcnn_proposal_param().height();
19-
// int width = this->layer_param_.maskrcnn_proposal_param().width();
20-
21-
2218
rpn_bbox_std_dev.clear();
2319
std::copy(
2420
this->layer_param_.maskrcnn_proposal_param().rpn_bbox_std_dev().begin(),

src/caffe/proto/caffe.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3313,8 +3313,6 @@ message MaskRCNNProposalParameter {
33133313
optional uint32 pre_nms_limit = 4[default = 6000];
33143314
optional float rpn_nms_threshold = 5[default = 0.7];
33153315
optional uint32 post_nms_rois_inference = 6[default = 1000];
3316-
optional uint32 height = 7[default = 1024];
3317-
optional uint32 width = 8[default = 1024];
33183316
}
33193317

33203318

0 commit comments

Comments
 (0)