Skip to content

Commit 84c4762

Browse files
committed
changes
0 parents  commit 84c4762

378 files changed

Lines changed: 183310 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.pt
2+
*.pth
3+
.DS_Store

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/usr/local/bin/python3"
3+
}

HPiFUValNET.ipynb

Lines changed: 795 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Quick3D
2+
3+
## Installation
4+
1. Clone this repository
5+
```bash
6+
git clone https://github.com/manncodes/Quick3D-Source.git
7+
cd Quick3D-Source
8+
```
9+
10+
2. Downloading Pretrained Models
11+
12+
```bash
13+
git clone https://github.com/Daniil-Osokin/lightweight-human-pose-estimation.pytorch.git
14+
cd lightweight-human-pose-estimation.pytorch
15+
wget https://download.01.org/opencv/openvino_training_extensions/models/human_pose_estimation/checkpoint_iter_370000.pth
16+
cd ../src/scripts
17+
sh download_trained_model.sh
18+
```
19+
20+
3. Reach out to me for the configuration files of firebase project if needed! ;)
21+
22+
4. Setup your own paths where needed.
23+
24+
5. Run Server
25+
26+
```bash
27+
python server.py
28+
```

app.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@REM GET RECT FROM POSE ESTIMATION
2+
cd C:\Not So System Files\Study\6th sem\SGP Ideas\quick3D\lightweight-human-pose-estimation.pytorch
3+
python find_rect.py -i "C:\Not So System Files\Study\6th sem\SGP Ideas\quick3D\src\images"
4+
5+
6+
@REM RUN PIFU
7+
cd "C:\Not So System Files\Study\6th sem\SGP Ideas\quick3D\src"
8+
python -m apps.simple_test -r 256 --use_rect -i "C:\Not So System Files\Study\6th sem\SGP Ideas\quick3D\src\images"
9+
10+
@REM BACK TO REPO ROOT_PATH
11+
cd "C:\Not So System Files\Study\6th sem\SGP Ideas\quick3D"

app/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.ignoreLimitWarning": true
3+
}

app/Online3DViewer/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
build/*
2+
website_meta_data.txt
3+
website_analytics_data.txt
4+
website_script_data.txt
5+
package-lock.json
6+
node_modules
7+
__pycache__

app/Online3DViewer/.jshintrc

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"esversion" : 6,
3+
"curly" : true,
4+
"forin" : true,
5+
"latedef" : true,
6+
"nonew" : true,
7+
"quotmark" : true,
8+
"funcscope" : true,
9+
"lastsemic" : true,
10+
"loopfunc" : true,
11+
"shadow" : false,
12+
"undef" : true,
13+
"unused" : false,
14+
"bitwise" : false,
15+
"freeze" : true,
16+
"leanswitch" : true,
17+
"eqeqeq" : true,
18+
"futurehostile" : true,
19+
"regexpu" : true,
20+
"varstmt" : true,
21+
"globals" : {
22+
"OV" : true,
23+
"THREE" : false,
24+
"TextEncoder" : false,
25+
"TextDecoder" : false,
26+
"XMLHttpRequest" : false,
27+
"FileReader" : false,
28+
"Blob" : false,
29+
"URL" : false,
30+
"window" : false,
31+
"document" : false,
32+
"setTimeout" : false,
33+
"requestAnimationFrame" : false,
34+
"getComputedStyle" : false,
35+
"alert" : false,
36+
"atob" : false,
37+
"console" : false,
38+
"$" : false
39+
}
40+
}

app/Online3DViewer/.nycrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"exclude": [
3+
"*/external/*",
4+
"*/viewer/*",
5+
"test/*"
6+
]
7+
}

app/Online3DViewer/.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- "15"
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm run test

0 commit comments

Comments
 (0)