Skip to content

Commit bd56375

Browse files
author
Jaineel
committed
Added link for weights in Readme
0 parents  commit bd56375

File tree

473 files changed

+19565
-0
lines changed

Some content is hidden

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

473 files changed

+19565
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Previously Trained Model
2+
phone_cfg20210611T0013/
3+
4+
# Python Cache Folder
5+
__pycache__/

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "Mask_RCNN"]
2+
path = Mask_RCNN
3+
url = https://github.com/matterport/Mask_RCNN.git

60.jpg

97.6 KB

Mask_RCNN/.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Data files and directories common in repo root
2+
datasets/
3+
logs/
4+
*.h5
5+
results/
6+
temp/
7+
test/
8+
9+
# Byte-compiled / optimized / DLL files
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
14+
# Distribution / packaging
15+
.Python
16+
env/
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# VS Studio Code
38+
.vscode
39+
40+
# PyCharm
41+
.idea/
42+
43+
# Dropbox
44+
.dropbox.attr
45+
46+
# Jupyter Notebook
47+
.ipynb_checkpoints
48+
49+
# pyenv
50+
.python-version
51+
52+
# dotenv
53+
.env
54+
55+
# virtualenv
56+
.venv
57+
venv/
58+
ENV/

Mask_RCNN/LICENSE

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Mask R-CNN
2+
3+
The MIT License (MIT)
4+
5+
Copyright (c) 2017 Matterport, Inc.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in
15+
all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
THE SOFTWARE.

Mask_RCNN/MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include README.md
2+
include LICENSE
3+
include requirements.txt

Mask_RCNN/README.md

+241

Mask_RCNN/assets/4k_video.gif

11.6 MB
9.21 MB
69.1 KB
747 KB

Mask_RCNN/assets/detection_final.png

887 KB
13.4 KB

Mask_RCNN/assets/detection_masks.png

9.75 KB
703 KB
43.1 KB

Mask_RCNN/assets/images_to_osm.png

983 KB
613 KB
708 KB
959 KB
579 KB

Mask_RCNN/assets/project_shiny1.jpg

216 KB
2.54 MB
609 KB

Mask_RCNN/assets/street.png

890 KB
138 KB
66.8 KB
203 KB
131 KB
177 KB
176 KB
122 KB
170 KB
157 KB
147 KB
120 KB
94 KB
85.8 KB
124 KB
224 KB
157 KB
142 KB
212 KB
142 KB
209 KB
220 KB
221 KB
178 KB
146 KB
234 KB
163 KB
237 KB
301 KB
282 KB

Mask_RCNN/mrcnn/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)