File size: 779 Bytes
123489f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "Blur-Anything"
version = "0.1.0"
description = "Track and blur any object or person in a video."
authors = ["Y-T-G <yaseensinbox@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "blur_anything"}]

[tool.poetry.dependencies]
python = "^3.9"
gradio = "^3.28.1"
numpy = "^1.24.3"
av = "^10.0.0"
torch = "^2.0.0"
opencv-python = "^4.7.0.72"
psutil = "^5.9.5"
tqdm = "^4.65.0"
matplotlib = "^3.7.1"
segment-anything = {git = "https://github.com/facebookresearch/segment-anything.git"}
torchvision = "^0.15.1"
pims = "^0.6.1"
mobile-sam = {git = "https://github.com/ChaoningZhang/MobileSAM.git"}
onnxruntime = "^1.15.1"
timm = "^0.9.5"
onnx = "^1.14.0"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"