From 43648560206d4c8782199a1e7f8937499cc86316 Mon Sep 17 00:00:00 2001 From: FORCHA Date: Sat, 11 Dec 2021 23:40:33 +0100 Subject: [PATCH 1/3] Create ReadMe.md Step By Step Installation of FairMOT on Linux Environment : Case Study- Google Colab --- ReadMe.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ReadMe.md diff --git a/ReadMe.md b/ReadMe.md new file mode 100644 index 0000000..5a27b34 --- /dev/null +++ b/ReadMe.md @@ -0,0 +1,29 @@ +**Step By Step Installation of FairMOT on Linux Environment : Case Study- Google Colab** +
+ +Requirements + - Nvidia GPU + +1. Clone the FairMOT repo + - git clone https://github.com/microsoft/FairMOT.git +2. Installing FFMpeg + - sudo apt install ffmpeg + - sudo apt-get -y install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev \ + libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libx11-dev \ + libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev +3. Install torch and torchvision Libraries for linux enviroments + - pip install torch==1.4 torchvision==0.5 +4. Moving to our cloned repository + - cd FairMOT + - pip install -r requirements.txt + - cd src/lib/models/networks/DCNv2 + - sh make.sh +5. Download Pretrained Model from google drive and save in FairMOT/src/lib/models +6. Move to Base directory +7. You can input a raw video and get the demo video by running src/demo.py and get the mp4 format of the demo video: + - !python demo.py mot --load_model lib/models/all_dla34.pth +8. Results of this process can be found in 'FairMOT/results' folder + Working Colab can be found [here](https://colab.research.google.com/drive/1j-UobIDfZBm5aW1TPi2t55WYxVpySab4#scrollTo=_XoZXSPASyGA) + + + From e48e6b750d7a058f52eb3fd299ad8e3f5cc411c0 Mon Sep 17 00:00:00 2001 From: FORCHA Date: Sun, 12 Dec 2021 00:41:45 +0100 Subject: [PATCH 2/3] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index 5a27b34..d04477b 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -23,7 +23,7 @@ Requirements 7. You can input a raw video and get the demo video by running src/demo.py and get the mp4 format of the demo video: - !python demo.py mot --load_model lib/models/all_dla34.pth 8. Results of this process can be found in 'FairMOT/results' folder - Working Colab can be found [here](https://colab.research.google.com/drive/1j-UobIDfZBm5aW1TPi2t55WYxVpySab4#scrollTo=_XoZXSPASyGA) + Working Colab can be found [here](https://colab.research.google.com/drive/1j-UobIDfZBm5aW1TPi2t55WYxVpySab4?usp=sharing) From bf7348a4b45088b80c3ef6326f464362ca5005a0 Mon Sep 17 00:00:00 2001 From: FORCHA Date: Sun, 12 Dec 2021 11:57:19 +0100 Subject: [PATCH 3/3] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index d04477b..6a8aedc 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,4 +1,4 @@ -**Step By Step Installation of FairMOT on Linux Environment : Case Study- Google Colab** +**Step By Step Installation of FairMOT on Linux Environment **
Requirements