I have gone through the “object detection” sample provided along with the Driveworks SDK. It helps to detect “cars” in an image and creates the bounding boxes. I am wondering if there is any way via which I can detect multiple object classes (with bounding boxes) in a single picture using Driveworks.
I understand that I need to change the caffe model for this task. Will it be possible to use DetectNet model for such kind of activity.
Please suggest.
“object detetion” sample only support single object like car.
If you want to use multi class object detection, please use “drivenet” sample instead of object detection. Thanks.
I used the “detectnet_network-2classes.prototxt” file to train my network on Kitti data.
But I am getting the following error while training:
<<
error code -11
Train net output #0: loss_bbox = 1.12773 (* 2 = 2.25547 loss)
Train net output #1: loss_coverage = 4.84529 (* 1 = 4.84529 loss)
Iteration 1264, lr = 0.0001
Snapshotting to binary proto file snapshot_iter_1276.caffemodel
Snapshotting solver state to binary proto file snapshot_iter_1276.solverstate
Iteration 1276, Testing net (#0)
Ignoring source layer train_data
Ignoring source layer train_label
Ignoring source layer train_transform
Dear Steve,
Can Drivenet Sample import and use Detectnet? I think this sample is only suitable for using Drivenet proprietary model.
Secondly can dwObjectDetector, dwObjectClustering functions be used with Detectnet? I think these are solely for Drivenet since they require a Drivenet Handle.
Unfortunately, The DriveNet Sample and its interface are not changeable, as the binaries and libraries are precompiled and the network is built in the software stack.
dwObjectDetector, dwObjectClustering functions can be used only with DetectNet network, as you said because the initialization function expects the DriveNet Handle(dwDriveNetHandle_t) which has its own specific internal structure.