Skip to content

Commit 82d80a1

Browse files
authored
Merge pull request #4 from DefTruth/dev
feat(transforms): support torchvision and albumentations
2 parents ff0352b + f832ba1 commit 82d80a1

36 files changed

+2711
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
__pycache__
33
.DS_Store
44
logs
5+
debug.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
![torchlm-logo](https://user-images.githubusercontent.com/31974251/153540332-c174ef8d-cceb-4ad7-82b0-e7bcd43c8d19.png)
1+
![torchlm-logo](docs/res/logo.png)
22
💎A PyTorch library for landmarks detection, include data augmentation, training and inference.

docs/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea
2+
__pycache__
3+
.DS_Store
4+
logs

docs/api/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea
2+
__pycache__
3+
.DS_Store
4+
logs

docs/res/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea
2+
__pycache__
3+
.DS_Store
4+
logs

docs/res/logo.png

85.5 KB
Loading

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="pylandmarks",
7+
name="torchlm",
88
version="0.1.0",
99
author="Yan Jun",
10-
author_email="",
11-
description="A PyTorch style data augmentation library for landmarks and object detection.",
10+
author_email="qyjdef@163.com",
11+
description="A PyTorch library for landmarks detection, include data augmentation, training and inference.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/DefTruth/pylandmarks",
15-
packages=["pylandmarks"],
14+
url="https://github.com/DefTruth/torchaug",
15+
packages=["torchlm"],
1616
install_requires=[
1717
"opencv-python>=4.2.1",
1818
"numpy>=1.14.4",

test/.gitigore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
debug.py

test/1.jpg

8.41 KB
Loading

test/1.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Abbas_Kiarostami_0001.jpg 75 165 87 177 106.750000 108.250000 143.750000 108.750000 131.250000 127.250000 106.250000 155.250000 142.750000 155.250000

0 commit comments

Comments
 (0)