-
Notifications
You must be signed in to change notification settings - Fork 96
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
Running the demo #3
Comments
firstly, make comile,then make detect or make track or make detectAndTrack, finally, it output xxx.out file. |
I error run the demo. |
@ml930310 |
@jazzseow Thank you very much.You know how to set the downloaded data? Ssd model should be how to set? Thank you again. |
@ml930310 ../../dataset/MOT16/train/MOT16-02 Then run But my way of doing this might be wrong. The values and results i got from the tracking are quite weird #5. Do you get this kind of result too? |
Hello, thank you for your reply, recently been preparing for the exam, did not promptly reply to you, I would like to ask you a question, I "make track" has been unsuccessful, has been unable to find a solution. The question is as follows:
1, malu @ malu1: ~ / tracking-by-detection / cpp $ make track
(compile) CXX src / detector / SSDDetector.cpp
In file included from src / detector / SSDDetector.h: 11: 0,
from src / detector / SSDDetector.cpp: 1:
/home/malu/caffe/include/caffe/caffe.hpp:7:26: fatal error: caffe / blob.hpp: No such file or directory
#include "caffe / blob.hpp"
^
compilation terminated.
make: *** [build / detector / SSDDetector.o] error 1
2, caffe.pc reads as follows:
# Package Information for pkg-config
# Path to where Caffe is installed
prefix = / home / malu / caffe
# Path to where libraries are
libdir = $ {prefix} / build / lib
# Path to where include files are
includedir = $ {prefix} / include / caffe
Name: Caffe
Description: Deep learning framework by the BVLC
Version: 1.0
Libs: -L $ {libdir} -lcaffe -lglog
Cflags: -isystem $ {includedir} -isystem $ {prefix} / build / src
#Cflags: -isystem $ {includedir} -isystem $ {prefix} / build / src
3, dlib.pc reads as follows:
prefix = / usr / local
exec_prefix = $ {prefix}
libdir = $ {exec_prefix} / lib
includedir = $ {prefix} / include
Name: dlib
Description: Numerical and networking C ++ library
Version: 19.4.0
Libs: -L $ {libdir} -ldlib
Cflags: -I $ {includedir}
Requires: libpng
As I need to report the progress to the teacher ,looking forward to your advice, thank you again.
At 2018-01-04 09:54:46, "Jesmond" <[email protected]> wrote:
@ml930310
Put seqmap file, which stores the relative path (from data/) to your detection data, under data/. The content of the seqmap is something like this:
../../dataset/MOT16/train/MOT16-02
../../dataset/MOT16/train/MOT16-04
../../dataset/MOT16/train/MOT16-05
../../dataset/MOT16/train/MOT16-09
../../dataset/MOT16/train/MOT16-10
../../dataset/MOT16/train/MOT16-11
../../dataset/MOT16/train/MOT16-13
Then run ./trackApp.out -s <seqmap file name> -m <model type> -f <detection format: either okutama or mot> , example ./trackApp.out -s seqmap.txt -m det -f mot.
It will locate these folders and perform tracking using the det.txt with the path mentioned, e.g. ../../dataset/MOT16/train/MOT16-13/det/det.txt. I have only tried the tracking part, so I do not know much about setting the detection model. I guess you can try to read the demo codes under examples/ for more information.
But my way of doing this might be wrong. The values and results i got from the tracking are quite weird #5. Do you get this kind of result too?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@ml930310 I think your caffe is not installed properly. Check your installation again and try to run a simple network first |
Hello , I have some mistake to do "make track",the message is : I have try to deal with it , but failed , so can you give me some advise? thank you very much. |
Hi,
I could set the path with the pkg-config for the dependencies and also did a make compile in the cpp/ folder.
I am not sure where the executable is built and how to run a demo with the project (is there a demo?). Or is this just a library and I have to link it to my project?
Thanks!
The text was updated successfully, but these errors were encountered: