From 4737009c11e18964d28f63e56e57f7d6b17de28f Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 16 Sep 2017 15:35:37 -0400 Subject: [PATCH] Clarified comments --- examples/dnn_mmod_find_cars_ex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dnn_mmod_find_cars_ex.cpp b/examples/dnn_mmod_find_cars_ex.cpp index 8e3535ba9..b11b1cfd1 100644 --- a/examples/dnn_mmod_find_cars_ex.cpp +++ b/examples/dnn_mmod_find_cars_ex.cpp @@ -49,8 +49,8 @@ int main() try shape_predictor sp; // You can get this file from http://dlib.net/files/mmod_rear_end_vehicle_detector.dat.bz2 // This network was produced by the dnn_mmod_train_find_cars_ex.cpp example program. - // As you can see, it also includes a shape_predictor. To see a generic example of how - // to train those refer to train_shape_predictor_ex.cpp. + // As you can see, the file also includes a separately trained shape_predictor. To see + // a generic example of how to train those refer to train_shape_predictor_ex.cpp. deserialize("mmod_rear_end_vehicle_detector.dat") >> net >> sp; matrix img;