Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

about the dim of bbox_pred #35

Open
chungjin opened this issue Sep 6, 2016 · 0 comments
Open

about the dim of bbox_pred #35

chungjin opened this issue Sep 6, 2016 · 0 comments

Comments

@chungjin
Copy link

chungjin commented Sep 6, 2016

Dear Dai,
the dim of bbox_pred should be R_(21_4) rather than R*8, as your prototxt shows
because the later applies,

 boxes_cell = cell(length(classes), 1);
    thres = 0.6;
    for i = 1:length(boxes_cell)
        boxes_cell{i} = [boxes(:, (1+(i-1)*4):(i*4)), scores(:, i)];
        boxes_cell{i} = boxes_cell{i}(nms(boxes_cell{i}, 0.3), :);

        I = boxes_cell{i}(:, 5) >= thres;
        boxes_cell{i} = boxes_cell{i}(I, :);
    end

I wonder what's wrong with these code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant