mini-caffe icon indicating copy to clipboard operation
mini-caffe copied to clipboard

How do miniCaffe used in MTCNN?

Open hao201707 opened this issue 8 years ago • 3 comments
trafficstars

mtcnn need net_input_blobs_ and net_output_blobs_ but minicaffe not include, how change to mtcnn?

hao201707 avatar Jul 13 '17 04:07 hao201707

use net->blob_by_name() function to get data pointer from network internal blobs.

You can refer to the exampes.

luoyetx avatar Jul 13 '17 13:07 luoyetx

use net->blob_by_name() function to get data pointer from network internal blobs.

I'm also interested in trying MTCNN with mini-caffe, but I still don't understand. How can I replace it? using blob_by_name("input")? also, input_blobs() return a vector of blobs, but blob_by_name returns a shared_ptr. How should I use it? Thanks!

yonadavs avatar Aug 13 '17 15:08 yonadavs

I have solved this problem, look at this https://github.com/QiYueFeiXue/MTCNN/tree/run_minicaffe

QiYueFeiXue avatar Aug 29 '17 01:08 QiYueFeiXue