Spaces:
Runtime error
Runtime error
init commit
Browse files- .flake8 +7 -0
- .gitattributes +1 -0
- .gitignore +37 -0
- CODE_OF_CONDUCT.md +80 -0
- CONTRIBUTING.md +31 -0
- LICENSE +201 -0
- README.md +138 -13
- app.py +94 -0
- assets/Hourglass_transformer_framework.png +3 -0
- assets/TokenClusterReconstruct_Details.png +3 -0
- assets/masks1.png +3 -0
- assets/masks2.jpg +0 -0
- assets/model_diagram.png +3 -0
- assets/notebook1.png +3 -0
- assets/notebook2.png +3 -0
- assets/result_vit_h.png +3 -0
- assets/result_vit_l.png +3 -0
- linter.sh +32 -0
- notebooks/automatic_mask_generator_example.ipynb +0 -0
- notebooks/images/dog.jpg +0 -0
- notebooks/images/groceries.jpg +0 -0
- notebooks/images/truck.jpg +0 -0
- notebooks/onnx_model_example.ipynb +774 -0
- notebooks/predictor_example.ipynb +0 -0
- scripts/amg.py +335 -0
- scripts/benchmark.py +341 -0
- scripts/export_onnx_model.py +204 -0
- segment_anything/__init__.py +15 -0
- segment_anything/automatic_mask_generator.py +372 -0
- segment_anything/build_sam.py +131 -0
- segment_anything/modeling/__init__.py +12 -0
- segment_anything/modeling/common.py +43 -0
- segment_anything/modeling/hourglass_image_encoder.py +418 -0
- segment_anything/modeling/image_encoder.py +395 -0
- segment_anything/modeling/mask_decoder.py +176 -0
- segment_anything/modeling/prompt_encoder.py +214 -0
- segment_anything/modeling/sam.py +174 -0
- segment_anything/modeling/transformer.py +240 -0
- segment_anything/predictor.py +269 -0
- segment_anything/utils/__init__.py +5 -0
- segment_anything/utils/amg.py +346 -0
- segment_anything/utils/onnx.py +144 -0
- segment_anything/utils/transforms.py +102 -0
- setup.cfg +11 -0
- setup.py +18 -0
.flake8
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[flake8]
|
2 |
+
ignore = W503, E203, E221, C901, C408, E741, C407, B017, F811, C101, EXE001, EXE002
|
3 |
+
max-line-length = 100
|
4 |
+
max-complexity = 18
|
5 |
+
select = B,C,E,F,W,T4,B9
|
6 |
+
per-file-ignores =
|
7 |
+
**/__init__.py:F401,F403,E402
|
.gitattributes
CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.nfs*
|
2 |
+
|
3 |
+
# compilation and distribution
|
4 |
+
__pycache__
|
5 |
+
_ext
|
6 |
+
*.pyc
|
7 |
+
*.pyd
|
8 |
+
*.so
|
9 |
+
*.dll
|
10 |
+
*.egg-info/
|
11 |
+
build/
|
12 |
+
dist/
|
13 |
+
wheels/
|
14 |
+
|
15 |
+
# pytorch/python/numpy formats
|
16 |
+
*.pth
|
17 |
+
*.pkl
|
18 |
+
*.npy
|
19 |
+
*.ts
|
20 |
+
model_ts*.txt
|
21 |
+
|
22 |
+
# onnx models
|
23 |
+
*.onnx
|
24 |
+
|
25 |
+
# ipython/jupyter notebooks
|
26 |
+
**/.ipynb_checkpoints/
|
27 |
+
|
28 |
+
# Editor temporaries
|
29 |
+
*.swn
|
30 |
+
*.swo
|
31 |
+
*.swp
|
32 |
+
*~
|
33 |
+
|
34 |
+
# editor settings
|
35 |
+
.idea
|
36 |
+
.vscode
|
37 |
+
_darcs
|
CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Code of Conduct
|
2 |
+
|
3 |
+
## Our Pledge
|
4 |
+
|
5 |
+
In the interest of fostering an open and welcoming environment, we as
|
6 |
+
contributors and maintainers pledge to make participation in our project and
|
7 |
+
our community a harassment-free experience for everyone, regardless of age, body
|
8 |
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9 |
+
level of experience, education, socio-economic status, nationality, personal
|
10 |
+
appearance, race, religion, or sexual identity and orientation.
|
11 |
+
|
12 |
+
## Our Standards
|
13 |
+
|
14 |
+
Examples of behavior that contributes to creating a positive environment
|
15 |
+
include:
|
16 |
+
|
17 |
+
* Using welcoming and inclusive language
|
18 |
+
* Being respectful of differing viewpoints and experiences
|
19 |
+
* Gracefully accepting constructive criticism
|
20 |
+
* Focusing on what is best for the community
|
21 |
+
* Showing empathy towards other community members
|
22 |
+
|
23 |
+
Examples of unacceptable behavior by participants include:
|
24 |
+
|
25 |
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26 |
+
advances
|
27 |
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28 |
+
* Public or private harassment
|
29 |
+
* Publishing others' private information, such as a physical or electronic
|
30 |
+
address, without explicit permission
|
31 |
+
* Other conduct which could reasonably be considered inappropriate in a
|
32 |
+
professional setting
|
33 |
+
|
34 |
+
## Our Responsibilities
|
35 |
+
|
36 |
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37 |
+
behavior and are expected to take appropriate and fair corrective action in
|
38 |
+
response to any instances of unacceptable behavior.
|
39 |
+
|
40 |
+
Project maintainers have the right and responsibility to remove, edit, or
|
41 |
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42 |
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43 |
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44 |
+
threatening, offensive, or harmful.
|
45 |
+
|
46 |
+
## Scope
|
47 |
+
|
48 |
+
This Code of Conduct applies within all project spaces, and it also applies when
|
49 |
+
an individual is representing the project or its community in public spaces.
|
50 |
+
Examples of representing a project or community include using an official
|
51 |
+
project e-mail address, posting via an official social media account, or acting
|
52 |
+
as an appointed representative at an online or offline event. Representation of
|
53 |
+
a project may be further defined and clarified by project maintainers.
|
54 |
+
|
55 |
+
This Code of Conduct also applies outside the project spaces when there is a
|
56 |
+
reasonable belief that an individual's behavior may have a negative impact on
|
57 |
+
the project or its community.
|
58 |
+
|
59 |
+
## Enforcement
|
60 |
+
|
61 |
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62 |
+
reported by contacting the project team at <[email protected]>. All
|
63 |
+
complaints will be reviewed and investigated and will result in a response that
|
64 |
+
is deemed necessary and appropriate to the circumstances. The project team is
|
65 |
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
66 |
+
Further details of specific enforcement policies may be posted separately.
|
67 |
+
|
68 |
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
69 |
+
faith may face temporary or permanent repercussions as determined by other
|
70 |
+
members of the project's leadership.
|
71 |
+
|
72 |
+
## Attribution
|
73 |
+
|
74 |
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
75 |
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
76 |
+
|
77 |
+
[homepage]: https://www.contributor-covenant.org
|
78 |
+
|
79 |
+
For answers to common questions about this code of conduct, see
|
80 |
+
https://www.contributor-covenant.org/faq
|
CONTRIBUTING.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Contributing to segment-anything
|
2 |
+
We want to make contributing to this project as easy and transparent as
|
3 |
+
possible.
|
4 |
+
|
5 |
+
## Pull Requests
|
6 |
+
We actively welcome your pull requests.
|
7 |
+
|
8 |
+
1. Fork the repo and create your branch from `main`.
|
9 |
+
2. If you've added code that should be tested, add tests.
|
10 |
+
3. If you've changed APIs, update the documentation.
|
11 |
+
4. Ensure the test suite passes.
|
12 |
+
5. Make sure your code lints, using the `linter.sh` script in the project's root directory. Linting requires `black==23.*`, `isort==5.12.0`, `flake8`, and `mypy`.
|
13 |
+
6. If you haven't already, complete the Contributor License Agreement ("CLA").
|
14 |
+
|
15 |
+
## Contributor License Agreement ("CLA")
|
16 |
+
In order to accept your pull request, we need you to submit a CLA. You only need
|
17 |
+
to do this once to work on any of Facebook's open source projects.
|
18 |
+
|
19 |
+
Complete your CLA here: <https://code.facebook.com/cla>
|
20 |
+
|
21 |
+
## Issues
|
22 |
+
We use GitHub issues to track public bugs. Please ensure your description is
|
23 |
+
clear and has sufficient instructions to be able to reproduce the issue.
|
24 |
+
|
25 |
+
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
|
26 |
+
disclosure of security bugs. In those cases, please go through the process
|
27 |
+
outlined on that page and do not file a public issue.
|
28 |
+
|
29 |
+
## License
|
30 |
+
By contributing to segment-anything, you agree that your contributions will be licensed
|
31 |
+
under the LICENSE file in the root directory of this source tree.
|
LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
of any other Contributor, and only if You agree to indemnify,
|
172 |
+
defend, and hold each Contributor harmless for any liability
|
173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
174 |
+
of your accepting any such warranty or additional liability.
|
175 |
+
|
176 |
+
END OF TERMS AND CONDITIONS
|
177 |
+
|
178 |
+
APPENDIX: How to apply the Apache License to your work.
|
179 |
+
|
180 |
+
To apply the Apache License to your work, attach the following
|
181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
+
replaced with your own identifying information. (Don't include
|
183 |
+
the brackets!) The text should be enclosed in the appropriate
|
184 |
+
comment syntax for the file format. We also recommend that a
|
185 |
+
file or class name and description of purpose be included on the
|
186 |
+
same "printed page" as the copyright notice for easier
|
187 |
+
identification within third-party archives.
|
188 |
+
|
189 |
+
Copyright [yyyy] [name of copyright owner]
|
190 |
+
|
191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
+
you may not use this file except in compliance with the License.
|
193 |
+
You may obtain a copy of the License at
|
194 |
+
|
195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
+
|
197 |
+
Unless required by applicable law or agreed to in writing, software
|
198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
+
See the License for the specific language governing permissions and
|
201 |
+
limitations under the License.
|
README.md
CHANGED
@@ -1,13 +1,138 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Expediting SAM without Fine-tuning
|
2 |
+
|
3 |
+
<!-- **[Meta AI Research, FAIR](https://ai.facebook.com/research/)**
|
4 |
+
|
5 |
+
[Alexander Kirillov](https://alexander-kirillov.github.io/), [Eric Mintun](https://ericmintun.github.io/), [Nikhila Ravi](https://nikhilaravi.com/), [Hanzi Mao](https://hanzimao.me/), Chloe Rolland, Laura Gustafson, [Tete Xiao](https://tetexiao.com), [Spencer Whitehead](https://www.spencerwhitehead.com/), Alex Berg, Wan-Yen Lo, [Piotr Dollar](https://pdollar.github.io/), [Ross Girshick](https://www.rossgirshick.info/)
|
6 |
+
|
7 |
+
[[`Paper`](https://ai.facebook.com/research/publications/segment-anything/)] [[`Project`](https://segment-anything.com/)] [[`Demo`](https://segment-anything.com/demo)] [[`Dataset`](https://segment-anything.com/dataset/index.html)] [[`Blog`](https://ai.facebook.com/blog/segment-anything-foundation-model-image-segmentation/)] [[`BibTeX`](#citing-segment-anything)]
|
8 |
+
|
9 |
+
![SAM design](assets/model_diagram.png?raw=true)
|
10 |
+
|
11 |
+
The **Segment Anything Model (SAM)** produces high quality object masks from input prompts such as points or boxes, and it can be used to generate masks for all objects in an image. It has been trained on a [dataset](https://segment-anything.com/dataset/index.html) of 11 million images and 1.1 billion masks, and has strong zero-shot performance on a variety of segmentation tasks.
|
12 |
+
|
13 |
+
<p float="left">
|
14 |
+
<img src="assets/masks1.png?raw=true" width="37.25%" />
|
15 |
+
<img src="assets/masks2.jpg?raw=true" width="61.5%" />
|
16 |
+
</p> -->
|
17 |
+
|
18 |
+
## Introduction
|
19 |
+
|
20 |
+
This is the official implementation of the paper "[Expediting Large-Scale Vision Transformer for Dense Prediction without Fine-tuning](https://arxiv.org/abs/2210.01035)" on [Segment Anything Model (SAM)](https://segment-anything.com/).
|
21 |
+
|
22 |
+
![framework](assets/Hourglass_transformer_framework.png)
|
23 |
+
![framework](assets/TokenClusterReconstruct_Details.png)
|
24 |
+
|
25 |
+
Our method can speed up SAM without any training. The bottleneck of SAM is image encoder. We implement our method on image encoder to signifficantly speed up the generation process. We test our method on different SAM models using a single 16G Tesla-V100. We set `--points-per-side=12` and `--points-per-batch=144` so that the generation process executes only one time.
|
26 |
+
|
27 |
+
| Model | clustering location | num of clusters | speed(image/s) |
|
28 |
+
| ---------------- | ------------------- | --------------- | ------------------ |
|
29 |
+
| SAM-ViT-H | - | - | 1.27 |
|
30 |
+
| SAM-ViT-H + ours | 18 | 121 | 1.40(1.10x faster) |
|
31 |
+
| SAM-ViT-H + ours | 14 | 100 | 1.52(1.19x faster) |
|
32 |
+
| SAM-ViT-H + ours | 8 | 100 | 1.64(1.30x faster) |
|
33 |
+
| SAM-ViT-H + ours | 8 | 81 | 1.82(1.44x faster) |
|
34 |
+
| SAM-ViT-H + ours | 6 | 81 | 1.89(1.49x faster) |
|
35 |
+
|
36 |
+
Here is the visualization of the setting above.
|
37 |
+
|
38 |
+
![result of sam-vit-h + ours](assets/result_vit_h.png)
|
39 |
+
|
40 |
+
We also try to implement our method on smaller model. Here are some examples generate by SAM w/ ViT-L + ours, with the setting of `--points-per-side=16` and `--points-per-batch=256`.
|
41 |
+
|
42 |
+
![result of sam-vit-l + ours](assets/result_vit_l.png)
|
43 |
+
|
44 |
+
## Installation
|
45 |
+
|
46 |
+
The code requires `python>=3.8`, as well as `pytorch>=1.7` and `torchvision>=0.8`. Please follow the instructions [here](https://pytorch.org/get-started/locally/) to install both PyTorch and TorchVision dependencies. Installing both PyTorch and TorchVision with CUDA support is strongly recommended.
|
47 |
+
|
48 |
+
<!-- Install Segment Anything:
|
49 |
+
|
50 |
+
```
|
51 |
+
pip install git+https://github.com/facebookresearch/segment-anything.git
|
52 |
+
```
|
53 |
+
|
54 |
+
or clone the repository locally and install with -->
|
55 |
+
|
56 |
+
To use Segment Anything with our method, please clone this repository locally and install with
|
57 |
+
|
58 |
+
```
|
59 |
+
pip install -e .
|
60 |
+
```
|
61 |
+
|
62 |
+
The following optional dependencies are necessary for mask post-processing, saving masks in COCO format, the example notebooks, and exporting the model in ONNX format. `jupyter` is also required to run the example notebooks.
|
63 |
+
```
|
64 |
+
pip install opencv-python pycocotools matplotlib onnxruntime onnx
|
65 |
+
```
|
66 |
+
|
67 |
+
|
68 |
+
## <a name="GettingStarted"></a>Getting Started
|
69 |
+
|
70 |
+
You can run the code like using original Segment Anything Model. The only difference is that you need to add `use_hourglass=True` as parameter while calling `build_sam` function. Here is an example.
|
71 |
+
|
72 |
+
First download a [model checkpoint](#model-checkpoints). Then the model can be used in just a few lines to get masks from a given prompt:
|
73 |
+
|
74 |
+
```
|
75 |
+
from segment_anything import build_sam, SamPredictor
|
76 |
+
predictor = SamPredictor(build_sam(checkpoint="</path/to/model.pth>", use_hourglass=True))
|
77 |
+
predictor.set_image(<your_image>)
|
78 |
+
masks, _, _ = predictor.predict(<input_prompts>)
|
79 |
+
```
|
80 |
+
|
81 |
+
or generate masks for an entire image:
|
82 |
+
|
83 |
+
```
|
84 |
+
from segment_anything import build_sam, SamAutomaticMaskGenerator
|
85 |
+
mask_generator = SamAutomaticMaskGenerator(build_sam(checkpoint="</path/to/model.pth>", use_hourglass=True))
|
86 |
+
masks = mask_generator.generate(<your_image>)
|
87 |
+
```
|
88 |
+
|
89 |
+
Additionally, masks can be generated for images from the command line:
|
90 |
+
|
91 |
+
```
|
92 |
+
python scripts/amg.py --checkpoint <path/to/sam/checkpoint> --input <image_or_folder> --output <output_directory> --use_hourglass
|
93 |
+
```
|
94 |
+
|
95 |
+
You need to add `--use_hourglass` if you want to use our method to accelerate the process.
|
96 |
+
|
97 |
+
|
98 |
+
## <a name="Models"></a>Model Checkpoints
|
99 |
+
|
100 |
+
<!-- Three model versions of the model are available with different backbone sizes. These models can be instantiated by running
|
101 |
+
```
|
102 |
+
from segment_anything import sam_model_registry
|
103 |
+
sam = sam_model_registry["<name>"](checkpoint="<path/to/checkpoint>")
|
104 |
+
```
|
105 |
+
Click the links below to download the checkpoint for the corresponding model name. The default model in bold can also be instantiated with `build_sam`, as in the examples in [Getting Started](#getting-started). -->
|
106 |
+
|
107 |
+
Here are the official weight of SAM model.
|
108 |
+
|
109 |
+
* **`default` or `vit_h`: [ViT-H SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth)**
|
110 |
+
* `vit_l`: [ViT-L SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_l_0b3195.pth)
|
111 |
+
* `vit_b`: [ViT-B SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_b_01ec64.pth)
|
112 |
+
|
113 |
+
## License
|
114 |
+
The model is licensed under the [Apache 2.0 license](LICENSE).
|
115 |
+
|
116 |
+
## Citation
|
117 |
+
|
118 |
+
If you find this repo useful in your research, please consider citing:
|
119 |
+
|
120 |
+
```latex
|
121 |
+
@article{liang2022expediting,
|
122 |
+
author = {Liang, Weicong and Yuan, Yuhui and Ding, Henghui and Luo, Xiao and Lin, Weihong and Jia, Ding and Zhang, Zheng and Zhang, Chao and Hu, Han},
|
123 |
+
title = {Expediting large-scale vision transformer for dense prediction without fine-tuning},
|
124 |
+
journal = {arXiv preprint arXiv:2210.01035},
|
125 |
+
year = {2022},
|
126 |
+
}
|
127 |
+
```
|
128 |
+
|
129 |
+
If you use SAM or SA-1B in your research, please use the following BibTeX entry.
|
130 |
+
|
131 |
+
```
|
132 |
+
@article{kirillov2023segany,
|
133 |
+
title={Segment Anything},
|
134 |
+
author={Kirillov, Alexander and Mintun, Eric and Ravi, Nikhila and Mao, Hanzi and Rolland, Chloe and Gustafson, Laura and Xiao, Tete and Whitehead, Spencer and Berg, Alexander C. and Lo, Wan-Yen and Doll{\'a}r, Piotr and Girshick, Ross},
|
135 |
+
journal={arXiv:2304.02643},
|
136 |
+
year={2023}
|
137 |
+
}
|
138 |
+
```
|
app.py
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import torch
|
3 |
+
import numpy as np
|
4 |
+
|
5 |
+
import gradio as gr
|
6 |
+
|
7 |
+
from segment_anything import build_sam, SamAutomaticMaskGenerator
|
8 |
+
|
9 |
+
os.system(r'python -m wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth')
|
10 |
+
|
11 |
+
hourglass_args = {
|
12 |
+
"baseline": {},
|
13 |
+
"1.2x faster": {
|
14 |
+
"use_hourglass": True,
|
15 |
+
"hourglass_clustering_location": 14,
|
16 |
+
"hourglass_num_cluster": 100,
|
17 |
+
},
|
18 |
+
"1.5x faster": {
|
19 |
+
"use_hourglass": True,
|
20 |
+
"hourglass_clustering_location": 6,
|
21 |
+
"hourglass_num_cluster": 81,
|
22 |
+
},
|
23 |
+
}
|
24 |
+
|
25 |
+
def predict(image, speed_mode):
|
26 |
+
mask_generator = SamAutomaticMaskGenerator(build_sam(checkpoint="sam_vit_h_4b8939.pth", hourglass_kwargs=hourglass_args[speed_mode]))
|
27 |
+
masks = mask_generator.generate(image)
|
28 |
+
|
29 |
+
if len(masks) == 0:
|
30 |
+
return image
|
31 |
+
sorted_masks = sorted(masks, key=(lambda x: x['area']), reverse=True)
|
32 |
+
img = np.ones(image.shape)
|
33 |
+
for mask in sorted_masks:
|
34 |
+
m = mask['segmentation']
|
35 |
+
color_mask = np.random.random((1, 1, 3))
|
36 |
+
img = img * (1 - m[..., None]) + color_mask * m[..., None]
|
37 |
+
|
38 |
+
image = ((image + img * 255) / 2).astype(np.uint8)
|
39 |
+
return image
|
40 |
+
|
41 |
+
description = """
|
42 |
+
# <center>Expedit-SAM (Expedite Segment Anything Model without any training)</center>
|
43 |
+
Github link: [Link](https://github.com/Expedit-LargeScale-Vision-Transformer/Expedit-SAM)
|
44 |
+
You can select the speed mode you want to use from the "Speed Mode" dropdown menu and click "Run" to segment the image you uploaded to the "Input Image" box.
|
45 |
+
"""
|
46 |
+
if (SPACE_ID := os.getenv('SPACE_ID')) is not None:
|
47 |
+
description += f'\n<p>For faster inference without waiting in queue, you may duplicate the space and upgrade to GPU in settings. <a href="https://huggingface.co/spaces/{SPACE_ID}?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a></p>'
|
48 |
+
|
49 |
+
|
50 |
+
def main():
|
51 |
+
with gr.Blocks() as demo:
|
52 |
+
gr.Markdown(description)
|
53 |
+
with gr.Column():
|
54 |
+
with gr.Row():
|
55 |
+
with gr.Column():
|
56 |
+
input_image = gr.Image(label="Input Image")
|
57 |
+
speed_mode = gr.Dropdown(
|
58 |
+
choices=list(hourglass_args.keys()),
|
59 |
+
value="baseline",
|
60 |
+
label="Speed Mode",
|
61 |
+
multiselect=False,
|
62 |
+
)
|
63 |
+
with gr.Row():
|
64 |
+
run_btn = gr.Button(label="Run", id="run", value="Run")
|
65 |
+
clear_btn = gr.Button(label="Clear", id="clear", value="Clear")
|
66 |
+
output_image = gr.Image(label="Output Image")
|
67 |
+
gr.Examples(
|
68 |
+
examples=[
|
69 |
+
["./notebooks/images/dog.jpg"],
|
70 |
+
["notebooks/images/groceries.jpg"],
|
71 |
+
["notebooks/images/truck.jpg"],
|
72 |
+
],
|
73 |
+
inputs=[input_image],
|
74 |
+
outputs=[output_image],
|
75 |
+
fn=predict,
|
76 |
+
)
|
77 |
+
|
78 |
+
run_btn.click(
|
79 |
+
fn=predict,
|
80 |
+
inputs=[input_image, speed_mode],
|
81 |
+
outputs=output_image
|
82 |
+
)
|
83 |
+
clear_btn.click(
|
84 |
+
fn=lambda: [None, None],
|
85 |
+
inputs=None,
|
86 |
+
outputs=[input_image, output_image],
|
87 |
+
queue=False,
|
88 |
+
)
|
89 |
+
|
90 |
+
demo.queue()
|
91 |
+
demo.launch()
|
92 |
+
|
93 |
+
if __name__ == "__main__":
|
94 |
+
main()
|
assets/Hourglass_transformer_framework.png
ADDED
Git LFS Details
|
assets/TokenClusterReconstruct_Details.png
ADDED
Git LFS Details
|
assets/masks1.png
ADDED
Git LFS Details
|
assets/masks2.jpg
ADDED
assets/model_diagram.png
ADDED
Git LFS Details
|
assets/notebook1.png
ADDED
Git LFS Details
|
assets/notebook2.png
ADDED
Git LFS Details
|
assets/result_vit_h.png
ADDED
Git LFS Details
|
assets/result_vit_l.png
ADDED
Git LFS Details
|
linter.sh
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash -e
|
2 |
+
# Copyright (c) Facebook, Inc. and its affiliates.
|
3 |
+
|
4 |
+
{
|
5 |
+
black --version | grep -E "23\." > /dev/null
|
6 |
+
} || {
|
7 |
+
echo "Linter requires 'black==23.*' !"
|
8 |
+
exit 1
|
9 |
+
}
|
10 |
+
|
11 |
+
ISORT_VERSION=$(isort --version-number)
|
12 |
+
if [[ "$ISORT_VERSION" != 5.12* ]]; then
|
13 |
+
echo "Linter requires isort==5.12.0 !"
|
14 |
+
exit 1
|
15 |
+
fi
|
16 |
+
|
17 |
+
echo "Running isort ..."
|
18 |
+
isort . --atomic
|
19 |
+
|
20 |
+
echo "Running black ..."
|
21 |
+
black -l 100 .
|
22 |
+
|
23 |
+
echo "Running flake8 ..."
|
24 |
+
if [ -x "$(command -v flake8)" ]; then
|
25 |
+
flake8 .
|
26 |
+
else
|
27 |
+
python3 -m flake8 .
|
28 |
+
fi
|
29 |
+
|
30 |
+
echo "Running mypy..."
|
31 |
+
|
32 |
+
mypy --exclude 'setup.py|notebooks' .
|
notebooks/automatic_mask_generator_example.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
notebooks/images/dog.jpg
ADDED
notebooks/images/groceries.jpg
ADDED
notebooks/images/truck.jpg
ADDED
notebooks/onnx_model_example.ipynb
ADDED
@@ -0,0 +1,774 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": null,
|
6 |
+
"id": "901c8ef3",
|
7 |
+
"metadata": {},
|
8 |
+
"outputs": [],
|
9 |
+
"source": [
|
10 |
+
"# Copyright (c) Meta Platforms, Inc. and affiliates."
|
11 |
+
]
|
12 |
+
},
|
13 |
+
{
|
14 |
+
"cell_type": "markdown",
|
15 |
+
"id": "1662bb7c",
|
16 |
+
"metadata": {},
|
17 |
+
"source": [
|
18 |
+
"# Produces masks from prompts using an ONNX model"
|
19 |
+
]
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"cell_type": "markdown",
|
23 |
+
"id": "7fcc21a0",
|
24 |
+
"metadata": {},
|
25 |
+
"source": [
|
26 |
+
"SAM's prompt encoder and mask decoder are very lightweight, which allows for efficient computation of a mask given user input. This notebook shows an example of how to export and use this lightweight component of the model in ONNX format, allowing it to run on a variety of platforms that support an ONNX runtime."
|
27 |
+
]
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"cell_type": "code",
|
31 |
+
"execution_count": 4,
|
32 |
+
"id": "86daff77",
|
33 |
+
"metadata": {},
|
34 |
+
"outputs": [
|
35 |
+
{
|
36 |
+
"data": {
|
37 |
+
"text/html": [
|
38 |
+
"\n",
|
39 |
+
"<a target=\"_blank\" href=\"https://colab.research.google.com/github/facebookresearch/segment-anything/blob/main/notebooks/onnx_model_example.ipynb\">\n",
|
40 |
+
" <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n",
|
41 |
+
"</a>\n"
|
42 |
+
],
|
43 |
+
"text/plain": [
|
44 |
+
"<IPython.core.display.HTML object>"
|
45 |
+
]
|
46 |
+
},
|
47 |
+
"metadata": {},
|
48 |
+
"output_type": "display_data"
|
49 |
+
}
|
50 |
+
],
|
51 |
+
"source": [
|
52 |
+
"from IPython.display import display, HTML\n",
|
53 |
+
"display(HTML(\n",
|
54 |
+
"\"\"\"\n",
|
55 |
+
"<a target=\"_blank\" href=\"https://colab.research.google.com/github/facebookresearch/segment-anything/blob/main/notebooks/onnx_model_example.ipynb\">\n",
|
56 |
+
" <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n",
|
57 |
+
"</a>\n",
|
58 |
+
"\"\"\"\n",
|
59 |
+
"))"
|
60 |
+
]
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"cell_type": "markdown",
|
64 |
+
"id": "55ae4e00",
|
65 |
+
"metadata": {},
|
66 |
+
"source": [
|
67 |
+
"## Environment Set-up"
|
68 |
+
]
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"cell_type": "markdown",
|
72 |
+
"id": "109a5cc2",
|
73 |
+
"metadata": {},
|
74 |
+
"source": [
|
75 |
+
"If running locally using jupyter, first install `segment_anything` in your environment using the [installation instructions](https://github.com/facebookresearch/segment-anything#installation) in the repository. The latest stable versions of PyTorch and ONNX are recommended for this notebook. If running from Google Colab, set `using_collab=True` below and run the cell. In Colab, be sure to select 'GPU' under 'Edit'->'Notebook Settings'->'Hardware accelerator'."
|
76 |
+
]
|
77 |
+
},
|
78 |
+
{
|
79 |
+
"cell_type": "code",
|
80 |
+
"execution_count": 5,
|
81 |
+
"id": "39b99fc4",
|
82 |
+
"metadata": {},
|
83 |
+
"outputs": [],
|
84 |
+
"source": [
|
85 |
+
"using_colab = False"
|
86 |
+
]
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"cell_type": "code",
|
90 |
+
"execution_count": 6,
|
91 |
+
"id": "296a69be",
|
92 |
+
"metadata": {},
|
93 |
+
"outputs": [],
|
94 |
+
"source": [
|
95 |
+
"if using_colab:\n",
|
96 |
+
" import torch\n",
|
97 |
+
" import torchvision\n",
|
98 |
+
" print(\"PyTorch version:\", torch.__version__)\n",
|
99 |
+
" print(\"Torchvision version:\", torchvision.__version__)\n",
|
100 |
+
" print(\"CUDA is available:\", torch.cuda.is_available())\n",
|
101 |
+
" import sys\n",
|
102 |
+
" !{sys.executable} -m pip install opencv-python matplotlib onnx onnxruntime\n",
|
103 |
+
" !{sys.executable} -m pip install 'git+https://github.com/facebookresearch/segment-anything.git'\n",
|
104 |
+
" \n",
|
105 |
+
" !mkdir images\n",
|
106 |
+
" !wget -P images https://raw.githubusercontent.com/facebookresearch/segment-anything/main/notebooks/images/truck.jpg\n",
|
107 |
+
" \n",
|
108 |
+
" !wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth"
|
109 |
+
]
|
110 |
+
},
|
111 |
+
{
|
112 |
+
"cell_type": "markdown",
|
113 |
+
"id": "dc4a58be",
|
114 |
+
"metadata": {},
|
115 |
+
"source": [
|
116 |
+
"## Set-up"
|
117 |
+
]
|
118 |
+
},
|
119 |
+
{
|
120 |
+
"cell_type": "markdown",
|
121 |
+
"id": "42396e8d",
|
122 |
+
"metadata": {},
|
123 |
+
"source": [
|
124 |
+
"Note that this notebook requires both the `onnx` and `onnxruntime` optional dependencies, in addition to `opencv-python` and `matplotlib` for visualization."
|
125 |
+
]
|
126 |
+
},
|
127 |
+
{
|
128 |
+
"cell_type": "code",
|
129 |
+
"execution_count": null,
|
130 |
+
"id": "2c712610",
|
131 |
+
"metadata": {},
|
132 |
+
"outputs": [],
|
133 |
+
"source": [
|
134 |
+
"import torch\n",
|
135 |
+
"import numpy as np\n",
|
136 |
+
"import cv2\n",
|
137 |
+
"import matplotlib.pyplot as plt\n",
|
138 |
+
"from segment_anything import sam_model_registry, SamPredictor\n",
|
139 |
+
"from segment_anything.utils.onnx import SamOnnxModel\n",
|
140 |
+
"\n",
|
141 |
+
"import onnxruntime\n",
|
142 |
+
"from onnxruntime.quantization import QuantType\n",
|
143 |
+
"from onnxruntime.quantization.quantize import quantize_dynamic"
|
144 |
+
]
|
145 |
+
},
|
146 |
+
{
|
147 |
+
"cell_type": "code",
|
148 |
+
"execution_count": null,
|
149 |
+
"id": "f29441b9",
|
150 |
+
"metadata": {},
|
151 |
+
"outputs": [],
|
152 |
+
"source": [
|
153 |
+
"def show_mask(mask, ax):\n",
|
154 |
+
" color = np.array([30/255, 144/255, 255/255, 0.6])\n",
|
155 |
+
" h, w = mask.shape[-2:]\n",
|
156 |
+
" mask_image = mask.reshape(h, w, 1) * color.reshape(1, 1, -1)\n",
|
157 |
+
" ax.imshow(mask_image)\n",
|
158 |
+
" \n",
|
159 |
+
"def show_points(coords, labels, ax, marker_size=375):\n",
|
160 |
+
" pos_points = coords[labels==1]\n",
|
161 |
+
" neg_points = coords[labels==0]\n",
|
162 |
+
" ax.scatter(pos_points[:, 0], pos_points[:, 1], color='green', marker='*', s=marker_size, edgecolor='white', linewidth=1.25)\n",
|
163 |
+
" ax.scatter(neg_points[:, 0], neg_points[:, 1], color='red', marker='*', s=marker_size, edgecolor='white', linewidth=1.25) \n",
|
164 |
+
" \n",
|
165 |
+
"def show_box(box, ax):\n",
|
166 |
+
" x0, y0 = box[0], box[1]\n",
|
167 |
+
" w, h = box[2] - box[0], box[3] - box[1]\n",
|
168 |
+
" ax.add_patch(plt.Rectangle((x0, y0), w, h, edgecolor='green', facecolor=(0,0,0,0), lw=2)) "
|
169 |
+
]
|
170 |
+
},
|
171 |
+
{
|
172 |
+
"cell_type": "markdown",
|
173 |
+
"id": "bd0f6b2b",
|
174 |
+
"metadata": {},
|
175 |
+
"source": [
|
176 |
+
"## Export an ONNX model"
|
177 |
+
]
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"cell_type": "markdown",
|
181 |
+
"id": "1540f719",
|
182 |
+
"metadata": {},
|
183 |
+
"source": [
|
184 |
+
"Set the path below to a SAM model checkpoint, then load the model. This will be needed to both export the model and to calculate embeddings for the model."
|
185 |
+
]
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"cell_type": "code",
|
189 |
+
"execution_count": null,
|
190 |
+
"id": "76fc53f4",
|
191 |
+
"metadata": {},
|
192 |
+
"outputs": [],
|
193 |
+
"source": [
|
194 |
+
"checkpoint = \"sam_vit_h_4b8939.pth\"\n",
|
195 |
+
"model_type = \"default\""
|
196 |
+
]
|
197 |
+
},
|
198 |
+
{
|
199 |
+
"cell_type": "code",
|
200 |
+
"execution_count": null,
|
201 |
+
"id": "11bfc8aa",
|
202 |
+
"metadata": {},
|
203 |
+
"outputs": [],
|
204 |
+
"source": [
|
205 |
+
"sam = sam_model_registry[model_type](checkpoint=checkpoint)"
|
206 |
+
]
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"cell_type": "markdown",
|
210 |
+
"id": "450c089c",
|
211 |
+
"metadata": {},
|
212 |
+
"source": [
|
213 |
+
"The script `segment-anything/scripts/export_onnx_model.py` can be used to export the necessary portion of SAM. Alternatively, run the following code to export an ONNX model. If you have already exported a model, set the path below and skip to the next section. Assure that the exported ONNX model aligns with the checkpoint and model type set above. This notebook expects the model was exported with the parameter `return_single_mask=True`."
|
214 |
+
]
|
215 |
+
},
|
216 |
+
{
|
217 |
+
"cell_type": "code",
|
218 |
+
"execution_count": null,
|
219 |
+
"id": "38a8add8",
|
220 |
+
"metadata": {},
|
221 |
+
"outputs": [],
|
222 |
+
"source": [
|
223 |
+
"onnx_model_path = None # Set to use an already exported model, then skip to the next section."
|
224 |
+
]
|
225 |
+
},
|
226 |
+
{
|
227 |
+
"cell_type": "code",
|
228 |
+
"execution_count": null,
|
229 |
+
"id": "7da638ba",
|
230 |
+
"metadata": {
|
231 |
+
"scrolled": false
|
232 |
+
},
|
233 |
+
"outputs": [],
|
234 |
+
"source": [
|
235 |
+
"import warnings\n",
|
236 |
+
"\n",
|
237 |
+
"onnx_model_path = \"sam_onnx_example.onnx\"\n",
|
238 |
+
"\n",
|
239 |
+
"onnx_model = SamOnnxModel(sam, return_single_mask=True)\n",
|
240 |
+
"\n",
|
241 |
+
"dynamic_axes = {\n",
|
242 |
+
" \"point_coords\": {1: \"num_points\"},\n",
|
243 |
+
" \"point_labels\": {1: \"num_points\"},\n",
|
244 |
+
"}\n",
|
245 |
+
"\n",
|
246 |
+
"embed_dim = sam.prompt_encoder.embed_dim\n",
|
247 |
+
"embed_size = sam.prompt_encoder.image_embedding_size\n",
|
248 |
+
"mask_input_size = [4 * x for x in embed_size]\n",
|
249 |
+
"dummy_inputs = {\n",
|
250 |
+
" \"image_embeddings\": torch.randn(1, embed_dim, *embed_size, dtype=torch.float),\n",
|
251 |
+
" \"point_coords\": torch.randint(low=0, high=1024, size=(1, 5, 2), dtype=torch.float),\n",
|
252 |
+
" \"point_labels\": torch.randint(low=0, high=4, size=(1, 5), dtype=torch.float),\n",
|
253 |
+
" \"mask_input\": torch.randn(1, 1, *mask_input_size, dtype=torch.float),\n",
|
254 |
+
" \"has_mask_input\": torch.tensor([1], dtype=torch.float),\n",
|
255 |
+
" \"orig_im_size\": torch.tensor([1500, 2250], dtype=torch.float),\n",
|
256 |
+
"}\n",
|
257 |
+
"output_names = [\"masks\", \"iou_predictions\", \"low_res_masks\"]\n",
|
258 |
+
"\n",
|
259 |
+
"with warnings.catch_warnings():\n",
|
260 |
+
" warnings.filterwarnings(\"ignore\", category=torch.jit.TracerWarning)\n",
|
261 |
+
" warnings.filterwarnings(\"ignore\", category=UserWarning)\n",
|
262 |
+
" with open(onnx_model_path, \"wb\") as f:\n",
|
263 |
+
" torch.onnx.export(\n",
|
264 |
+
" onnx_model,\n",
|
265 |
+
" tuple(dummy_inputs.values()),\n",
|
266 |
+
" f,\n",
|
267 |
+
" export_params=True,\n",
|
268 |
+
" verbose=False,\n",
|
269 |
+
" opset_version=17,\n",
|
270 |
+
" do_constant_folding=True,\n",
|
271 |
+
" input_names=list(dummy_inputs.keys()),\n",
|
272 |
+
" output_names=output_names,\n",
|
273 |
+
" dynamic_axes=dynamic_axes,\n",
|
274 |
+
" ) "
|
275 |
+
]
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"cell_type": "markdown",
|
279 |
+
"id": "c450cf1a",
|
280 |
+
"metadata": {},
|
281 |
+
"source": [
|
282 |
+
"If desired, the model can additionally be quantized and optimized. We find this improves web runtime significantly for negligible change in qualitative performance. Run the next cell to quantize the model, or skip to the next section otherwise."
|
283 |
+
]
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"cell_type": "code",
|
287 |
+
"execution_count": null,
|
288 |
+
"id": "235d39fe",
|
289 |
+
"metadata": {},
|
290 |
+
"outputs": [],
|
291 |
+
"source": [
|
292 |
+
"onnx_model_quantized_path = \"sam_onnx_quantized_example.onnx\"\n",
|
293 |
+
"quantize_dynamic(\n",
|
294 |
+
" model_input=onnx_model_path,\n",
|
295 |
+
" model_output=onnx_model_quantized_path,\n",
|
296 |
+
" optimize_model=True,\n",
|
297 |
+
" per_channel=False,\n",
|
298 |
+
" reduce_range=False,\n",
|
299 |
+
" weight_type=QuantType.QUInt8,\n",
|
300 |
+
")\n",
|
301 |
+
"onnx_model_path = onnx_model_quantized_path"
|
302 |
+
]
|
303 |
+
},
|
304 |
+
{
|
305 |
+
"cell_type": "markdown",
|
306 |
+
"id": "927a928b",
|
307 |
+
"metadata": {},
|
308 |
+
"source": [
|
309 |
+
"## Example Image"
|
310 |
+
]
|
311 |
+
},
|
312 |
+
{
|
313 |
+
"cell_type": "code",
|
314 |
+
"execution_count": null,
|
315 |
+
"id": "6be6eb55",
|
316 |
+
"metadata": {},
|
317 |
+
"outputs": [],
|
318 |
+
"source": [
|
319 |
+
"image = cv2.imread('images/truck.jpg')\n",
|
320 |
+
"image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)"
|
321 |
+
]
|
322 |
+
},
|
323 |
+
{
|
324 |
+
"cell_type": "code",
|
325 |
+
"execution_count": null,
|
326 |
+
"id": "b7e9a27a",
|
327 |
+
"metadata": {},
|
328 |
+
"outputs": [],
|
329 |
+
"source": [
|
330 |
+
"plt.figure(figsize=(10,10))\n",
|
331 |
+
"plt.imshow(image)\n",
|
332 |
+
"plt.axis('on')\n",
|
333 |
+
"plt.show()"
|
334 |
+
]
|
335 |
+
},
|
336 |
+
{
|
337 |
+
"cell_type": "markdown",
|
338 |
+
"id": "027b177b",
|
339 |
+
"metadata": {},
|
340 |
+
"source": [
|
341 |
+
"## Using an ONNX model"
|
342 |
+
]
|
343 |
+
},
|
344 |
+
{
|
345 |
+
"cell_type": "markdown",
|
346 |
+
"id": "778d4593",
|
347 |
+
"metadata": {},
|
348 |
+
"source": [
|
349 |
+
"Here as an example, we use `onnxruntime` in python on CPU to execute the ONNX model. However, any platform that supports an ONNX runtime could be used in principle. Launch the runtime session below:"
|
350 |
+
]
|
351 |
+
},
|
352 |
+
{
|
353 |
+
"cell_type": "code",
|
354 |
+
"execution_count": null,
|
355 |
+
"id": "9689b1bf",
|
356 |
+
"metadata": {},
|
357 |
+
"outputs": [],
|
358 |
+
"source": [
|
359 |
+
"ort_session = onnxruntime.InferenceSession(onnx_model_path)"
|
360 |
+
]
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"cell_type": "markdown",
|
364 |
+
"id": "7708ead6",
|
365 |
+
"metadata": {},
|
366 |
+
"source": [
|
367 |
+
"To use the ONNX model, the image must first be pre-processed using the SAM image encoder. This is a heavier weight process best performed on GPU. SamPredictor can be used as normal, then `.get_image_embedding()` will retreive the intermediate features."
|
368 |
+
]
|
369 |
+
},
|
370 |
+
{
|
371 |
+
"cell_type": "code",
|
372 |
+
"execution_count": null,
|
373 |
+
"id": "26e067b4",
|
374 |
+
"metadata": {},
|
375 |
+
"outputs": [],
|
376 |
+
"source": [
|
377 |
+
"sam.to(device='cuda')\n",
|
378 |
+
"predictor = SamPredictor(sam)"
|
379 |
+
]
|
380 |
+
},
|
381 |
+
{
|
382 |
+
"cell_type": "code",
|
383 |
+
"execution_count": null,
|
384 |
+
"id": "7ad3f0d6",
|
385 |
+
"metadata": {},
|
386 |
+
"outputs": [],
|
387 |
+
"source": [
|
388 |
+
"predictor.set_image(image)"
|
389 |
+
]
|
390 |
+
},
|
391 |
+
{
|
392 |
+
"cell_type": "code",
|
393 |
+
"execution_count": null,
|
394 |
+
"id": "8a6f0f07",
|
395 |
+
"metadata": {},
|
396 |
+
"outputs": [],
|
397 |
+
"source": [
|
398 |
+
"image_embedding = predictor.get_image_embedding().cpu().numpy()"
|
399 |
+
]
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"cell_type": "code",
|
403 |
+
"execution_count": null,
|
404 |
+
"id": "5e112f33",
|
405 |
+
"metadata": {},
|
406 |
+
"outputs": [],
|
407 |
+
"source": [
|
408 |
+
"image_embedding.shape"
|
409 |
+
]
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"cell_type": "markdown",
|
413 |
+
"id": "6337b654",
|
414 |
+
"metadata": {},
|
415 |
+
"source": [
|
416 |
+
"The ONNX model has a different input signature than `SamPredictor.predict`. The following inputs must all be supplied. Note the special cases for both point and mask inputs. All inputs are `np.float32`.\n",
|
417 |
+
"* `image_embeddings`: The image embedding from `predictor.get_image_embedding()`. Has a batch index of length 1.\n",
|
418 |
+
"* `point_coords`: Coordinates of sparse input prompts, corresponding to both point inputs and box inputs. Boxes are encoded using two points, one for the top-left corner and one for the bottom-right corner. *Coordinates must already be transformed to long-side 1024.* Has a batch index of length 1.\n",
|
419 |
+
"* `point_labels`: Labels for the sparse input prompts. 0 is a negative input point, 1 is a positive input point, 2 is a top-left box corner, 3 is a bottom-right box corner, and -1 is a padding point. *If there is no box input, a single padding point with label -1 and coordinates (0.0, 0.0) should be concatenated.*\n",
|
420 |
+
"* `mask_input`: A mask input to the model with shape 1x1x256x256. This must be supplied even if there is no mask input. In this case, it can just be zeros.\n",
|
421 |
+
"* `has_mask_input`: An indicator for the mask input. 1 indicates a mask input, 0 indicates no mask input.\n",
|
422 |
+
"* `orig_im_size`: The size of the input image in (H,W) format, before any transformation. \n",
|
423 |
+
"\n",
|
424 |
+
"Additionally, the ONNX model does not threshold the output mask logits. To obtain a binary mask, threshold at `sam.mask_threshold` (equal to 0.0)."
|
425 |
+
]
|
426 |
+
},
|
427 |
+
{
|
428 |
+
"cell_type": "markdown",
|
429 |
+
"id": "bf5a9f55",
|
430 |
+
"metadata": {},
|
431 |
+
"source": [
|
432 |
+
"### Example point input"
|
433 |
+
]
|
434 |
+
},
|
435 |
+
{
|
436 |
+
"cell_type": "code",
|
437 |
+
"execution_count": null,
|
438 |
+
"id": "1c0deef0",
|
439 |
+
"metadata": {},
|
440 |
+
"outputs": [],
|
441 |
+
"source": [
|
442 |
+
"input_point = np.array([[500, 375]])\n",
|
443 |
+
"input_label = np.array([1])"
|
444 |
+
]
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"cell_type": "markdown",
|
448 |
+
"id": "7256394c",
|
449 |
+
"metadata": {},
|
450 |
+
"source": [
|
451 |
+
"Add a batch index, concatenate a padding point, and transform."
|
452 |
+
]
|
453 |
+
},
|
454 |
+
{
|
455 |
+
"cell_type": "code",
|
456 |
+
"execution_count": null,
|
457 |
+
"id": "4f69903e",
|
458 |
+
"metadata": {},
|
459 |
+
"outputs": [],
|
460 |
+
"source": [
|
461 |
+
"onnx_coord = np.concatenate([input_point, np.array([[0.0, 0.0]])], axis=0)[None, :, :]\n",
|
462 |
+
"onnx_label = np.concatenate([input_label, np.array([-1])], axis=0)[None, :].astype(np.float32)\n",
|
463 |
+
"\n",
|
464 |
+
"onnx_coord = predictor.transform.apply_coords(onnx_coord, image.shape[:2]).astype(np.float32)\n"
|
465 |
+
]
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"cell_type": "markdown",
|
469 |
+
"id": "b188dc53",
|
470 |
+
"metadata": {},
|
471 |
+
"source": [
|
472 |
+
"Create an empty mask input and an indicator for no mask."
|
473 |
+
]
|
474 |
+
},
|
475 |
+
{
|
476 |
+
"cell_type": "code",
|
477 |
+
"execution_count": null,
|
478 |
+
"id": "5cb52bcf",
|
479 |
+
"metadata": {},
|
480 |
+
"outputs": [],
|
481 |
+
"source": [
|
482 |
+
"onnx_mask_input = np.zeros((1, 1, 256, 256), dtype=np.float32)\n",
|
483 |
+
"onnx_has_mask_input = np.zeros(1, dtype=np.float32)"
|
484 |
+
]
|
485 |
+
},
|
486 |
+
{
|
487 |
+
"cell_type": "markdown",
|
488 |
+
"id": "a99c2cc5",
|
489 |
+
"metadata": {},
|
490 |
+
"source": [
|
491 |
+
"Package the inputs to run in the onnx model"
|
492 |
+
]
|
493 |
+
},
|
494 |
+
{
|
495 |
+
"cell_type": "code",
|
496 |
+
"execution_count": null,
|
497 |
+
"id": "b1d7ea11",
|
498 |
+
"metadata": {},
|
499 |
+
"outputs": [],
|
500 |
+
"source": [
|
501 |
+
"ort_inputs = {\n",
|
502 |
+
" \"image_embeddings\": image_embedding,\n",
|
503 |
+
" \"point_coords\": onnx_coord,\n",
|
504 |
+
" \"point_labels\": onnx_label,\n",
|
505 |
+
" \"mask_input\": onnx_mask_input,\n",
|
506 |
+
" \"has_mask_input\": onnx_has_mask_input,\n",
|
507 |
+
" \"orig_im_size\": np.array(image.shape[:2], dtype=np.float32)\n",
|
508 |
+
"}"
|
509 |
+
]
|
510 |
+
},
|
511 |
+
{
|
512 |
+
"cell_type": "markdown",
|
513 |
+
"id": "4b6409c9",
|
514 |
+
"metadata": {},
|
515 |
+
"source": [
|
516 |
+
"Predict a mask and threshold it."
|
517 |
+
]
|
518 |
+
},
|
519 |
+
{
|
520 |
+
"cell_type": "code",
|
521 |
+
"execution_count": null,
|
522 |
+
"id": "dc4cc082",
|
523 |
+
"metadata": {
|
524 |
+
"scrolled": false
|
525 |
+
},
|
526 |
+
"outputs": [],
|
527 |
+
"source": [
|
528 |
+
"masks, _, low_res_logits = ort_session.run(None, ort_inputs)\n",
|
529 |
+
"masks = masks > predictor.model.mask_threshold"
|
530 |
+
]
|
531 |
+
},
|
532 |
+
{
|
533 |
+
"cell_type": "code",
|
534 |
+
"execution_count": null,
|
535 |
+
"id": "d778a8fb",
|
536 |
+
"metadata": {},
|
537 |
+
"outputs": [],
|
538 |
+
"source": [
|
539 |
+
"masks.shape"
|
540 |
+
]
|
541 |
+
},
|
542 |
+
{
|
543 |
+
"cell_type": "code",
|
544 |
+
"execution_count": null,
|
545 |
+
"id": "badb1175",
|
546 |
+
"metadata": {},
|
547 |
+
"outputs": [],
|
548 |
+
"source": [
|
549 |
+
"plt.figure(figsize=(10,10))\n",
|
550 |
+
"plt.imshow(image)\n",
|
551 |
+
"show_mask(masks, plt.gca())\n",
|
552 |
+
"show_points(input_point, input_label, plt.gca())\n",
|
553 |
+
"plt.axis('off')\n",
|
554 |
+
"plt.show() "
|
555 |
+
]
|
556 |
+
},
|
557 |
+
{
|
558 |
+
"cell_type": "markdown",
|
559 |
+
"id": "1f1d4d15",
|
560 |
+
"metadata": {},
|
561 |
+
"source": [
|
562 |
+
"### Example mask input"
|
563 |
+
]
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"cell_type": "code",
|
567 |
+
"execution_count": null,
|
568 |
+
"id": "b319da82",
|
569 |
+
"metadata": {},
|
570 |
+
"outputs": [],
|
571 |
+
"source": [
|
572 |
+
"input_point = np.array([[500, 375], [1125, 625]])\n",
|
573 |
+
"input_label = np.array([1, 1])\n",
|
574 |
+
"\n",
|
575 |
+
"# Use the mask output from the previous run. It is already in the correct form for input to the ONNX model.\n",
|
576 |
+
"onnx_mask_input = low_res_logits"
|
577 |
+
]
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"cell_type": "markdown",
|
581 |
+
"id": "b1823b37",
|
582 |
+
"metadata": {},
|
583 |
+
"source": [
|
584 |
+
"Transform the points as in the previous example."
|
585 |
+
]
|
586 |
+
},
|
587 |
+
{
|
588 |
+
"cell_type": "code",
|
589 |
+
"execution_count": null,
|
590 |
+
"id": "8885130f",
|
591 |
+
"metadata": {},
|
592 |
+
"outputs": [],
|
593 |
+
"source": [
|
594 |
+
"onnx_coord = np.concatenate([input_point, np.array([[0.0, 0.0]])], axis=0)[None, :, :]\n",
|
595 |
+
"onnx_label = np.concatenate([input_label, np.array([-1])], axis=0)[None, :].astype(np.float32)\n",
|
596 |
+
"\n",
|
597 |
+
"onnx_coord = predictor.transform.apply_coords(onnx_coord, image.shape[:2]).astype(np.float32)"
|
598 |
+
]
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"cell_type": "markdown",
|
602 |
+
"id": "28e47b69",
|
603 |
+
"metadata": {},
|
604 |
+
"source": [
|
605 |
+
"The `has_mask_input` indicator is now 1."
|
606 |
+
]
|
607 |
+
},
|
608 |
+
{
|
609 |
+
"cell_type": "code",
|
610 |
+
"execution_count": null,
|
611 |
+
"id": "3ab4483a",
|
612 |
+
"metadata": {},
|
613 |
+
"outputs": [],
|
614 |
+
"source": [
|
615 |
+
"onnx_has_mask_input = np.ones(1, dtype=np.float32)"
|
616 |
+
]
|
617 |
+
},
|
618 |
+
{
|
619 |
+
"cell_type": "markdown",
|
620 |
+
"id": "d3781955",
|
621 |
+
"metadata": {},
|
622 |
+
"source": [
|
623 |
+
"Package inputs, then predict and threshold the mask."
|
624 |
+
]
|
625 |
+
},
|
626 |
+
{
|
627 |
+
"cell_type": "code",
|
628 |
+
"execution_count": null,
|
629 |
+
"id": "0c1ec096",
|
630 |
+
"metadata": {},
|
631 |
+
"outputs": [],
|
632 |
+
"source": [
|
633 |
+
"ort_inputs = {\n",
|
634 |
+
" \"image_embeddings\": image_embedding,\n",
|
635 |
+
" \"point_coords\": onnx_coord,\n",
|
636 |
+
" \"point_labels\": onnx_label,\n",
|
637 |
+
" \"mask_input\": onnx_mask_input,\n",
|
638 |
+
" \"has_mask_input\": onnx_has_mask_input,\n",
|
639 |
+
" \"orig_im_size\": np.array(image.shape[:2], dtype=np.float32)\n",
|
640 |
+
"}\n",
|
641 |
+
"\n",
|
642 |
+
"masks, _, _ = ort_session.run(None, ort_inputs)\n",
|
643 |
+
"masks = masks > predictor.model.mask_threshold"
|
644 |
+
]
|
645 |
+
},
|
646 |
+
{
|
647 |
+
"cell_type": "code",
|
648 |
+
"execution_count": null,
|
649 |
+
"id": "1e36554b",
|
650 |
+
"metadata": {},
|
651 |
+
"outputs": [],
|
652 |
+
"source": [
|
653 |
+
"plt.figure(figsize=(10,10))\n",
|
654 |
+
"plt.imshow(image)\n",
|
655 |
+
"show_mask(masks, plt.gca())\n",
|
656 |
+
"show_points(input_point, input_label, plt.gca())\n",
|
657 |
+
"plt.axis('off')\n",
|
658 |
+
"plt.show() "
|
659 |
+
]
|
660 |
+
},
|
661 |
+
{
|
662 |
+
"cell_type": "markdown",
|
663 |
+
"id": "2ef211d0",
|
664 |
+
"metadata": {},
|
665 |
+
"source": [
|
666 |
+
"### Example box and point input"
|
667 |
+
]
|
668 |
+
},
|
669 |
+
{
|
670 |
+
"cell_type": "code",
|
671 |
+
"execution_count": null,
|
672 |
+
"id": "51e58d2e",
|
673 |
+
"metadata": {},
|
674 |
+
"outputs": [],
|
675 |
+
"source": [
|
676 |
+
"input_box = np.array([425, 600, 700, 875])\n",
|
677 |
+
"input_point = np.array([[575, 750]])\n",
|
678 |
+
"input_label = np.array([0])"
|
679 |
+
]
|
680 |
+
},
|
681 |
+
{
|
682 |
+
"cell_type": "markdown",
|
683 |
+
"id": "6e119dcb",
|
684 |
+
"metadata": {},
|
685 |
+
"source": [
|
686 |
+
"Add a batch index, concatenate a box and point inputs, add the appropriate labels for the box corners, and transform. There is no padding point since the input includes a box input."
|
687 |
+
]
|
688 |
+
},
|
689 |
+
{
|
690 |
+
"cell_type": "code",
|
691 |
+
"execution_count": null,
|
692 |
+
"id": "bfbe4911",
|
693 |
+
"metadata": {},
|
694 |
+
"outputs": [],
|
695 |
+
"source": [
|
696 |
+
"onnx_box_coords = input_box.reshape(2, 2)\n",
|
697 |
+
"onnx_box_labels = np.array([2,3])\n",
|
698 |
+
"\n",
|
699 |
+
"onnx_coord = np.concatenate([input_point, onnx_box_coords], axis=0)[None, :, :]\n",
|
700 |
+
"onnx_label = np.concatenate([input_label, onnx_box_labels], axis=0)[None, :].astype(np.float32)\n",
|
701 |
+
"\n",
|
702 |
+
"onnx_coord = predictor.transform.apply_coords(onnx_coord, image.shape[:2]).astype(np.float32)"
|
703 |
+
]
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"cell_type": "markdown",
|
707 |
+
"id": "65edabd2",
|
708 |
+
"metadata": {},
|
709 |
+
"source": [
|
710 |
+
"Package inputs, then predict and threshold the mask."
|
711 |
+
]
|
712 |
+
},
|
713 |
+
{
|
714 |
+
"cell_type": "code",
|
715 |
+
"execution_count": null,
|
716 |
+
"id": "2abfba56",
|
717 |
+
"metadata": {},
|
718 |
+
"outputs": [],
|
719 |
+
"source": [
|
720 |
+
"onnx_mask_input = np.zeros((1, 1, 256, 256), dtype=np.float32)\n",
|
721 |
+
"onnx_has_mask_input = np.zeros(1, dtype=np.float32)\n",
|
722 |
+
"\n",
|
723 |
+
"ort_inputs = {\n",
|
724 |
+
" \"image_embeddings\": image_embedding,\n",
|
725 |
+
" \"point_coords\": onnx_coord,\n",
|
726 |
+
" \"point_labels\": onnx_label,\n",
|
727 |
+
" \"mask_input\": onnx_mask_input,\n",
|
728 |
+
" \"has_mask_input\": onnx_has_mask_input,\n",
|
729 |
+
" \"orig_im_size\": np.array(image.shape[:2], dtype=np.float32)\n",
|
730 |
+
"}\n",
|
731 |
+
"\n",
|
732 |
+
"masks, _, _ = ort_session.run(None, ort_inputs)\n",
|
733 |
+
"masks = masks > predictor.model.mask_threshold"
|
734 |
+
]
|
735 |
+
},
|
736 |
+
{
|
737 |
+
"cell_type": "code",
|
738 |
+
"execution_count": null,
|
739 |
+
"id": "8301bf33",
|
740 |
+
"metadata": {},
|
741 |
+
"outputs": [],
|
742 |
+
"source": [
|
743 |
+
"plt.figure(figsize=(10, 10))\n",
|
744 |
+
"plt.imshow(image)\n",
|
745 |
+
"show_mask(masks[0], plt.gca())\n",
|
746 |
+
"show_box(input_box, plt.gca())\n",
|
747 |
+
"show_points(input_point, input_label, plt.gca())\n",
|
748 |
+
"plt.axis('off')\n",
|
749 |
+
"plt.show()"
|
750 |
+
]
|
751 |
+
}
|
752 |
+
],
|
753 |
+
"metadata": {
|
754 |
+
"kernelspec": {
|
755 |
+
"display_name": "Python 3 (ipykernel)",
|
756 |
+
"language": "python",
|
757 |
+
"name": "python3"
|
758 |
+
},
|
759 |
+
"language_info": {
|
760 |
+
"codemirror_mode": {
|
761 |
+
"name": "ipython",
|
762 |
+
"version": 3
|
763 |
+
},
|
764 |
+
"file_extension": ".py",
|
765 |
+
"mimetype": "text/x-python",
|
766 |
+
"name": "python",
|
767 |
+
"nbconvert_exporter": "python",
|
768 |
+
"pygments_lexer": "ipython3",
|
769 |
+
"version": "3.10.10"
|
770 |
+
}
|
771 |
+
},
|
772 |
+
"nbformat": 4,
|
773 |
+
"nbformat_minor": 5
|
774 |
+
}
|
notebooks/predictor_example.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
scripts/amg.py
ADDED
@@ -0,0 +1,335 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import cv2 # type: ignore
|
8 |
+
|
9 |
+
from segment_anything import SamAutomaticMaskGenerator, sam_model_registry
|
10 |
+
|
11 |
+
import argparse
|
12 |
+
import json
|
13 |
+
import os
|
14 |
+
from typing import Any, Dict, List
|
15 |
+
|
16 |
+
import numpy as np
|
17 |
+
import matplotlib.pyplot as plt
|
18 |
+
import time
|
19 |
+
|
20 |
+
parser = argparse.ArgumentParser(
|
21 |
+
description=(
|
22 |
+
"Runs automatic mask generation on an input image or directory of images, "
|
23 |
+
"and outputs masks as either PNGs or COCO-style RLEs. Requires open-cv, "
|
24 |
+
"as well as pycocotools if saving in RLE format."
|
25 |
+
)
|
26 |
+
)
|
27 |
+
|
28 |
+
parser.add_argument(
|
29 |
+
"--input",
|
30 |
+
type=str,
|
31 |
+
required=True,
|
32 |
+
help="Path to either a single input image or folder of images.",
|
33 |
+
)
|
34 |
+
|
35 |
+
parser.add_argument(
|
36 |
+
"--output",
|
37 |
+
type=str,
|
38 |
+
required=True,
|
39 |
+
help=(
|
40 |
+
"Path to the directory where masks will be output. Output will be either a folder "
|
41 |
+
"of PNGs per image or a single json with COCO-style masks."
|
42 |
+
),
|
43 |
+
)
|
44 |
+
|
45 |
+
parser.add_argument(
|
46 |
+
"--model-type",
|
47 |
+
type=str,
|
48 |
+
default="default",
|
49 |
+
help="The type of model to load, in ['default', 'vit_l', 'vit_b']",
|
50 |
+
)
|
51 |
+
|
52 |
+
parser.add_argument(
|
53 |
+
"--checkpoint",
|
54 |
+
type=str,
|
55 |
+
required=True,
|
56 |
+
help="The path to the SAM checkpoint to use for mask generation.",
|
57 |
+
)
|
58 |
+
|
59 |
+
parser.add_argument("--device", type=str, default="cuda", help="The device to run generation on.")
|
60 |
+
|
61 |
+
parser.add_argument(
|
62 |
+
"--convert-to-rle",
|
63 |
+
action="store_true",
|
64 |
+
help=(
|
65 |
+
"Save masks as COCO RLEs in a single json instead of as a folder of PNGs. "
|
66 |
+
"Requires pycocotools."
|
67 |
+
),
|
68 |
+
)
|
69 |
+
|
70 |
+
amg_settings = parser.add_argument_group("AMG Settings")
|
71 |
+
|
72 |
+
amg_settings.add_argument(
|
73 |
+
"--points-per-side",
|
74 |
+
type=int,
|
75 |
+
default=None,
|
76 |
+
help="Generate masks by sampling a grid over the image with this many points to a side.",
|
77 |
+
)
|
78 |
+
|
79 |
+
amg_settings.add_argument(
|
80 |
+
"--points-per-batch",
|
81 |
+
type=int,
|
82 |
+
default=None,
|
83 |
+
help="How many input points to process simultaneously in one batch.",
|
84 |
+
)
|
85 |
+
|
86 |
+
amg_settings.add_argument(
|
87 |
+
"--pred-iou-thresh",
|
88 |
+
type=float,
|
89 |
+
default=None,
|
90 |
+
help="Exclude masks with a predicted score from the model that is lower than this threshold.",
|
91 |
+
)
|
92 |
+
|
93 |
+
amg_settings.add_argument(
|
94 |
+
"--stability-score-thresh",
|
95 |
+
type=float,
|
96 |
+
default=None,
|
97 |
+
help="Exclude masks with a stability score lower than this threshold.",
|
98 |
+
)
|
99 |
+
|
100 |
+
amg_settings.add_argument(
|
101 |
+
"--stability-score-offset",
|
102 |
+
type=float,
|
103 |
+
default=None,
|
104 |
+
help="Larger values perturb the mask more when measuring stability score.",
|
105 |
+
)
|
106 |
+
|
107 |
+
amg_settings.add_argument(
|
108 |
+
"--box-nms-thresh",
|
109 |
+
type=float,
|
110 |
+
default=None,
|
111 |
+
help="The overlap threshold for excluding a duplicate mask.",
|
112 |
+
)
|
113 |
+
|
114 |
+
amg_settings.add_argument(
|
115 |
+
"--crop-n-layers",
|
116 |
+
type=int,
|
117 |
+
default=None,
|
118 |
+
help=(
|
119 |
+
"If >0, mask generation is run on smaller crops of the image to generate more masks. "
|
120 |
+
"The value sets how many different scales to crop at."
|
121 |
+
),
|
122 |
+
)
|
123 |
+
|
124 |
+
amg_settings.add_argument(
|
125 |
+
"--crop-nms-thresh",
|
126 |
+
type=float,
|
127 |
+
default=None,
|
128 |
+
help="The overlap threshold for excluding duplicate masks across different crops.",
|
129 |
+
)
|
130 |
+
|
131 |
+
amg_settings.add_argument(
|
132 |
+
"--crop-overlap-ratio",
|
133 |
+
type=int,
|
134 |
+
default=None,
|
135 |
+
help="Larger numbers mean image crops will overlap more.",
|
136 |
+
)
|
137 |
+
|
138 |
+
amg_settings.add_argument(
|
139 |
+
"--crop-n-points-downscale-factor",
|
140 |
+
type=int,
|
141 |
+
default=None,
|
142 |
+
help="The number of points-per-side in each layer of crop is reduced by this factor.",
|
143 |
+
)
|
144 |
+
|
145 |
+
amg_settings.add_argument(
|
146 |
+
"--min-mask-region-area",
|
147 |
+
type=int,
|
148 |
+
default=None,
|
149 |
+
help=(
|
150 |
+
"Disconnected mask regions or holes with area smaller than this value "
|
151 |
+
"in pixels are removed by postprocessing."
|
152 |
+
),
|
153 |
+
)
|
154 |
+
|
155 |
+
# add hourglass settings
|
156 |
+
amg_settings.add_argument(
|
157 |
+
"--use_hourglass",
|
158 |
+
action="store_true",
|
159 |
+
help="Use hourglass method to expedite mask generation.",
|
160 |
+
)
|
161 |
+
|
162 |
+
amg_settings.add_argument(
|
163 |
+
"--hourglass_clustering_location",
|
164 |
+
type=int,
|
165 |
+
default=6,
|
166 |
+
help="location of clustering, ranging from [0, num of layers of transformer)"
|
167 |
+
)
|
168 |
+
|
169 |
+
amg_settings.add_argument(
|
170 |
+
"--hourglass_num_cluster",
|
171 |
+
type=int,
|
172 |
+
default=100,
|
173 |
+
help="num of clusters, no more than total number of features"
|
174 |
+
)
|
175 |
+
|
176 |
+
amg_settings.add_argument(
|
177 |
+
"--hourglass_cluster_iters",
|
178 |
+
type=int,
|
179 |
+
default=5,
|
180 |
+
help="num of iterations in clustering"
|
181 |
+
)
|
182 |
+
|
183 |
+
amg_settings.add_argument(
|
184 |
+
"--hourglass_temperture",
|
185 |
+
type=float,
|
186 |
+
default=5e-3,
|
187 |
+
help="temperture in clustering and reconstruction"
|
188 |
+
)
|
189 |
+
|
190 |
+
amg_settings.add_argument(
|
191 |
+
"--hourglass_cluster_window_size",
|
192 |
+
type=int,
|
193 |
+
default=5,
|
194 |
+
help="window size in clustering"
|
195 |
+
)
|
196 |
+
|
197 |
+
amg_settings.add_argument(
|
198 |
+
"--hourglass_reconstruction_k",
|
199 |
+
type=int,
|
200 |
+
default=20,
|
201 |
+
help="k in token reconstruction layer of hourglass vit"
|
202 |
+
)
|
203 |
+
|
204 |
+
def write_masks_to_folder(masks: List[Dict[str, Any]], path: str) -> None:
|
205 |
+
header = "id,area,bbox_x0,bbox_y0,bbox_w,bbox_h,point_input_x,point_input_y,predicted_iou,stability_score,crop_box_x0,crop_box_y0,crop_box_w,crop_box_h" # noqa
|
206 |
+
metadata = [header]
|
207 |
+
for i, mask_data in enumerate(masks):
|
208 |
+
mask = mask_data["segmentation"]
|
209 |
+
filename = f"{i}.png"
|
210 |
+
cv2.imwrite(os.path.join(path, filename), mask * 255)
|
211 |
+
mask_metadata = [
|
212 |
+
str(i),
|
213 |
+
str(mask_data["area"]),
|
214 |
+
*[str(x) for x in mask_data["bbox"]],
|
215 |
+
*[str(x) for x in mask_data["point_coords"][0]],
|
216 |
+
str(mask_data["predicted_iou"]),
|
217 |
+
str(mask_data["stability_score"]),
|
218 |
+
*[str(x) for x in mask_data["crop_box"]],
|
219 |
+
]
|
220 |
+
row = ",".join(mask_metadata)
|
221 |
+
metadata.append(row)
|
222 |
+
metadata_path = os.path.join(path, "metadata.csv")
|
223 |
+
with open(metadata_path, "w") as f:
|
224 |
+
f.write("\n".join(metadata))
|
225 |
+
|
226 |
+
return
|
227 |
+
|
228 |
+
|
229 |
+
def get_amg_kwargs(args):
|
230 |
+
amg_kwargs = {
|
231 |
+
"points_per_side": args.points_per_side,
|
232 |
+
"points_per_batch": args.points_per_batch,
|
233 |
+
"pred_iou_thresh": args.pred_iou_thresh,
|
234 |
+
"stability_score_thresh": args.stability_score_thresh,
|
235 |
+
"stability_score_offset": args.stability_score_offset,
|
236 |
+
"box_nms_thresh": args.box_nms_thresh,
|
237 |
+
"crop_n_layers": args.crop_n_layers,
|
238 |
+
"crop_nms_thresh": args.crop_nms_thresh,
|
239 |
+
"crop_overlap_ratio": args.crop_overlap_ratio,
|
240 |
+
"crop_n_points_downscale_factor": args.crop_n_points_downscale_factor,
|
241 |
+
"min_mask_region_area": args.min_mask_region_area,
|
242 |
+
}
|
243 |
+
amg_kwargs = {k: v for k, v in amg_kwargs.items() if v is not None}
|
244 |
+
return amg_kwargs
|
245 |
+
|
246 |
+
|
247 |
+
def get_hourglass_kwargs(args):
|
248 |
+
hourglass_kwargs = {
|
249 |
+
"use_hourglass": args.use_hourglass,
|
250 |
+
"hourglass_clustering_location": args.hourglass_clustering_location,
|
251 |
+
"hourglass_num_cluster": args.hourglass_num_cluster,
|
252 |
+
"hourglass_cluster_iters": args.hourglass_cluster_iters,
|
253 |
+
"hourglass_temperture": args.hourglass_temperture,
|
254 |
+
"hourglass_cluster_window_size": args.hourglass_cluster_window_size,
|
255 |
+
"hourglass_reconstruction_k": args.hourglass_reconstruction_k,
|
256 |
+
}
|
257 |
+
hourglass_kwargs = {k: v for k, v in hourglass_kwargs.items() if v is not None}
|
258 |
+
return hourglass_kwargs
|
259 |
+
|
260 |
+
|
261 |
+
def show_anns(anns):
|
262 |
+
if len(anns) == 0:
|
263 |
+
return
|
264 |
+
sorted_anns = sorted(anns, key=(lambda x: x['area']), reverse=True)
|
265 |
+
ax = plt.gca()
|
266 |
+
ax.set_autoscale_on(False)
|
267 |
+
for ann in sorted_anns:
|
268 |
+
m = ann['segmentation']
|
269 |
+
img = np.ones((m.shape[0], m.shape[1], 3))
|
270 |
+
color_mask = np.random.random((1, 3)).tolist()[0]
|
271 |
+
for i in range(3):
|
272 |
+
img[:,:,i] = color_mask[i]
|
273 |
+
ax.imshow(np.dstack((img, m*0.35)))
|
274 |
+
|
275 |
+
|
276 |
+
def main(args: argparse.Namespace) -> None:
|
277 |
+
print("Loading model...")
|
278 |
+
hourglass_kwargs = get_hourglass_kwargs(args)
|
279 |
+
sam = sam_model_registry[args.model_type](checkpoint=args.checkpoint, **hourglass_kwargs)
|
280 |
+
_ = sam.to(device=args.device)
|
281 |
+
output_mode = "coco_rle" if args.convert_to_rle else "binary_mask"
|
282 |
+
amg_kwargs = get_amg_kwargs(args)
|
283 |
+
generator = SamAutomaticMaskGenerator(sam, output_mode=output_mode, **amg_kwargs)
|
284 |
+
|
285 |
+
if not os.path.isdir(args.input):
|
286 |
+
targets = [args.input]
|
287 |
+
else:
|
288 |
+
targets = [
|
289 |
+
f for f in os.listdir(args.input) if not os.path.isdir(os.path.join(args.input, f))
|
290 |
+
]
|
291 |
+
targets = [os.path.join(args.input, f) for f in targets]
|
292 |
+
|
293 |
+
os.makedirs(args.output, exist_ok=True)
|
294 |
+
|
295 |
+
plt.figure(figsize=(20,20))
|
296 |
+
|
297 |
+
total_time = 0
|
298 |
+
warmup = 0
|
299 |
+
for i, t in enumerate(targets):
|
300 |
+
print(f"Processing '{t}'...")
|
301 |
+
image = cv2.imread(t)
|
302 |
+
if image is None:
|
303 |
+
print(f"Could not load '{t}' as an image, skipping...")
|
304 |
+
continue
|
305 |
+
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
|
306 |
+
|
307 |
+
start = time.perf_counter()
|
308 |
+
masks = generator.generate(image)
|
309 |
+
eta = time.perf_counter() - start
|
310 |
+
if i > warmup:
|
311 |
+
total_time += eta
|
312 |
+
|
313 |
+
base = os.path.basename(t)
|
314 |
+
base = os.path.splitext(base)[0]
|
315 |
+
save_base = os.path.join(args.output, base)
|
316 |
+
if output_mode == "binary_mask":
|
317 |
+
os.makedirs(save_base, exist_ok=True)
|
318 |
+
write_masks_to_folder(masks, save_base)
|
319 |
+
else:
|
320 |
+
save_file = save_base + ".json"
|
321 |
+
with open(save_file, "w") as f:
|
322 |
+
json.dump(masks, f)
|
323 |
+
|
324 |
+
plt.clf()
|
325 |
+
plt.imshow(image)
|
326 |
+
show_anns(masks)
|
327 |
+
plt.axis('off')
|
328 |
+
plt.savefig(os.path.join(save_base, base + '.png'), bbox_inches='tight', pad_inches=0)
|
329 |
+
print("Done!")
|
330 |
+
print(f"Average time per image: {total_time / (len(targets) - warmup)} seconds")
|
331 |
+
|
332 |
+
|
333 |
+
if __name__ == "__main__":
|
334 |
+
args = parser.parse_args()
|
335 |
+
main(args)
|
scripts/benchmark.py
ADDED
@@ -0,0 +1,341 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import cv2 # type: ignore
|
8 |
+
|
9 |
+
from segment_anything import SamAutomaticMaskGenerator, sam_model_registry
|
10 |
+
from segment_anything.utils.amg import (
|
11 |
+
batch_iterator,
|
12 |
+
generate_crop_boxes,
|
13 |
+
)
|
14 |
+
|
15 |
+
import argparse
|
16 |
+
import json
|
17 |
+
import os
|
18 |
+
from typing import Any, Dict, List
|
19 |
+
|
20 |
+
import numpy as np
|
21 |
+
import matplotlib.pyplot as plt
|
22 |
+
import time
|
23 |
+
|
24 |
+
import torch
|
25 |
+
from tqdm import tqdm
|
26 |
+
|
27 |
+
parser = argparse.ArgumentParser(
|
28 |
+
description=(
|
29 |
+
"Runs automatic mask generation on an input image or directory of images, "
|
30 |
+
"and outputs masks as either PNGs or COCO-style RLEs. Requires open-cv, "
|
31 |
+
"as well as pycocotools if saving in RLE format."
|
32 |
+
)
|
33 |
+
)
|
34 |
+
|
35 |
+
parser.add_argument(
|
36 |
+
"--input",
|
37 |
+
type=str,
|
38 |
+
required=True,
|
39 |
+
help="Path to either a single input image or folder of images.",
|
40 |
+
)
|
41 |
+
|
42 |
+
parser.add_argument(
|
43 |
+
"--output",
|
44 |
+
type=str,
|
45 |
+
required=True,
|
46 |
+
help=(
|
47 |
+
"Path to the directory where masks will be output. Output will be either a folder "
|
48 |
+
"of PNGs per image or a single json with COCO-style masks."
|
49 |
+
),
|
50 |
+
)
|
51 |
+
|
52 |
+
parser.add_argument(
|
53 |
+
"--model-type",
|
54 |
+
type=str,
|
55 |
+
default="default",
|
56 |
+
help="The type of model to load, in ['default', 'vit_l', 'vit_b']",
|
57 |
+
)
|
58 |
+
|
59 |
+
parser.add_argument(
|
60 |
+
"--checkpoint",
|
61 |
+
type=str,
|
62 |
+
required=True,
|
63 |
+
help="The path to the SAM checkpoint to use for mask generation.",
|
64 |
+
)
|
65 |
+
|
66 |
+
parser.add_argument("--device", type=str, default="cuda", help="The device to run generation on.")
|
67 |
+
|
68 |
+
parser.add_argument(
|
69 |
+
"--convert-to-rle",
|
70 |
+
action="store_true",
|
71 |
+
help=(
|
72 |
+
"Save masks as COCO RLEs in a single json instead of as a folder of PNGs. "
|
73 |
+
"Requires pycocotools."
|
74 |
+
),
|
75 |
+
)
|
76 |
+
|
77 |
+
amg_settings = parser.add_argument_group("AMG Settings")
|
78 |
+
|
79 |
+
amg_settings.add_argument(
|
80 |
+
"--points-per-side",
|
81 |
+
type=int,
|
82 |
+
default=None,
|
83 |
+
help="Generate masks by sampling a grid over the image with this many points to a side.",
|
84 |
+
)
|
85 |
+
|
86 |
+
amg_settings.add_argument(
|
87 |
+
"--points-per-batch",
|
88 |
+
type=int,
|
89 |
+
default=None,
|
90 |
+
help="How many input points to process simultaneously in one batch.",
|
91 |
+
)
|
92 |
+
|
93 |
+
amg_settings.add_argument(
|
94 |
+
"--pred-iou-thresh",
|
95 |
+
type=float,
|
96 |
+
default=None,
|
97 |
+
help="Exclude masks with a predicted score from the model that is lower than this threshold.",
|
98 |
+
)
|
99 |
+
|
100 |
+
amg_settings.add_argument(
|
101 |
+
"--stability-score-thresh",
|
102 |
+
type=float,
|
103 |
+
default=None,
|
104 |
+
help="Exclude masks with a stability score lower than this threshold.",
|
105 |
+
)
|
106 |
+
|
107 |
+
amg_settings.add_argument(
|
108 |
+
"--stability-score-offset",
|
109 |
+
type=float,
|
110 |
+
default=None,
|
111 |
+
help="Larger values perturb the mask more when measuring stability score.",
|
112 |
+
)
|
113 |
+
|
114 |
+
amg_settings.add_argument(
|
115 |
+
"--box-nms-thresh",
|
116 |
+
type=float,
|
117 |
+
default=None,
|
118 |
+
help="The overlap threshold for excluding a duplicate mask.",
|
119 |
+
)
|
120 |
+
|
121 |
+
amg_settings.add_argument(
|
122 |
+
"--crop-n-layers",
|
123 |
+
type=int,
|
124 |
+
default=None,
|
125 |
+
help=(
|
126 |
+
"If >0, mask generation is run on smaller crops of the image to generate more masks. "
|
127 |
+
"The value sets how many different scales to crop at."
|
128 |
+
),
|
129 |
+
)
|
130 |
+
|
131 |
+
amg_settings.add_argument(
|
132 |
+
"--crop-nms-thresh",
|
133 |
+
type=float,
|
134 |
+
default=None,
|
135 |
+
help="The overlap threshold for excluding duplicate masks across different crops.",
|
136 |
+
)
|
137 |
+
|
138 |
+
amg_settings.add_argument(
|
139 |
+
"--crop-overlap-ratio",
|
140 |
+
type=int,
|
141 |
+
default=None,
|
142 |
+
help="Larger numbers mean image crops will overlap more.",
|
143 |
+
)
|
144 |
+
|
145 |
+
amg_settings.add_argument(
|
146 |
+
"--crop-n-points-downscale-factor",
|
147 |
+
type=int,
|
148 |
+
default=None,
|
149 |
+
help="The number of points-per-side in each layer of crop is reduced by this factor.",
|
150 |
+
)
|
151 |
+
|
152 |
+
amg_settings.add_argument(
|
153 |
+
"--min-mask-region-area",
|
154 |
+
type=int,
|
155 |
+
default=None,
|
156 |
+
help=(
|
157 |
+
"Disconnected mask regions or holes with area smaller than this value "
|
158 |
+
"in pixels are removed by postprocessing."
|
159 |
+
),
|
160 |
+
)
|
161 |
+
|
162 |
+
# add hourglass settings
|
163 |
+
amg_settings.add_argument(
|
164 |
+
"--use_hourglass",
|
165 |
+
action="store_true",
|
166 |
+
help="Use hourglass method to expedite mask generation.",
|
167 |
+
)
|
168 |
+
|
169 |
+
amg_settings.add_argument(
|
170 |
+
"--hourglass_clustering_location",
|
171 |
+
type=int,
|
172 |
+
default=6,
|
173 |
+
help="location of clustering, ranging from [0, num of layers of transformer)"
|
174 |
+
)
|
175 |
+
|
176 |
+
amg_settings.add_argument(
|
177 |
+
"--hourglass_num_cluster",
|
178 |
+
type=int,
|
179 |
+
default=100,
|
180 |
+
help="num of clusters, no more than total number of features"
|
181 |
+
)
|
182 |
+
|
183 |
+
amg_settings.add_argument(
|
184 |
+
"--hourglass_cluster_iters",
|
185 |
+
type=int,
|
186 |
+
default=5,
|
187 |
+
help="num of iterations in clustering"
|
188 |
+
)
|
189 |
+
|
190 |
+
amg_settings.add_argument(
|
191 |
+
"--hourglass_temperture",
|
192 |
+
type=float,
|
193 |
+
default=5e-3,
|
194 |
+
help="temperture in clustering and reconstruction"
|
195 |
+
)
|
196 |
+
|
197 |
+
amg_settings.add_argument(
|
198 |
+
"--hourglass_cluster_window_size",
|
199 |
+
type=int,
|
200 |
+
default=5,
|
201 |
+
help="window size in clustering"
|
202 |
+
)
|
203 |
+
|
204 |
+
amg_settings.add_argument(
|
205 |
+
"--hourglass_reconstruction_k",
|
206 |
+
type=int,
|
207 |
+
default=20,
|
208 |
+
help="k in token reconstruction layer of hourglass vit"
|
209 |
+
)
|
210 |
+
|
211 |
+
def write_masks_to_folder(masks: List[Dict[str, Any]], path: str) -> None:
|
212 |
+
header = "id,area,bbox_x0,bbox_y0,bbox_w,bbox_h,point_input_x,point_input_y,predicted_iou,stability_score,crop_box_x0,crop_box_y0,crop_box_w,crop_box_h" # noqa
|
213 |
+
metadata = [header]
|
214 |
+
for i, mask_data in enumerate(masks):
|
215 |
+
mask = mask_data["segmentation"]
|
216 |
+
filename = f"{i}.png"
|
217 |
+
cv2.imwrite(os.path.join(path, filename), mask * 255)
|
218 |
+
mask_metadata = [
|
219 |
+
str(i),
|
220 |
+
str(mask_data["area"]),
|
221 |
+
*[str(x) for x in mask_data["bbox"]],
|
222 |
+
*[str(x) for x in mask_data["point_coords"][0]],
|
223 |
+
str(mask_data["predicted_iou"]),
|
224 |
+
str(mask_data["stability_score"]),
|
225 |
+
*[str(x) for x in mask_data["crop_box"]],
|
226 |
+
]
|
227 |
+
row = ",".join(mask_metadata)
|
228 |
+
metadata.append(row)
|
229 |
+
metadata_path = os.path.join(path, "metadata.csv")
|
230 |
+
with open(metadata_path, "w") as f:
|
231 |
+
f.write("\n".join(metadata))
|
232 |
+
|
233 |
+
return
|
234 |
+
|
235 |
+
|
236 |
+
def get_amg_kwargs(args):
|
237 |
+
amg_kwargs = {
|
238 |
+
"points_per_side": args.points_per_side,
|
239 |
+
"points_per_batch": args.points_per_batch,
|
240 |
+
"pred_iou_thresh": args.pred_iou_thresh,
|
241 |
+
"stability_score_thresh": args.stability_score_thresh,
|
242 |
+
"stability_score_offset": args.stability_score_offset,
|
243 |
+
"box_nms_thresh": args.box_nms_thresh,
|
244 |
+
"crop_n_layers": args.crop_n_layers,
|
245 |
+
"crop_nms_thresh": args.crop_nms_thresh,
|
246 |
+
"crop_overlap_ratio": args.crop_overlap_ratio,
|
247 |
+
"crop_n_points_downscale_factor": args.crop_n_points_downscale_factor,
|
248 |
+
"min_mask_region_area": args.min_mask_region_area,
|
249 |
+
}
|
250 |
+
amg_kwargs = {k: v for k, v in amg_kwargs.items() if v is not None}
|
251 |
+
return amg_kwargs
|
252 |
+
|
253 |
+
|
254 |
+
def get_hourglass_kwargs(args):
|
255 |
+
hourglass_kwargs = {
|
256 |
+
"use_hourglass": args.use_hourglass,
|
257 |
+
"hourglass_clustering_location": args.hourglass_clustering_location,
|
258 |
+
"hourglass_num_cluster": args.hourglass_num_cluster,
|
259 |
+
"hourglass_cluster_iters": args.hourglass_cluster_iters,
|
260 |
+
"hourglass_temperture": args.hourglass_temperture,
|
261 |
+
"hourglass_cluster_window_size": args.hourglass_cluster_window_size,
|
262 |
+
"hourglass_reconstruction_k": args.hourglass_reconstruction_k,
|
263 |
+
}
|
264 |
+
hourglass_kwargs = {k: v for k, v in hourglass_kwargs.items() if v is not None}
|
265 |
+
return hourglass_kwargs
|
266 |
+
|
267 |
+
|
268 |
+
def show_anns(anns):
|
269 |
+
if len(anns) == 0:
|
270 |
+
return
|
271 |
+
sorted_anns = sorted(anns, key=(lambda x: x['area']), reverse=True)
|
272 |
+
ax = plt.gca()
|
273 |
+
ax.set_autoscale_on(False)
|
274 |
+
for ann in sorted_anns:
|
275 |
+
m = ann['segmentation']
|
276 |
+
img = np.ones((m.shape[0], m.shape[1], 3))
|
277 |
+
color_mask = np.random.random((1, 3)).tolist()[0]
|
278 |
+
for i in range(3):
|
279 |
+
img[:,:,i] = color_mask[i]
|
280 |
+
ax.imshow(np.dstack((img, m*0.35)))
|
281 |
+
|
282 |
+
|
283 |
+
def main(args: argparse.Namespace) -> None:
|
284 |
+
print("Loading model...")
|
285 |
+
hourglass_kwargs = get_hourglass_kwargs(args)
|
286 |
+
sam = sam_model_registry[args.model_type](checkpoint=args.checkpoint, **hourglass_kwargs)
|
287 |
+
_ = sam.to(device=args.device)
|
288 |
+
output_mode = "coco_rle" if args.convert_to_rle else "binary_mask"
|
289 |
+
amg_kwargs = get_amg_kwargs(args)
|
290 |
+
generator = SamAutomaticMaskGenerator(sam, output_mode=output_mode, **amg_kwargs)
|
291 |
+
|
292 |
+
total_time = 0
|
293 |
+
warmup = 50
|
294 |
+
num_samples = 200
|
295 |
+
for i in tqdm(range(num_samples)):
|
296 |
+
image = np.random.randint(0, 255, size=(1024, 1024, 3), dtype=np.uint8)
|
297 |
+
|
298 |
+
start = time.perf_counter()
|
299 |
+
# masks = generator.generate(image)
|
300 |
+
with torch.no_grad():
|
301 |
+
# mask_data = generator._generate_masks(image)
|
302 |
+
orig_size = image.shape[:2]
|
303 |
+
crop_boxes, layer_idxs = generate_crop_boxes(
|
304 |
+
orig_size, generator.crop_n_layers, generator.crop_overlap_ratio
|
305 |
+
)
|
306 |
+
|
307 |
+
# Iterate over image crops
|
308 |
+
for crop_box, crop_layer_idx in zip(crop_boxes, layer_idxs):
|
309 |
+
# crop_data = generator._process_crop(image, crop_box, layer_idx, orig_size)
|
310 |
+
x0, y0, x1, y1 = crop_box
|
311 |
+
cropped_im = image[y0:y1, x0:x1, :]
|
312 |
+
cropped_im_size = cropped_im.shape[:2]
|
313 |
+
generator.predictor.set_image(cropped_im)
|
314 |
+
|
315 |
+
points_scale = np.array(cropped_im_size)[None, ::-1]
|
316 |
+
points_for_image = generator.point_grids[crop_layer_idx] * points_scale
|
317 |
+
|
318 |
+
for (points,) in batch_iterator(generator.points_per_batch, points_for_image):
|
319 |
+
# batch_data = generator._process_batch(points, cropped_im_size, crop_box, orig_size)
|
320 |
+
transformed_points = generator.predictor.transform.apply_coords(points, cropped_im_size)
|
321 |
+
in_points = torch.as_tensor(transformed_points, device=generator.predictor.device)
|
322 |
+
in_labels = torch.ones(in_points.shape[0], dtype=torch.int, device=in_points.device)
|
323 |
+
masks, iou_preds, _ = generator.predictor.predict_torch(
|
324 |
+
in_points[:, None, :],
|
325 |
+
in_labels[:, None],
|
326 |
+
multimask_output=True,
|
327 |
+
return_logits=True,
|
328 |
+
)
|
329 |
+
del masks
|
330 |
+
del iou_preds
|
331 |
+
|
332 |
+
eta = time.perf_counter() - start
|
333 |
+
if i >= warmup:
|
334 |
+
total_time += eta
|
335 |
+
print("Done!")
|
336 |
+
print(f"Average time per image: {total_time / (num_samples - warmup)} seconds")
|
337 |
+
|
338 |
+
|
339 |
+
if __name__ == "__main__":
|
340 |
+
args = parser.parse_args()
|
341 |
+
main(args)
|
scripts/export_onnx_model.py
ADDED
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
|
9 |
+
from segment_anything import build_sam, build_sam_vit_b, build_sam_vit_l
|
10 |
+
from segment_anything.utils.onnx import SamOnnxModel
|
11 |
+
|
12 |
+
import argparse
|
13 |
+
import warnings
|
14 |
+
|
15 |
+
try:
|
16 |
+
import onnxruntime # type: ignore
|
17 |
+
|
18 |
+
onnxruntime_exists = True
|
19 |
+
except ImportError:
|
20 |
+
onnxruntime_exists = False
|
21 |
+
|
22 |
+
parser = argparse.ArgumentParser(
|
23 |
+
description="Export the SAM prompt encoder and mask decoder to an ONNX model."
|
24 |
+
)
|
25 |
+
|
26 |
+
parser.add_argument(
|
27 |
+
"--checkpoint", type=str, required=True, help="The path to the SAM model checkpoint."
|
28 |
+
)
|
29 |
+
|
30 |
+
parser.add_argument(
|
31 |
+
"--output", type=str, required=True, help="The filename to save the ONNX model to."
|
32 |
+
)
|
33 |
+
|
34 |
+
parser.add_argument(
|
35 |
+
"--model-type",
|
36 |
+
type=str,
|
37 |
+
default="default",
|
38 |
+
help="In ['default', 'vit_b', 'vit_l']. Which type of SAM model to export.",
|
39 |
+
)
|
40 |
+
|
41 |
+
parser.add_argument(
|
42 |
+
"--return-single-mask",
|
43 |
+
action="store_true",
|
44 |
+
help=(
|
45 |
+
"If true, the exported ONNX model will only return the best mask, "
|
46 |
+
"instead of returning multiple masks. For high resolution images "
|
47 |
+
"this can improve runtime when upscaling masks is expensive."
|
48 |
+
),
|
49 |
+
)
|
50 |
+
|
51 |
+
parser.add_argument(
|
52 |
+
"--opset",
|
53 |
+
type=int,
|
54 |
+
default=17,
|
55 |
+
help="The ONNX opset version to use. Must be >=11",
|
56 |
+
)
|
57 |
+
|
58 |
+
parser.add_argument(
|
59 |
+
"--quantize-out",
|
60 |
+
type=str,
|
61 |
+
default=None,
|
62 |
+
help=(
|
63 |
+
"If set, will quantize the model and save it with this name. "
|
64 |
+
"Quantization is performed with quantize_dynamic from onnxruntime.quantization.quantize."
|
65 |
+
),
|
66 |
+
)
|
67 |
+
|
68 |
+
parser.add_argument(
|
69 |
+
"--gelu-approximate",
|
70 |
+
action="store_true",
|
71 |
+
help=(
|
72 |
+
"Replace GELU operations with approximations using tanh. Useful "
|
73 |
+
"for some runtimes that have slow or unimplemented erf ops, used in GELU."
|
74 |
+
),
|
75 |
+
)
|
76 |
+
|
77 |
+
parser.add_argument(
|
78 |
+
"--use-stability-score",
|
79 |
+
action="store_true",
|
80 |
+
help=(
|
81 |
+
"Replaces the model's predicted mask quality score with the stability "
|
82 |
+
"score calculated on the low resolution masks using an offset of 1.0. "
|
83 |
+
),
|
84 |
+
)
|
85 |
+
|
86 |
+
parser.add_argument(
|
87 |
+
"--return-extra-metrics",
|
88 |
+
action="store_true",
|
89 |
+
help=(
|
90 |
+
"The model will return five results: (masks, scores, stability_scores, "
|
91 |
+
"areas, low_res_logits) instead of the usual three. This can be "
|
92 |
+
"significantly slower for high resolution outputs."
|
93 |
+
),
|
94 |
+
)
|
95 |
+
|
96 |
+
|
97 |
+
def run_export(
|
98 |
+
model_type: str,
|
99 |
+
checkpoint: str,
|
100 |
+
output: str,
|
101 |
+
opset: int,
|
102 |
+
return_single_mask: bool,
|
103 |
+
gelu_approximate: bool = False,
|
104 |
+
use_stability_score: bool = False,
|
105 |
+
return_extra_metrics=False,
|
106 |
+
):
|
107 |
+
print("Loading model...")
|
108 |
+
if model_type == "vit_b":
|
109 |
+
sam = build_sam_vit_b(checkpoint)
|
110 |
+
elif model_type == "vit_l":
|
111 |
+
sam = build_sam_vit_l(checkpoint)
|
112 |
+
else:
|
113 |
+
sam = build_sam(checkpoint)
|
114 |
+
|
115 |
+
onnx_model = SamOnnxModel(
|
116 |
+
model=sam,
|
117 |
+
return_single_mask=return_single_mask,
|
118 |
+
use_stability_score=use_stability_score,
|
119 |
+
return_extra_metrics=return_extra_metrics,
|
120 |
+
)
|
121 |
+
|
122 |
+
if gelu_approximate:
|
123 |
+
for n, m in onnx_model.named_modules():
|
124 |
+
if isinstance(m, torch.nn.GELU):
|
125 |
+
m.approximate = "tanh"
|
126 |
+
|
127 |
+
dynamic_axes = {
|
128 |
+
"point_coords": {1: "num_points"},
|
129 |
+
"point_labels": {1: "num_points"},
|
130 |
+
}
|
131 |
+
|
132 |
+
embed_dim = sam.prompt_encoder.embed_dim
|
133 |
+
embed_size = sam.prompt_encoder.image_embedding_size
|
134 |
+
mask_input_size = [4 * x for x in embed_size]
|
135 |
+
dummy_inputs = {
|
136 |
+
"image_embeddings": torch.randn(1, embed_dim, *embed_size, dtype=torch.float),
|
137 |
+
"point_coords": torch.randint(low=0, high=1024, size=(1, 5, 2), dtype=torch.float),
|
138 |
+
"point_labels": torch.randint(low=0, high=4, size=(1, 5), dtype=torch.float),
|
139 |
+
"mask_input": torch.randn(1, 1, *mask_input_size, dtype=torch.float),
|
140 |
+
"has_mask_input": torch.tensor([1], dtype=torch.float),
|
141 |
+
"orig_im_size": torch.tensor([1500, 2250], dtype=torch.float),
|
142 |
+
}
|
143 |
+
|
144 |
+
_ = onnx_model(**dummy_inputs)
|
145 |
+
|
146 |
+
output_names = ["masks", "iou_predictions", "low_res_masks"]
|
147 |
+
|
148 |
+
with warnings.catch_warnings():
|
149 |
+
warnings.filterwarnings("ignore", category=torch.jit.TracerWarning)
|
150 |
+
warnings.filterwarnings("ignore", category=UserWarning)
|
151 |
+
with open(output, "wb") as f:
|
152 |
+
print(f"Exporing onnx model to {output}...")
|
153 |
+
torch.onnx.export(
|
154 |
+
onnx_model,
|
155 |
+
tuple(dummy_inputs.values()),
|
156 |
+
f,
|
157 |
+
export_params=True,
|
158 |
+
verbose=False,
|
159 |
+
opset_version=opset,
|
160 |
+
do_constant_folding=True,
|
161 |
+
input_names=list(dummy_inputs.keys()),
|
162 |
+
output_names=output_names,
|
163 |
+
dynamic_axes=dynamic_axes,
|
164 |
+
)
|
165 |
+
|
166 |
+
if onnxruntime_exists:
|
167 |
+
ort_inputs = {k: to_numpy(v) for k, v in dummy_inputs.items()}
|
168 |
+
ort_session = onnxruntime.InferenceSession(output)
|
169 |
+
_ = ort_session.run(None, ort_inputs)
|
170 |
+
print("Model has successfully been run with ONNXRuntime.")
|
171 |
+
|
172 |
+
|
173 |
+
def to_numpy(tensor):
|
174 |
+
return tensor.cpu().numpy()
|
175 |
+
|
176 |
+
|
177 |
+
if __name__ == "__main__":
|
178 |
+
args = parser.parse_args()
|
179 |
+
run_export(
|
180 |
+
model_type=args.model_type,
|
181 |
+
checkpoint=args.checkpoint,
|
182 |
+
output=args.output,
|
183 |
+
opset=args.opset,
|
184 |
+
return_single_mask=args.return_single_mask,
|
185 |
+
gelu_approximate=args.gelu_approximate,
|
186 |
+
use_stability_score=args.use_stability_score,
|
187 |
+
return_extra_metrics=args.return_extra_metrics,
|
188 |
+
)
|
189 |
+
|
190 |
+
if args.quantize_out is not None:
|
191 |
+
assert onnxruntime_exists, "onnxruntime is required to quantize the model."
|
192 |
+
from onnxruntime.quantization import QuantType # type: ignore
|
193 |
+
from onnxruntime.quantization.quantize import quantize_dynamic # type: ignore
|
194 |
+
|
195 |
+
print(f"Quantizing model and writing to {args.quantize_out}...")
|
196 |
+
quantize_dynamic(
|
197 |
+
model_input=args.output,
|
198 |
+
model_output=args.quantize_out,
|
199 |
+
optimize_model=True,
|
200 |
+
per_channel=False,
|
201 |
+
reduce_range=False,
|
202 |
+
weight_type=QuantType.QUInt8,
|
203 |
+
)
|
204 |
+
print("Done!")
|
segment_anything/__init__.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
from .build_sam import (
|
8 |
+
build_sam,
|
9 |
+
build_sam_vit_h,
|
10 |
+
build_sam_vit_l,
|
11 |
+
build_sam_vit_b,
|
12 |
+
sam_model_registry,
|
13 |
+
)
|
14 |
+
from .predictor import SamPredictor
|
15 |
+
from .automatic_mask_generator import SamAutomaticMaskGenerator
|
segment_anything/automatic_mask_generator.py
ADDED
@@ -0,0 +1,372 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import numpy as np
|
8 |
+
import torch
|
9 |
+
from torchvision.ops.boxes import batched_nms, box_area # type: ignore
|
10 |
+
|
11 |
+
from typing import Any, Dict, List, Optional, Tuple
|
12 |
+
|
13 |
+
from .modeling import Sam
|
14 |
+
from .predictor import SamPredictor
|
15 |
+
from .utils.amg import (
|
16 |
+
MaskData,
|
17 |
+
area_from_rle,
|
18 |
+
batch_iterator,
|
19 |
+
batched_mask_to_box,
|
20 |
+
box_xyxy_to_xywh,
|
21 |
+
build_all_layer_point_grids,
|
22 |
+
calculate_stability_score,
|
23 |
+
coco_encode_rle,
|
24 |
+
generate_crop_boxes,
|
25 |
+
is_box_near_crop_edge,
|
26 |
+
mask_to_rle_pytorch,
|
27 |
+
remove_small_regions,
|
28 |
+
rle_to_mask,
|
29 |
+
uncrop_boxes_xyxy,
|
30 |
+
uncrop_masks,
|
31 |
+
uncrop_points,
|
32 |
+
)
|
33 |
+
|
34 |
+
|
35 |
+
class SamAutomaticMaskGenerator:
|
36 |
+
def __init__(
|
37 |
+
self,
|
38 |
+
model: Sam,
|
39 |
+
points_per_side: Optional[int] = 32,
|
40 |
+
points_per_batch: int = 64,
|
41 |
+
pred_iou_thresh: float = 0.88,
|
42 |
+
stability_score_thresh: float = 0.95,
|
43 |
+
stability_score_offset: float = 1.0,
|
44 |
+
box_nms_thresh: float = 0.7,
|
45 |
+
crop_n_layers: int = 0,
|
46 |
+
crop_nms_thresh: float = 0.7,
|
47 |
+
crop_overlap_ratio: float = 512 / 1500,
|
48 |
+
crop_n_points_downscale_factor: int = 1,
|
49 |
+
point_grids: Optional[List[np.ndarray]] = None,
|
50 |
+
min_mask_region_area: int = 0,
|
51 |
+
output_mode: str = "binary_mask",
|
52 |
+
) -> None:
|
53 |
+
"""
|
54 |
+
Using a SAM model, generates masks for the entire image.
|
55 |
+
Generates a grid of point prompts over the image, then filters
|
56 |
+
low quality and duplicate masks. The default settings are chosen
|
57 |
+
for SAM with a ViT-H backbone.
|
58 |
+
|
59 |
+
Arguments:
|
60 |
+
model (Sam): The SAM model to use for mask prediction.
|
61 |
+
points_per_side (int or None): The number of points to be sampled
|
62 |
+
along one side of the image. The total number of points is
|
63 |
+
points_per_side**2. If None, 'point_grids' must provide explicit
|
64 |
+
point sampling.
|
65 |
+
points_per_batch (int): Sets the number of points run simultaneously
|
66 |
+
by the model. Higher numbers may be faster but use more GPU memory.
|
67 |
+
pred_iou_thresh (float): A filtering threshold in [0,1], using the
|
68 |
+
model's predicted mask quality.
|
69 |
+
stability_score_thresh (float): A filtering threshold in [0,1], using
|
70 |
+
the stability of the mask under changes to the cutoff used to binarize
|
71 |
+
the model's mask predictions.
|
72 |
+
stability_score_offset (float): The amount to shift the cutoff when
|
73 |
+
calculated the stability score.
|
74 |
+
box_nms_thresh (float): The box IoU cutoff used by non-maximal
|
75 |
+
suppression to filter duplicate masks.
|
76 |
+
crops_n_layers (int): If >0, mask prediction will be run again on
|
77 |
+
crops of the image. Sets the number of layers to run, where each
|
78 |
+
layer has 2**i_layer number of image crops.
|
79 |
+
crops_nms_thresh (float): The box IoU cutoff used by non-maximal
|
80 |
+
suppression to filter duplicate masks between different crops.
|
81 |
+
crop_overlap_ratio (float): Sets the degree to which crops overlap.
|
82 |
+
In the first crop layer, crops will overlap by this fraction of
|
83 |
+
the image length. Later layers with more crops scale down this overlap.
|
84 |
+
crop_n_points_downscale_factor (int): The number of points-per-side
|
85 |
+
sampled in layer n is scaled down by crop_n_points_downscale_factor**n.
|
86 |
+
point_grids (list(np.ndarray) or None): A list over explicit grids
|
87 |
+
of points used for sampling, normalized to [0,1]. The nth grid in the
|
88 |
+
list is used in the nth crop layer. Exclusive with points_per_side.
|
89 |
+
min_mask_region_area (int): If >0, postprocessing will be applied
|
90 |
+
to remove disconnected regions and holes in masks with area smaller
|
91 |
+
than min_mask_region_area. Requires opencv.
|
92 |
+
output_mode (str): The form masks are returned in. Can be 'binary_mask',
|
93 |
+
'uncompressed_rle', or 'coco_rle'. 'coco_rle' requires pycocotools.
|
94 |
+
For large resolutions, 'binary_mask' may consume large amounts of
|
95 |
+
memory.
|
96 |
+
"""
|
97 |
+
|
98 |
+
assert (points_per_side is None) != (
|
99 |
+
point_grids is None
|
100 |
+
), "Exactly one of points_per_side or point_grid must be provided."
|
101 |
+
if points_per_side is not None:
|
102 |
+
self.point_grids = build_all_layer_point_grids(
|
103 |
+
points_per_side,
|
104 |
+
crop_n_layers,
|
105 |
+
crop_n_points_downscale_factor,
|
106 |
+
)
|
107 |
+
elif point_grids is not None:
|
108 |
+
self.point_grids = point_grids
|
109 |
+
else:
|
110 |
+
raise ValueError("Can't have both points_per_side and point_grid be None.")
|
111 |
+
|
112 |
+
assert output_mode in [
|
113 |
+
"binary_mask",
|
114 |
+
"uncompressed_rle",
|
115 |
+
"coco_rle",
|
116 |
+
], f"Unknown output_mode {output_mode}."
|
117 |
+
if output_mode == "coco_rle":
|
118 |
+
from pycocotools import mask as mask_utils # type: ignore # noqa: F401
|
119 |
+
|
120 |
+
if min_mask_region_area > 0:
|
121 |
+
import cv2 # type: ignore # noqa: F401
|
122 |
+
|
123 |
+
self.predictor = SamPredictor(model)
|
124 |
+
self.points_per_batch = points_per_batch
|
125 |
+
self.pred_iou_thresh = pred_iou_thresh
|
126 |
+
self.stability_score_thresh = stability_score_thresh
|
127 |
+
self.stability_score_offset = stability_score_offset
|
128 |
+
self.box_nms_thresh = box_nms_thresh
|
129 |
+
self.crop_n_layers = crop_n_layers
|
130 |
+
self.crop_nms_thresh = crop_nms_thresh
|
131 |
+
self.crop_overlap_ratio = crop_overlap_ratio
|
132 |
+
self.crop_n_points_downscale_factor = crop_n_points_downscale_factor
|
133 |
+
self.min_mask_region_area = min_mask_region_area
|
134 |
+
self.output_mode = output_mode
|
135 |
+
|
136 |
+
@torch.no_grad()
|
137 |
+
def generate(self, image: np.ndarray) -> List[Dict[str, Any]]:
|
138 |
+
"""
|
139 |
+
Generates masks for the given image.
|
140 |
+
|
141 |
+
Arguments:
|
142 |
+
image (np.ndarray): The image to generate masks for, in HWC uint8 format.
|
143 |
+
|
144 |
+
Returns:
|
145 |
+
list(dict(str, any)): A list over records for masks. Each record is
|
146 |
+
a dict containing the following keys:
|
147 |
+
segmentation (dict(str, any) or np.ndarray): The mask. If
|
148 |
+
output_mode='binary_mask', is an array of shape HW. Otherwise,
|
149 |
+
is a dictionary containing the RLE.
|
150 |
+
bbox (list(float)): The box around the mask, in XYWH format.
|
151 |
+
area (int): The area in pixels of the mask.
|
152 |
+
predicted_iou (float): The model's own prediction of the mask's
|
153 |
+
quality. This is filtered by the pred_iou_thresh parameter.
|
154 |
+
point_coords (list(list(float))): The point coordinates input
|
155 |
+
to the model to generate this mask.
|
156 |
+
stability_score (float): A measure of the mask's quality. This
|
157 |
+
is filtered on using the stability_score_thresh parameter.
|
158 |
+
crop_box (list(float)): The crop of the image used to generate
|
159 |
+
the mask, given in XYWH format.
|
160 |
+
"""
|
161 |
+
|
162 |
+
# Generate masks
|
163 |
+
mask_data = self._generate_masks(image)
|
164 |
+
|
165 |
+
# Filter small disconnected regions and holes in masks
|
166 |
+
if self.min_mask_region_area > 0:
|
167 |
+
mask_data = self.postprocess_small_regions(
|
168 |
+
mask_data,
|
169 |
+
self.min_mask_region_area,
|
170 |
+
max(self.box_nms_thresh, self.crop_nms_thresh),
|
171 |
+
)
|
172 |
+
|
173 |
+
# Encode masks
|
174 |
+
if self.output_mode == "coco_rle":
|
175 |
+
mask_data["segmentations"] = [coco_encode_rle(rle) for rle in mask_data["rles"]]
|
176 |
+
elif self.output_mode == "binary_mask":
|
177 |
+
mask_data["segmentations"] = [rle_to_mask(rle) for rle in mask_data["rles"]]
|
178 |
+
else:
|
179 |
+
mask_data["segmentations"] = mask_data["rles"]
|
180 |
+
|
181 |
+
# Write mask records
|
182 |
+
curr_anns = []
|
183 |
+
for idx in range(len(mask_data["segmentations"])):
|
184 |
+
ann = {
|
185 |
+
"segmentation": mask_data["segmentations"][idx],
|
186 |
+
"area": area_from_rle(mask_data["rles"][idx]),
|
187 |
+
"bbox": box_xyxy_to_xywh(mask_data["boxes"][idx]).tolist(),
|
188 |
+
"predicted_iou": mask_data["iou_preds"][idx].item(),
|
189 |
+
"point_coords": [mask_data["points"][idx].tolist()],
|
190 |
+
"stability_score": mask_data["stability_score"][idx].item(),
|
191 |
+
"crop_box": box_xyxy_to_xywh(mask_data["crop_boxes"][idx]).tolist(),
|
192 |
+
}
|
193 |
+
curr_anns.append(ann)
|
194 |
+
|
195 |
+
return curr_anns
|
196 |
+
|
197 |
+
def _generate_masks(self, image: np.ndarray) -> MaskData:
|
198 |
+
orig_size = image.shape[:2]
|
199 |
+
crop_boxes, layer_idxs = generate_crop_boxes(
|
200 |
+
orig_size, self.crop_n_layers, self.crop_overlap_ratio
|
201 |
+
)
|
202 |
+
|
203 |
+
# Iterate over image crops
|
204 |
+
data = MaskData()
|
205 |
+
for crop_box, layer_idx in zip(crop_boxes, layer_idxs):
|
206 |
+
crop_data = self._process_crop(image, crop_box, layer_idx, orig_size)
|
207 |
+
data.cat(crop_data)
|
208 |
+
|
209 |
+
# Remove duplicate masks between crops
|
210 |
+
if len(crop_boxes) > 1:
|
211 |
+
# Prefer masks from smaller crops
|
212 |
+
scores = 1 / box_area(data["crop_boxes"])
|
213 |
+
scores = scores.to(data["boxes"].device)
|
214 |
+
keep_by_nms = batched_nms(
|
215 |
+
data["boxes"].float(),
|
216 |
+
scores,
|
217 |
+
torch.zeros(len(data["boxes"])), # categories
|
218 |
+
iou_threshold=self.crop_nms_thresh,
|
219 |
+
)
|
220 |
+
data.filter(keep_by_nms)
|
221 |
+
|
222 |
+
data.to_numpy()
|
223 |
+
return data
|
224 |
+
|
225 |
+
def _process_crop(
|
226 |
+
self,
|
227 |
+
image: np.ndarray,
|
228 |
+
crop_box: List[int],
|
229 |
+
crop_layer_idx: int,
|
230 |
+
orig_size: Tuple[int, ...],
|
231 |
+
) -> MaskData:
|
232 |
+
# Crop the image and calculate embeddings
|
233 |
+
x0, y0, x1, y1 = crop_box
|
234 |
+
cropped_im = image[y0:y1, x0:x1, :]
|
235 |
+
cropped_im_size = cropped_im.shape[:2]
|
236 |
+
self.predictor.set_image(cropped_im)
|
237 |
+
|
238 |
+
# Get points for this crop
|
239 |
+
points_scale = np.array(cropped_im_size)[None, ::-1]
|
240 |
+
points_for_image = self.point_grids[crop_layer_idx] * points_scale
|
241 |
+
|
242 |
+
# Generate masks for this crop in batches
|
243 |
+
data = MaskData()
|
244 |
+
for (points,) in batch_iterator(self.points_per_batch, points_for_image):
|
245 |
+
batch_data = self._process_batch(points, cropped_im_size, crop_box, orig_size)
|
246 |
+
data.cat(batch_data)
|
247 |
+
del batch_data
|
248 |
+
self.predictor.reset_image()
|
249 |
+
|
250 |
+
# Remove duplicates within this crop.
|
251 |
+
keep_by_nms = batched_nms(
|
252 |
+
data["boxes"].float(),
|
253 |
+
data["iou_preds"],
|
254 |
+
torch.zeros(len(data["boxes"])), # categories
|
255 |
+
iou_threshold=self.box_nms_thresh,
|
256 |
+
)
|
257 |
+
data.filter(keep_by_nms)
|
258 |
+
|
259 |
+
# Return to the original image frame
|
260 |
+
data["boxes"] = uncrop_boxes_xyxy(data["boxes"], crop_box)
|
261 |
+
data["points"] = uncrop_points(data["points"], crop_box)
|
262 |
+
data["crop_boxes"] = torch.tensor([crop_box for _ in range(len(data["rles"]))])
|
263 |
+
|
264 |
+
return data
|
265 |
+
|
266 |
+
def _process_batch(
|
267 |
+
self,
|
268 |
+
points: np.ndarray,
|
269 |
+
im_size: Tuple[int, ...],
|
270 |
+
crop_box: List[int],
|
271 |
+
orig_size: Tuple[int, ...],
|
272 |
+
) -> MaskData:
|
273 |
+
orig_h, orig_w = orig_size
|
274 |
+
|
275 |
+
# Run model on this batch
|
276 |
+
transformed_points = self.predictor.transform.apply_coords(points, im_size)
|
277 |
+
in_points = torch.as_tensor(transformed_points, device=self.predictor.device)
|
278 |
+
in_labels = torch.ones(in_points.shape[0], dtype=torch.int, device=in_points.device)
|
279 |
+
masks, iou_preds, _ = self.predictor.predict_torch(
|
280 |
+
in_points[:, None, :],
|
281 |
+
in_labels[:, None],
|
282 |
+
multimask_output=True,
|
283 |
+
return_logits=True,
|
284 |
+
)
|
285 |
+
|
286 |
+
# Serialize predictions and store in MaskData
|
287 |
+
data = MaskData(
|
288 |
+
masks=masks.flatten(0, 1),
|
289 |
+
iou_preds=iou_preds.flatten(0, 1),
|
290 |
+
points=torch.as_tensor(points.repeat(masks.shape[1], axis=0)),
|
291 |
+
)
|
292 |
+
del masks
|
293 |
+
|
294 |
+
# Filter by predicted IoU
|
295 |
+
if self.pred_iou_thresh > 0.0:
|
296 |
+
keep_mask = data["iou_preds"] > self.pred_iou_thresh
|
297 |
+
data.filter(keep_mask)
|
298 |
+
|
299 |
+
# Calculate stability score
|
300 |
+
data["stability_score"] = calculate_stability_score(
|
301 |
+
data["masks"], self.predictor.model.mask_threshold, self.stability_score_offset
|
302 |
+
)
|
303 |
+
if self.stability_score_thresh > 0.0:
|
304 |
+
keep_mask = data["stability_score"] >= self.stability_score_thresh
|
305 |
+
data.filter(keep_mask)
|
306 |
+
|
307 |
+
# Threshold masks and calculate boxes
|
308 |
+
data["masks"] = data["masks"] > self.predictor.model.mask_threshold
|
309 |
+
data["boxes"] = batched_mask_to_box(data["masks"])
|
310 |
+
|
311 |
+
# Filter boxes that touch crop boundaries
|
312 |
+
keep_mask = ~is_box_near_crop_edge(data["boxes"], crop_box, [0, 0, orig_w, orig_h])
|
313 |
+
if not torch.all(keep_mask):
|
314 |
+
data.filter(keep_mask)
|
315 |
+
|
316 |
+
# Compress to RLE
|
317 |
+
data["masks"] = uncrop_masks(data["masks"], crop_box, orig_h, orig_w)
|
318 |
+
data["rles"] = mask_to_rle_pytorch(data["masks"])
|
319 |
+
del data["masks"]
|
320 |
+
|
321 |
+
return data
|
322 |
+
|
323 |
+
@staticmethod
|
324 |
+
def postprocess_small_regions(
|
325 |
+
mask_data: MaskData, min_area: int, nms_thresh: float
|
326 |
+
) -> MaskData:
|
327 |
+
"""
|
328 |
+
Removes small disconnected regions and holes in masks, then reruns
|
329 |
+
box NMS to remove any new duplicates.
|
330 |
+
|
331 |
+
Edits mask_data in place.
|
332 |
+
|
333 |
+
Requires open-cv as a dependency.
|
334 |
+
"""
|
335 |
+
if len(mask_data["rles"]) == 0:
|
336 |
+
return mask_data
|
337 |
+
|
338 |
+
# Filter small disconnected regions and holes
|
339 |
+
new_masks = []
|
340 |
+
scores = []
|
341 |
+
for rle in mask_data["rles"]:
|
342 |
+
mask = rle_to_mask(rle)
|
343 |
+
|
344 |
+
mask, changed = remove_small_regions(mask, min_area, mode="holes")
|
345 |
+
unchanged = not changed
|
346 |
+
mask, changed = remove_small_regions(mask, min_area, mode="islands")
|
347 |
+
unchanged = unchanged and not changed
|
348 |
+
|
349 |
+
new_masks.append(torch.as_tensor(mask).unsqueeze(0))
|
350 |
+
# Give score=0 to changed masks and score=1 to unchanged masks
|
351 |
+
# so NMS will prefer ones that didn't need postprocessing
|
352 |
+
scores.append(float(unchanged))
|
353 |
+
|
354 |
+
# Recalculate boxes and remove any new duplicates
|
355 |
+
masks = torch.cat(new_masks, dim=0)
|
356 |
+
boxes = batched_mask_to_box(masks)
|
357 |
+
keep_by_nms = batched_nms(
|
358 |
+
boxes.float(),
|
359 |
+
torch.as_tensor(scores),
|
360 |
+
torch.zeros(len(boxes)), # categories
|
361 |
+
iou_threshold=nms_thresh,
|
362 |
+
)
|
363 |
+
|
364 |
+
# Only recalculate RLEs for masks that have changed
|
365 |
+
for i_mask in keep_by_nms:
|
366 |
+
if scores[i_mask] == 0.0:
|
367 |
+
mask_torch = masks[i_mask].unsqueeze(0)
|
368 |
+
mask_data["rles"][i_mask] = mask_to_rle_pytorch(mask_torch)[0]
|
369 |
+
mask_data["boxes"][i_mask] = boxes[i_mask] # update res directly
|
370 |
+
mask_data.filter(keep_by_nms)
|
371 |
+
|
372 |
+
return mask_data
|
segment_anything/build_sam.py
ADDED
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
|
9 |
+
from functools import partial
|
10 |
+
|
11 |
+
from .modeling import ImageEncoderViT, MaskDecoder, PromptEncoder, Sam, TwoWayTransformer, HourglassImageEncoderViT
|
12 |
+
|
13 |
+
|
14 |
+
def build_sam_vit_h(checkpoint=None, **hourglass_kwargs):
|
15 |
+
return _build_sam(
|
16 |
+
encoder_embed_dim=1280,
|
17 |
+
encoder_depth=32,
|
18 |
+
encoder_num_heads=16,
|
19 |
+
encoder_global_attn_indexes=[7, 15, 23, 31],
|
20 |
+
checkpoint=checkpoint,
|
21 |
+
hourglass_kwargs=hourglass_kwargs,
|
22 |
+
)
|
23 |
+
|
24 |
+
|
25 |
+
build_sam = build_sam_vit_h
|
26 |
+
|
27 |
+
|
28 |
+
def build_sam_vit_l(checkpoint=None, **hourglass_kwargs):
|
29 |
+
return _build_sam(
|
30 |
+
encoder_embed_dim=1024,
|
31 |
+
encoder_depth=24,
|
32 |
+
encoder_num_heads=16,
|
33 |
+
encoder_global_attn_indexes=[5, 11, 17, 23],
|
34 |
+
checkpoint=checkpoint,
|
35 |
+
hourglass_kwargs=hourglass_kwargs,
|
36 |
+
)
|
37 |
+
|
38 |
+
|
39 |
+
def build_sam_vit_b(checkpoint=None, **hourglass_kwargs):
|
40 |
+
return _build_sam(
|
41 |
+
encoder_embed_dim=768,
|
42 |
+
encoder_depth=12,
|
43 |
+
encoder_num_heads=12,
|
44 |
+
encoder_global_attn_indexes=[2, 5, 8, 11],
|
45 |
+
checkpoint=checkpoint,
|
46 |
+
hourglass_kwargs=hourglass_kwargs,
|
47 |
+
)
|
48 |
+
|
49 |
+
|
50 |
+
sam_model_registry = {
|
51 |
+
"default": build_sam,
|
52 |
+
"vit_h": build_sam,
|
53 |
+
"vit_l": build_sam_vit_l,
|
54 |
+
"vit_b": build_sam_vit_b,
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
+
def _build_sam(
|
59 |
+
encoder_embed_dim,
|
60 |
+
encoder_depth,
|
61 |
+
encoder_num_heads,
|
62 |
+
encoder_global_attn_indexes,
|
63 |
+
checkpoint=None,
|
64 |
+
hourglass_kwargs={},
|
65 |
+
):
|
66 |
+
prompt_embed_dim = 256
|
67 |
+
image_size = 1024
|
68 |
+
vit_patch_size = 16
|
69 |
+
image_embedding_size = image_size // vit_patch_size
|
70 |
+
use_hourglass = hourglass_kwargs.pop("use_hourglass", False)
|
71 |
+
if use_hourglass:
|
72 |
+
image_encoder = HourglassImageEncoderViT(
|
73 |
+
depth=encoder_depth,
|
74 |
+
embed_dim=encoder_embed_dim,
|
75 |
+
img_size=image_size,
|
76 |
+
mlp_ratio=4,
|
77 |
+
norm_layer=partial(torch.nn.LayerNorm, eps=1e-6),
|
78 |
+
num_heads=encoder_num_heads,
|
79 |
+
patch_size=vit_patch_size,
|
80 |
+
qkv_bias=True,
|
81 |
+
use_rel_pos=True,
|
82 |
+
global_attn_indexes=encoder_global_attn_indexes,
|
83 |
+
window_size=14,
|
84 |
+
out_chans=prompt_embed_dim,
|
85 |
+
**hourglass_kwargs,
|
86 |
+
)
|
87 |
+
else:
|
88 |
+
image_encoder = ImageEncoderViT(
|
89 |
+
depth=encoder_depth,
|
90 |
+
embed_dim=encoder_embed_dim,
|
91 |
+
img_size=image_size,
|
92 |
+
mlp_ratio=4,
|
93 |
+
norm_layer=partial(torch.nn.LayerNorm, eps=1e-6),
|
94 |
+
num_heads=encoder_num_heads,
|
95 |
+
patch_size=vit_patch_size,
|
96 |
+
qkv_bias=True,
|
97 |
+
use_rel_pos=True,
|
98 |
+
global_attn_indexes=encoder_global_attn_indexes,
|
99 |
+
window_size=14,
|
100 |
+
out_chans=prompt_embed_dim,
|
101 |
+
)
|
102 |
+
|
103 |
+
sam = Sam(
|
104 |
+
image_encoder=image_encoder,
|
105 |
+
prompt_encoder=PromptEncoder(
|
106 |
+
embed_dim=prompt_embed_dim,
|
107 |
+
image_embedding_size=(image_embedding_size, image_embedding_size),
|
108 |
+
input_image_size=(image_size, image_size),
|
109 |
+
mask_in_chans=16,
|
110 |
+
),
|
111 |
+
mask_decoder=MaskDecoder(
|
112 |
+
num_multimask_outputs=3,
|
113 |
+
transformer=TwoWayTransformer(
|
114 |
+
depth=2,
|
115 |
+
embedding_dim=prompt_embed_dim,
|
116 |
+
mlp_dim=2048,
|
117 |
+
num_heads=8,
|
118 |
+
),
|
119 |
+
transformer_dim=prompt_embed_dim,
|
120 |
+
iou_head_depth=3,
|
121 |
+
iou_head_hidden_dim=256,
|
122 |
+
),
|
123 |
+
pixel_mean=[123.675, 116.28, 103.53],
|
124 |
+
pixel_std=[58.395, 57.12, 57.375],
|
125 |
+
)
|
126 |
+
sam.eval()
|
127 |
+
if checkpoint is not None:
|
128 |
+
with open(checkpoint, "rb") as f:
|
129 |
+
state_dict = torch.load(f)
|
130 |
+
sam.load_state_dict(state_dict)
|
131 |
+
return sam
|
segment_anything/modeling/__init__.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
from .sam import Sam
|
8 |
+
from .image_encoder import ImageEncoderViT
|
9 |
+
from .hourglass_image_encoder import HourglassImageEncoderViT
|
10 |
+
from .mask_decoder import MaskDecoder
|
11 |
+
from .prompt_encoder import PromptEncoder
|
12 |
+
from .transformer import TwoWayTransformer
|
segment_anything/modeling/common.py
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
import torch.nn as nn
|
9 |
+
|
10 |
+
from typing import Type
|
11 |
+
|
12 |
+
|
13 |
+
class MLPBlock(nn.Module):
|
14 |
+
def __init__(
|
15 |
+
self,
|
16 |
+
embedding_dim: int,
|
17 |
+
mlp_dim: int,
|
18 |
+
act: Type[nn.Module] = nn.GELU,
|
19 |
+
) -> None:
|
20 |
+
super().__init__()
|
21 |
+
self.lin1 = nn.Linear(embedding_dim, mlp_dim)
|
22 |
+
self.lin2 = nn.Linear(mlp_dim, embedding_dim)
|
23 |
+
self.act = act()
|
24 |
+
|
25 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
26 |
+
return self.lin2(self.act(self.lin1(x)))
|
27 |
+
|
28 |
+
|
29 |
+
# From https://github.com/facebookresearch/detectron2/blob/main/detectron2/layers/batch_norm.py # noqa
|
30 |
+
# Itself from https://github.com/facebookresearch/ConvNeXt/blob/d1fa8f6fef0a165b27399986cc2bdacc92777e40/models/convnext.py#L119 # noqa
|
31 |
+
class LayerNorm2d(nn.Module):
|
32 |
+
def __init__(self, num_channels: int, eps: float = 1e-6) -> None:
|
33 |
+
super().__init__()
|
34 |
+
self.weight = nn.Parameter(torch.ones(num_channels))
|
35 |
+
self.bias = nn.Parameter(torch.zeros(num_channels))
|
36 |
+
self.eps = eps
|
37 |
+
|
38 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
39 |
+
u = x.mean(1, keepdim=True)
|
40 |
+
s = (x - u).pow(2).mean(1, keepdim=True)
|
41 |
+
x = (x - u) / torch.sqrt(s + self.eps)
|
42 |
+
x = self.weight[:, None, None] * x + self.bias[:, None, None]
|
43 |
+
return x
|
segment_anything/modeling/hourglass_image_encoder.py
ADDED
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import math
|
8 |
+
import torch
|
9 |
+
import torch.nn as nn
|
10 |
+
import torch.nn.functional as F
|
11 |
+
from torch.autograd import Variable
|
12 |
+
|
13 |
+
from typing import Optional, Tuple, Type
|
14 |
+
|
15 |
+
from .common import LayerNorm2d, MLPBlock
|
16 |
+
|
17 |
+
from .image_encoder import (
|
18 |
+
window_partition,
|
19 |
+
window_unpartition,
|
20 |
+
add_decomposed_rel_pos,
|
21 |
+
ImageEncoderViT,
|
22 |
+
Block,
|
23 |
+
Attention,
|
24 |
+
)
|
25 |
+
|
26 |
+
|
27 |
+
class TokenClusteringBlock(nn.Module):
|
28 |
+
def __init__(self, num_spixels=None, n_iters=5, temperture=0.05, window_size=7):
|
29 |
+
super().__init__()
|
30 |
+
if isinstance(num_spixels, tuple):
|
31 |
+
assert len(num_spixels) == 2
|
32 |
+
elif num_spixels is not None:
|
33 |
+
x = int(math.sqrt(num_spixels))
|
34 |
+
assert x * x == num_spixels
|
35 |
+
num_spixels = (x, x)
|
36 |
+
self.num_spixels = num_spixels
|
37 |
+
self.n_iters = n_iters
|
38 |
+
self.temperture = temperture
|
39 |
+
assert window_size % 2 == 1
|
40 |
+
self.r = window_size // 2
|
41 |
+
|
42 |
+
def calc_init_centroid(self, images, num_spixels_width, num_spixels_height):
|
43 |
+
"""
|
44 |
+
calculate initial superpixels
|
45 |
+
|
46 |
+
Args:
|
47 |
+
images: torch.Tensor
|
48 |
+
A Tensor of shape (B, C, H, W)
|
49 |
+
spixels_width: int
|
50 |
+
initial superpixel width
|
51 |
+
spixels_height: int
|
52 |
+
initial superpixel height
|
53 |
+
|
54 |
+
Return:
|
55 |
+
centroids: torch.Tensor
|
56 |
+
A Tensor of shape (B, C, H * W)
|
57 |
+
init_label_map: torch.Tensor
|
58 |
+
A Tensor of shape (B, H * W)
|
59 |
+
num_spixels_width: int
|
60 |
+
A number of superpixels in each column
|
61 |
+
num_spixels_height: int
|
62 |
+
A number of superpixels int each raw
|
63 |
+
"""
|
64 |
+
batchsize, channels, height, width = images.shape
|
65 |
+
device = images.device
|
66 |
+
|
67 |
+
centroids = torch.nn.functional.adaptive_avg_pool2d(
|
68 |
+
images, (num_spixels_height, num_spixels_width)
|
69 |
+
)
|
70 |
+
|
71 |
+
with torch.no_grad():
|
72 |
+
num_spixels = num_spixels_width * num_spixels_height
|
73 |
+
labels = (
|
74 |
+
torch.arange(num_spixels, device=device)
|
75 |
+
.reshape(1, 1, *centroids.shape[-2:])
|
76 |
+
.type_as(centroids)
|
77 |
+
)
|
78 |
+
init_label_map = torch.nn.functional.interpolate(
|
79 |
+
labels, size=(height, width), mode="nearest"
|
80 |
+
).type_as(centroids)
|
81 |
+
init_label_map = init_label_map.repeat(batchsize, 1, 1, 1)
|
82 |
+
|
83 |
+
init_label_map = init_label_map.reshape(batchsize, -1)
|
84 |
+
centroids = centroids.reshape(batchsize, channels, -1)
|
85 |
+
|
86 |
+
return centroids, init_label_map
|
87 |
+
|
88 |
+
def forward(self, pixel_features, num_spixels=None):
|
89 |
+
if num_spixels is None:
|
90 |
+
num_spixels = self.num_spixels
|
91 |
+
assert num_spixels is not None
|
92 |
+
else:
|
93 |
+
if isinstance(num_spixels, tuple):
|
94 |
+
assert len(num_spixels) == 2
|
95 |
+
else:
|
96 |
+
x = int(math.sqrt(num_spixels))
|
97 |
+
assert x * x == num_spixels
|
98 |
+
num_spixels = (x, x)
|
99 |
+
pixel_features = pixel_features.permute(0, 3, 1, 2)
|
100 |
+
num_spixels_height, num_spixels_width = num_spixels
|
101 |
+
num_spixels = num_spixels_width * num_spixels_height
|
102 |
+
spixel_features, init_label_map = self.calc_init_centroid(
|
103 |
+
pixel_features, num_spixels_width, num_spixels_height
|
104 |
+
)
|
105 |
+
|
106 |
+
device = init_label_map.device
|
107 |
+
spixels_number = torch.arange(num_spixels, device=device)[None, :, None]
|
108 |
+
relative_labels_widths = init_label_map[:, None] % num_spixels_width - spixels_number % num_spixels_width
|
109 |
+
relative_labels_heights = torch.div(init_label_map[:, None], num_spixels_width, rounding_mode='trunc') - torch.div(spixels_number, num_spixels_width, rounding_mode='trunc')
|
110 |
+
mask = torch.logical_and(torch.abs(relative_labels_widths) <= self.r, torch.abs(relative_labels_heights) <= self.r)
|
111 |
+
mask_dist = (~mask) * 1e16
|
112 |
+
|
113 |
+
pixel_features = pixel_features.reshape(*pixel_features.shape[:2], -1) # (B, C, L)
|
114 |
+
permuted_pixel_features = pixel_features.permute(0, 2, 1) # (B, L, C)
|
115 |
+
|
116 |
+
for _ in range(self.n_iters):
|
117 |
+
dist_matrix = self.pairwise_dist(pixel_features, spixel_features) # (B, L', L)
|
118 |
+
dist_matrix += mask_dist
|
119 |
+
affinity_matrix = (-dist_matrix * self.temperture).softmax(1)
|
120 |
+
spixel_features = torch.bmm(affinity_matrix.detach(), permuted_pixel_features)
|
121 |
+
spixel_features = spixel_features / affinity_matrix.detach().sum(2, keepdim=True).clamp_(min=1e-16)
|
122 |
+
spixel_features = spixel_features.permute(0, 2, 1)
|
123 |
+
|
124 |
+
dist_matrix = self.pairwise_dist(pixel_features, spixel_features)
|
125 |
+
hard_labels = torch.argmin(dist_matrix, dim=1)
|
126 |
+
|
127 |
+
B, C, _ = spixel_features.shape
|
128 |
+
spixel_features = spixel_features.permute(0, 2, 1).reshape(B, num_spixels_height, num_spixels_width, C)
|
129 |
+
return spixel_features, hard_labels
|
130 |
+
|
131 |
+
def pairwise_dist(self, f1, f2):
|
132 |
+
return ((f1 * f1).sum(dim=1).unsqueeze(1)
|
133 |
+
+ (f2 * f2).sum(dim=1).unsqueeze(2)
|
134 |
+
- 2 * torch.einsum("bcm, bcn -> bmn", f2, f1))
|
135 |
+
|
136 |
+
def extra_repr(self):
|
137 |
+
return f"num_spixels={self.num_spixels}, n_iters={self.n_iters}"
|
138 |
+
|
139 |
+
|
140 |
+
def naive_unpool(f_regions, region_indices):
|
141 |
+
_, _, C = f_regions.shape
|
142 |
+
N, L = region_indices.shape
|
143 |
+
index = region_indices.view(N, L, 1).expand(N, L, C)
|
144 |
+
result = f_regions.gather(1, index)
|
145 |
+
return result
|
146 |
+
|
147 |
+
|
148 |
+
class State:
|
149 |
+
def __init__(self, unpooling):
|
150 |
+
self.unpooling = unpooling
|
151 |
+
self.__updated = False
|
152 |
+
|
153 |
+
@property
|
154 |
+
def updated(self):
|
155 |
+
return self.__updated
|
156 |
+
|
157 |
+
def get(self, name, default=None):
|
158 |
+
return getattr(self, name, default)
|
159 |
+
|
160 |
+
def update_state(self, **states: dict):
|
161 |
+
self.__updated = True
|
162 |
+
for k, v in states.items():
|
163 |
+
setattr(self, k, v)
|
164 |
+
|
165 |
+
def call(self, input: torch.Tensor):
|
166 |
+
return self.unpooling(input, self)
|
167 |
+
|
168 |
+
|
169 |
+
class UnpoolingBase(nn.Module):
|
170 |
+
def forward(self, x, state: State):
|
171 |
+
if not state.updated:
|
172 |
+
return x, False
|
173 |
+
return self._forward(x, state)
|
174 |
+
|
175 |
+
def derive_unpooler(self):
|
176 |
+
return State(self)
|
177 |
+
|
178 |
+
|
179 |
+
class NaiveUnpooling(UnpoolingBase):
|
180 |
+
def _forward(self, x, state: State):
|
181 |
+
return naive_unpool(x, state.hard_labels), False
|
182 |
+
|
183 |
+
|
184 |
+
class TokenReconstructionBlock(UnpoolingBase):
|
185 |
+
def __init__(self, k=3, temperture=0.05):
|
186 |
+
super().__init__()
|
187 |
+
|
188 |
+
self.k = k
|
189 |
+
self.temperture = temperture
|
190 |
+
|
191 |
+
def _forward(self, x, state: State):
|
192 |
+
feat = state.feat_before_pooling
|
193 |
+
sfeat = state.feat_after_pooling
|
194 |
+
ds = (
|
195 |
+
(feat * feat).sum(dim=2).unsqueeze(2)
|
196 |
+
+ (sfeat * sfeat).sum(dim=2).unsqueeze(1)
|
197 |
+
- 2 * torch.einsum("bnc, bmc -> bnm", feat, sfeat)
|
198 |
+
) # distance between features and super-features
|
199 |
+
ds[ds < 0] = 0
|
200 |
+
weight = torch.exp(-self.temperture * ds)
|
201 |
+
if self.k >= 0:
|
202 |
+
topk, indices = torch.topk(weight, k=self.k, dim=2)
|
203 |
+
mink = torch.min(topk, dim=-1).values
|
204 |
+
mink = mink.unsqueeze(-1).repeat(1, 1, weight.shape[-1])
|
205 |
+
mask = torch.ge(weight, mink)
|
206 |
+
zero = Variable(torch.zeros_like(weight)).cuda()
|
207 |
+
attention = torch.where(mask, weight, zero)
|
208 |
+
attention = F.normalize(attention, dim=2)
|
209 |
+
ret = torch.einsum("bnm, bmc -> bnc", attention, x)
|
210 |
+
|
211 |
+
return ret, False
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
class HourglassImageEncoderViT(ImageEncoderViT):
|
216 |
+
def __init__(
|
217 |
+
self,
|
218 |
+
img_size: int = 1024,
|
219 |
+
patch_size: int = 16,
|
220 |
+
in_chans: int = 3,
|
221 |
+
embed_dim: int = 768,
|
222 |
+
depth: int = 12,
|
223 |
+
num_heads: int = 12,
|
224 |
+
mlp_ratio: float = 4.0,
|
225 |
+
out_chans: int = 256,
|
226 |
+
qkv_bias: bool = True,
|
227 |
+
norm_layer: Type[nn.Module] = nn.LayerNorm,
|
228 |
+
act_layer: Type[nn.Module] = nn.GELU,
|
229 |
+
use_abs_pos: bool = True,
|
230 |
+
use_rel_pos: bool = False,
|
231 |
+
rel_pos_zero_init: bool = True,
|
232 |
+
window_size: int = 0,
|
233 |
+
global_attn_indexes: Tuple[int, ...] = (),
|
234 |
+
hourglass_clustering_location: int = -1,
|
235 |
+
hourglass_num_cluster: int = None,
|
236 |
+
hourglass_cluster_iters: int = 3,
|
237 |
+
hourglass_temperture: float = 0.1,
|
238 |
+
hourglass_cluster_window_size: int = 12,
|
239 |
+
hourglass_reconstruction_k: int = 36,
|
240 |
+
) -> None:
|
241 |
+
"""
|
242 |
+
Args:
|
243 |
+
img_size (int): Input image size.
|
244 |
+
patch_size (int): Patch size.
|
245 |
+
in_chans (int): Number of input image channels.
|
246 |
+
embed_dim (int): Patch embedding dimension.
|
247 |
+
depth (int): Depth of ViT.
|
248 |
+
num_heads (int): Number of attention heads in each ViT block.
|
249 |
+
mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.
|
250 |
+
qkv_bias (bool): If True, add a learnable bias to query, key, value.
|
251 |
+
norm_layer (nn.Module): Normalization layer.
|
252 |
+
act_layer (nn.Module): Activation layer.
|
253 |
+
use_abs_pos (bool): If True, use absolute positional embeddings.
|
254 |
+
use_rel_pos (bool): If True, add relative positional embeddings to the attention map.
|
255 |
+
rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.
|
256 |
+
window_size (int): Window size for window attention blocks.
|
257 |
+
global_attn_indexes (list): Indexes for blocks using global attention.
|
258 |
+
"""
|
259 |
+
super().__init__(
|
260 |
+
img_size=img_size,
|
261 |
+
patch_size=patch_size,
|
262 |
+
in_chans=in_chans,
|
263 |
+
embed_dim=embed_dim,
|
264 |
+
depth=depth,
|
265 |
+
num_heads=num_heads,
|
266 |
+
mlp_ratio=mlp_ratio,
|
267 |
+
out_chans=out_chans,
|
268 |
+
qkv_bias=qkv_bias,
|
269 |
+
norm_layer=norm_layer,
|
270 |
+
act_layer=act_layer,
|
271 |
+
use_abs_pos=use_abs_pos,
|
272 |
+
use_rel_pos=use_rel_pos,
|
273 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
274 |
+
window_size=window_size,
|
275 |
+
global_attn_indexes=global_attn_indexes,
|
276 |
+
)
|
277 |
+
|
278 |
+
self.window_size = window_size
|
279 |
+
self.ws_new = int(math.sqrt(hourglass_num_cluster))
|
280 |
+
|
281 |
+
self.blocks = nn.ModuleList()
|
282 |
+
for i in range(depth):
|
283 |
+
block = HourglassBlock(
|
284 |
+
dim=embed_dim,
|
285 |
+
num_heads=num_heads,
|
286 |
+
mlp_ratio=mlp_ratio,
|
287 |
+
qkv_bias=qkv_bias,
|
288 |
+
norm_layer=norm_layer,
|
289 |
+
act_layer=act_layer,
|
290 |
+
use_rel_pos=use_rel_pos,
|
291 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
292 |
+
window_size=(window_size if i < hourglass_clustering_location else self.ws_new) if i not in global_attn_indexes else 0,
|
293 |
+
window_size_ckpt=window_size,
|
294 |
+
input_size=(img_size // patch_size, img_size // patch_size),
|
295 |
+
)
|
296 |
+
self.blocks.append(block)
|
297 |
+
|
298 |
+
self.clustering_location = hourglass_clustering_location
|
299 |
+
self.token_clustering_block = TokenClusteringBlock(
|
300 |
+
num_spixels=hourglass_num_cluster,
|
301 |
+
n_iters=hourglass_cluster_iters,
|
302 |
+
temperture=hourglass_temperture,
|
303 |
+
window_size=hourglass_cluster_window_size,
|
304 |
+
)
|
305 |
+
self.token_reconstruction_block = TokenReconstructionBlock(
|
306 |
+
k=hourglass_reconstruction_k,
|
307 |
+
temperture=hourglass_temperture,
|
308 |
+
)
|
309 |
+
|
310 |
+
def cluster(self, x, reconstructer):
|
311 |
+
# x: B, H, W, C
|
312 |
+
H, W = x.shape[1:3]
|
313 |
+
x, pad_hw = window_partition(x, self.window_size) # B*Nw, WH, WW, C
|
314 |
+
Bnw, _, _, C = x.shape
|
315 |
+
|
316 |
+
reconstructer.update_state(
|
317 |
+
feat_before_pooling=x.view(-1, self.window_size * self.window_size, C)
|
318 |
+
)
|
319 |
+
x, hard_labels = self.token_clustering_block(x) # B*H*W, Wh, Ww, C
|
320 |
+
reconstructer.update_state(hard_labels=hard_labels)
|
321 |
+
reconstructer.update_state(feat_after_pooling=x.view(Bnw, -1, C))
|
322 |
+
|
323 |
+
# merge window
|
324 |
+
# Reverse window partition
|
325 |
+
h = pad_hw[0] // self.window_size * x.shape[1]
|
326 |
+
w = pad_hw[1] // self.window_size * x.shape[2]
|
327 |
+
x = window_unpartition(x, self.ws_new, (h, w), (h, w))
|
328 |
+
# out: B, h, w, C
|
329 |
+
return x, pad_hw
|
330 |
+
|
331 |
+
def reconstruct(self, x, H, W, recontructer, pad_hw):
|
332 |
+
# x: B, h, w, C
|
333 |
+
x, _ = window_partition(x, self.ws_new) # B*Nw, Wh, Ww, C
|
334 |
+
Bnw, _, _, C = x.shape
|
335 |
+
x = x.view(Bnw, -1, C)
|
336 |
+
|
337 |
+
x, _ = recontructer.call(x) # B*Nw, WH*WW, C
|
338 |
+
|
339 |
+
# merge windows
|
340 |
+
x = x.view(-1, self.window_size, self.window_size, C)
|
341 |
+
x = window_unpartition(x, self.window_size, pad_hw, (H, W)) # B, H, W, C
|
342 |
+
return x
|
343 |
+
|
344 |
+
|
345 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
346 |
+
x = self.patch_embed(x)
|
347 |
+
if self.pos_embed is not None:
|
348 |
+
x = x + self.pos_embed
|
349 |
+
|
350 |
+
H, W = x.shape[1], x.shape[2]
|
351 |
+
reconstructer = self.token_reconstruction_block.derive_unpooler()
|
352 |
+
reconstructer.update_state(hw_shape=(H, W))
|
353 |
+
|
354 |
+
for i, blk in enumerate(self.blocks):
|
355 |
+
if i == self.clustering_location:
|
356 |
+
x, pad_hw = self.cluster(x, reconstructer)
|
357 |
+
x = blk(x)
|
358 |
+
|
359 |
+
x = self.reconstruct(x, H, W, reconstructer, pad_hw)
|
360 |
+
|
361 |
+
x = self.neck(x.permute(0, 3, 1, 2))
|
362 |
+
|
363 |
+
return x
|
364 |
+
|
365 |
+
|
366 |
+
class HourglassBlock(Block):
|
367 |
+
"""Transformer blocks with support of window attention and residual propagation blocks"""
|
368 |
+
|
369 |
+
def __init__(
|
370 |
+
self,
|
371 |
+
dim: int,
|
372 |
+
num_heads: int,
|
373 |
+
mlp_ratio: float = 4.0,
|
374 |
+
qkv_bias: bool = True,
|
375 |
+
norm_layer: Type[nn.Module] = nn.LayerNorm,
|
376 |
+
act_layer: Type[nn.Module] = nn.GELU,
|
377 |
+
use_rel_pos: bool = False,
|
378 |
+
rel_pos_zero_init: bool = True,
|
379 |
+
window_size: int = 0,
|
380 |
+
input_size: Optional[Tuple[int, int]] = None,
|
381 |
+
window_size_ckpt: int = 0,
|
382 |
+
) -> None:
|
383 |
+
"""
|
384 |
+
Args:
|
385 |
+
dim (int): Number of input channels.
|
386 |
+
num_heads (int): Number of attention heads in each ViT block.
|
387 |
+
mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.
|
388 |
+
qkv_bias (bool): If True, add a learnable bias to query, key, value.
|
389 |
+
norm_layer (nn.Module): Normalization layer.
|
390 |
+
act_layer (nn.Module): Activation layer.
|
391 |
+
use_rel_pos (bool): If True, add relative positional embeddings to the attention map.
|
392 |
+
rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.
|
393 |
+
window_size (int): Window size for window attention blocks. If it equals 0, then
|
394 |
+
use global attention.
|
395 |
+
input_size (int or None): Input resolution for calculating the relative positional
|
396 |
+
parameter size.
|
397 |
+
"""
|
398 |
+
super(HourglassBlock, self).__init__(
|
399 |
+
dim=dim,
|
400 |
+
num_heads=num_heads,
|
401 |
+
mlp_ratio=mlp_ratio,
|
402 |
+
qkv_bias=qkv_bias,
|
403 |
+
norm_layer=norm_layer,
|
404 |
+
act_layer=act_layer,
|
405 |
+
use_rel_pos=use_rel_pos,
|
406 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
407 |
+
window_size=window_size,
|
408 |
+
input_size=input_size,
|
409 |
+
)
|
410 |
+
|
411 |
+
self.attn = Attention(
|
412 |
+
dim,
|
413 |
+
num_heads=num_heads,
|
414 |
+
qkv_bias=qkv_bias,
|
415 |
+
use_rel_pos=use_rel_pos,
|
416 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
417 |
+
input_size=input_size if window_size == 0 else (window_size_ckpt, window_size_ckpt),
|
418 |
+
)
|
segment_anything/modeling/image_encoder.py
ADDED
@@ -0,0 +1,395 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
import torch.nn as nn
|
9 |
+
import torch.nn.functional as F
|
10 |
+
|
11 |
+
from typing import Optional, Tuple, Type
|
12 |
+
|
13 |
+
from .common import LayerNorm2d, MLPBlock
|
14 |
+
|
15 |
+
|
16 |
+
# This class and its supporting functions below lightly adapted from the ViTDet backbone available at: https://github.com/facebookresearch/detectron2/blob/main/detectron2/modeling/backbone/vit.py # noqa
|
17 |
+
class ImageEncoderViT(nn.Module):
|
18 |
+
def __init__(
|
19 |
+
self,
|
20 |
+
img_size: int = 1024,
|
21 |
+
patch_size: int = 16,
|
22 |
+
in_chans: int = 3,
|
23 |
+
embed_dim: int = 768,
|
24 |
+
depth: int = 12,
|
25 |
+
num_heads: int = 12,
|
26 |
+
mlp_ratio: float = 4.0,
|
27 |
+
out_chans: int = 256,
|
28 |
+
qkv_bias: bool = True,
|
29 |
+
norm_layer: Type[nn.Module] = nn.LayerNorm,
|
30 |
+
act_layer: Type[nn.Module] = nn.GELU,
|
31 |
+
use_abs_pos: bool = True,
|
32 |
+
use_rel_pos: bool = False,
|
33 |
+
rel_pos_zero_init: bool = True,
|
34 |
+
window_size: int = 0,
|
35 |
+
global_attn_indexes: Tuple[int, ...] = (),
|
36 |
+
) -> None:
|
37 |
+
"""
|
38 |
+
Args:
|
39 |
+
img_size (int): Input image size.
|
40 |
+
patch_size (int): Patch size.
|
41 |
+
in_chans (int): Number of input image channels.
|
42 |
+
embed_dim (int): Patch embedding dimension.
|
43 |
+
depth (int): Depth of ViT.
|
44 |
+
num_heads (int): Number of attention heads in each ViT block.
|
45 |
+
mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.
|
46 |
+
qkv_bias (bool): If True, add a learnable bias to query, key, value.
|
47 |
+
norm_layer (nn.Module): Normalization layer.
|
48 |
+
act_layer (nn.Module): Activation layer.
|
49 |
+
use_abs_pos (bool): If True, use absolute positional embeddings.
|
50 |
+
use_rel_pos (bool): If True, add relative positional embeddings to the attention map.
|
51 |
+
rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.
|
52 |
+
window_size (int): Window size for window attention blocks.
|
53 |
+
global_attn_indexes (list): Indexes for blocks using global attention.
|
54 |
+
"""
|
55 |
+
super().__init__()
|
56 |
+
self.img_size = img_size
|
57 |
+
|
58 |
+
self.patch_embed = PatchEmbed(
|
59 |
+
kernel_size=(patch_size, patch_size),
|
60 |
+
stride=(patch_size, patch_size),
|
61 |
+
in_chans=in_chans,
|
62 |
+
embed_dim=embed_dim,
|
63 |
+
)
|
64 |
+
|
65 |
+
self.pos_embed: Optional[nn.Parameter] = None
|
66 |
+
if use_abs_pos:
|
67 |
+
# Initialize absolute positional embedding with pretrain image size.
|
68 |
+
self.pos_embed = nn.Parameter(
|
69 |
+
torch.zeros(1, img_size // patch_size, img_size // patch_size, embed_dim)
|
70 |
+
)
|
71 |
+
|
72 |
+
self.blocks = nn.ModuleList()
|
73 |
+
for i in range(depth):
|
74 |
+
block = Block(
|
75 |
+
dim=embed_dim,
|
76 |
+
num_heads=num_heads,
|
77 |
+
mlp_ratio=mlp_ratio,
|
78 |
+
qkv_bias=qkv_bias,
|
79 |
+
norm_layer=norm_layer,
|
80 |
+
act_layer=act_layer,
|
81 |
+
use_rel_pos=use_rel_pos,
|
82 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
83 |
+
window_size=window_size if i not in global_attn_indexes else 0,
|
84 |
+
input_size=(img_size // patch_size, img_size // patch_size),
|
85 |
+
)
|
86 |
+
self.blocks.append(block)
|
87 |
+
|
88 |
+
self.neck = nn.Sequential(
|
89 |
+
nn.Conv2d(
|
90 |
+
embed_dim,
|
91 |
+
out_chans,
|
92 |
+
kernel_size=1,
|
93 |
+
bias=False,
|
94 |
+
),
|
95 |
+
LayerNorm2d(out_chans),
|
96 |
+
nn.Conv2d(
|
97 |
+
out_chans,
|
98 |
+
out_chans,
|
99 |
+
kernel_size=3,
|
100 |
+
padding=1,
|
101 |
+
bias=False,
|
102 |
+
),
|
103 |
+
LayerNorm2d(out_chans),
|
104 |
+
)
|
105 |
+
|
106 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
107 |
+
x = self.patch_embed(x)
|
108 |
+
if self.pos_embed is not None:
|
109 |
+
x = x + self.pos_embed
|
110 |
+
|
111 |
+
for blk in self.blocks:
|
112 |
+
x = blk(x)
|
113 |
+
|
114 |
+
x = self.neck(x.permute(0, 3, 1, 2))
|
115 |
+
|
116 |
+
return x
|
117 |
+
|
118 |
+
|
119 |
+
class Block(nn.Module):
|
120 |
+
"""Transformer blocks with support of window attention and residual propagation blocks"""
|
121 |
+
|
122 |
+
def __init__(
|
123 |
+
self,
|
124 |
+
dim: int,
|
125 |
+
num_heads: int,
|
126 |
+
mlp_ratio: float = 4.0,
|
127 |
+
qkv_bias: bool = True,
|
128 |
+
norm_layer: Type[nn.Module] = nn.LayerNorm,
|
129 |
+
act_layer: Type[nn.Module] = nn.GELU,
|
130 |
+
use_rel_pos: bool = False,
|
131 |
+
rel_pos_zero_init: bool = True,
|
132 |
+
window_size: int = 0,
|
133 |
+
input_size: Optional[Tuple[int, int]] = None,
|
134 |
+
) -> None:
|
135 |
+
"""
|
136 |
+
Args:
|
137 |
+
dim (int): Number of input channels.
|
138 |
+
num_heads (int): Number of attention heads in each ViT block.
|
139 |
+
mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.
|
140 |
+
qkv_bias (bool): If True, add a learnable bias to query, key, value.
|
141 |
+
norm_layer (nn.Module): Normalization layer.
|
142 |
+
act_layer (nn.Module): Activation layer.
|
143 |
+
use_rel_pos (bool): If True, add relative positional embeddings to the attention map.
|
144 |
+
rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.
|
145 |
+
window_size (int): Window size for window attention blocks. If it equals 0, then
|
146 |
+
use global attention.
|
147 |
+
input_size (int or None): Input resolution for calculating the relative positional
|
148 |
+
parameter size.
|
149 |
+
"""
|
150 |
+
super().__init__()
|
151 |
+
self.norm1 = norm_layer(dim)
|
152 |
+
self.attn = Attention(
|
153 |
+
dim,
|
154 |
+
num_heads=num_heads,
|
155 |
+
qkv_bias=qkv_bias,
|
156 |
+
use_rel_pos=use_rel_pos,
|
157 |
+
rel_pos_zero_init=rel_pos_zero_init,
|
158 |
+
input_size=input_size if window_size == 0 else (window_size, window_size),
|
159 |
+
)
|
160 |
+
|
161 |
+
self.norm2 = norm_layer(dim)
|
162 |
+
self.mlp = MLPBlock(embedding_dim=dim, mlp_dim=int(dim * mlp_ratio), act=act_layer)
|
163 |
+
|
164 |
+
self.window_size = window_size
|
165 |
+
|
166 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
167 |
+
shortcut = x
|
168 |
+
x = self.norm1(x)
|
169 |
+
# Window partition
|
170 |
+
if self.window_size > 0:
|
171 |
+
H, W = x.shape[1], x.shape[2]
|
172 |
+
x, pad_hw = window_partition(x, self.window_size)
|
173 |
+
|
174 |
+
x = self.attn(x)
|
175 |
+
# Reverse window partition
|
176 |
+
if self.window_size > 0:
|
177 |
+
x = window_unpartition(x, self.window_size, pad_hw, (H, W))
|
178 |
+
|
179 |
+
x = shortcut + x
|
180 |
+
x = x + self.mlp(self.norm2(x))
|
181 |
+
|
182 |
+
return x
|
183 |
+
|
184 |
+
|
185 |
+
class Attention(nn.Module):
|
186 |
+
"""Multi-head Attention block with relative position embeddings."""
|
187 |
+
|
188 |
+
def __init__(
|
189 |
+
self,
|
190 |
+
dim: int,
|
191 |
+
num_heads: int = 8,
|
192 |
+
qkv_bias: bool = True,
|
193 |
+
use_rel_pos: bool = False,
|
194 |
+
rel_pos_zero_init: bool = True,
|
195 |
+
input_size: Optional[Tuple[int, int]] = None,
|
196 |
+
) -> None:
|
197 |
+
"""
|
198 |
+
Args:
|
199 |
+
dim (int): Number of input channels.
|
200 |
+
num_heads (int): Number of attention heads.
|
201 |
+
qkv_bias (bool: If True, add a learnable bias to query, key, value.
|
202 |
+
rel_pos (bool): If True, add relative positional embeddings to the attention map.
|
203 |
+
rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.
|
204 |
+
input_size (int or None): Input resolution for calculating the relative positional
|
205 |
+
parameter size.
|
206 |
+
"""
|
207 |
+
super().__init__()
|
208 |
+
self.num_heads = num_heads
|
209 |
+
head_dim = dim // num_heads
|
210 |
+
self.scale = head_dim**-0.5
|
211 |
+
|
212 |
+
self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
|
213 |
+
self.proj = nn.Linear(dim, dim)
|
214 |
+
|
215 |
+
self.use_rel_pos = use_rel_pos
|
216 |
+
if self.use_rel_pos:
|
217 |
+
assert (
|
218 |
+
input_size is not None
|
219 |
+
), "Input size must be provided if using relative positional encoding."
|
220 |
+
# initialize relative positional embeddings
|
221 |
+
self.rel_pos_h = nn.Parameter(torch.zeros(2 * input_size[0] - 1, head_dim))
|
222 |
+
self.rel_pos_w = nn.Parameter(torch.zeros(2 * input_size[1] - 1, head_dim))
|
223 |
+
|
224 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
225 |
+
B, H, W, _ = x.shape
|
226 |
+
# qkv with shape (3, B, nHead, H * W, C)
|
227 |
+
qkv = self.qkv(x).reshape(B, H * W, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4)
|
228 |
+
# q, k, v with shape (B * nHead, H * W, C)
|
229 |
+
q, k, v = qkv.reshape(3, B * self.num_heads, H * W, -1).unbind(0)
|
230 |
+
|
231 |
+
attn = (q * self.scale) @ k.transpose(-2, -1)
|
232 |
+
|
233 |
+
if self.use_rel_pos:
|
234 |
+
attn = add_decomposed_rel_pos(attn, q, self.rel_pos_h, self.rel_pos_w, (H, W), (H, W))
|
235 |
+
|
236 |
+
attn = attn.softmax(dim=-1)
|
237 |
+
x = (attn @ v).view(B, self.num_heads, H, W, -1).permute(0, 2, 3, 1, 4).reshape(B, H, W, -1)
|
238 |
+
x = self.proj(x)
|
239 |
+
|
240 |
+
return x
|
241 |
+
|
242 |
+
|
243 |
+
def window_partition(x: torch.Tensor, window_size: int) -> Tuple[torch.Tensor, Tuple[int, int]]:
|
244 |
+
"""
|
245 |
+
Partition into non-overlapping windows with padding if needed.
|
246 |
+
Args:
|
247 |
+
x (tensor): input tokens with [B, H, W, C].
|
248 |
+
window_size (int): window size.
|
249 |
+
|
250 |
+
Returns:
|
251 |
+
windows: windows after partition with [B * num_windows, window_size, window_size, C].
|
252 |
+
(Hp, Wp): padded height and width before partition
|
253 |
+
"""
|
254 |
+
B, H, W, C = x.shape
|
255 |
+
|
256 |
+
pad_h = (window_size - H % window_size) % window_size
|
257 |
+
pad_w = (window_size - W % window_size) % window_size
|
258 |
+
if pad_h > 0 or pad_w > 0:
|
259 |
+
x = F.pad(x, (0, 0, 0, pad_w, 0, pad_h))
|
260 |
+
Hp, Wp = H + pad_h, W + pad_w
|
261 |
+
|
262 |
+
x = x.view(B, Hp // window_size, window_size, Wp // window_size, window_size, C)
|
263 |
+
windows = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(-1, window_size, window_size, C)
|
264 |
+
return windows, (Hp, Wp)
|
265 |
+
|
266 |
+
|
267 |
+
def window_unpartition(
|
268 |
+
windows: torch.Tensor, window_size: int, pad_hw: Tuple[int, int], hw: Tuple[int, int]
|
269 |
+
) -> torch.Tensor:
|
270 |
+
"""
|
271 |
+
Window unpartition into original sequences and removing padding.
|
272 |
+
Args:
|
273 |
+
x (tensor): input tokens with [B * num_windows, window_size, window_size, C].
|
274 |
+
window_size (int): window size.
|
275 |
+
pad_hw (Tuple): padded height and width (Hp, Wp).
|
276 |
+
hw (Tuple): original height and width (H, W) before padding.
|
277 |
+
|
278 |
+
Returns:
|
279 |
+
x: unpartitioned sequences with [B, H, W, C].
|
280 |
+
"""
|
281 |
+
Hp, Wp = pad_hw
|
282 |
+
H, W = hw
|
283 |
+
B = windows.shape[0] // (Hp * Wp // window_size // window_size)
|
284 |
+
x = windows.view(B, Hp // window_size, Wp // window_size, window_size, window_size, -1)
|
285 |
+
x = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(B, Hp, Wp, -1)
|
286 |
+
|
287 |
+
if Hp > H or Wp > W:
|
288 |
+
x = x[:, :H, :W, :].contiguous()
|
289 |
+
return x
|
290 |
+
|
291 |
+
|
292 |
+
def get_rel_pos(q_size: int, k_size: int, rel_pos: torch.Tensor) -> torch.Tensor:
|
293 |
+
"""
|
294 |
+
Get relative positional embeddings according to the relative positions of
|
295 |
+
query and key sizes.
|
296 |
+
Args:
|
297 |
+
q_size (int): size of query q.
|
298 |
+
k_size (int): size of key k.
|
299 |
+
rel_pos (Tensor): relative position embeddings (L, C).
|
300 |
+
|
301 |
+
Returns:
|
302 |
+
Extracted positional embeddings according to relative positions.
|
303 |
+
"""
|
304 |
+
max_rel_dist = int(2 * max(q_size, k_size) - 1)
|
305 |
+
# Interpolate rel pos if needed.
|
306 |
+
if rel_pos.shape[0] != max_rel_dist:
|
307 |
+
# Interpolate rel pos.
|
308 |
+
rel_pos_resized = F.interpolate(
|
309 |
+
rel_pos.reshape(1, rel_pos.shape[0], -1).permute(0, 2, 1),
|
310 |
+
size=max_rel_dist,
|
311 |
+
mode="linear",
|
312 |
+
)
|
313 |
+
rel_pos_resized = rel_pos_resized.reshape(-1, max_rel_dist).permute(1, 0)
|
314 |
+
else:
|
315 |
+
rel_pos_resized = rel_pos
|
316 |
+
|
317 |
+
# Scale the coords with short length if shapes for q and k are different.
|
318 |
+
q_coords = torch.arange(q_size)[:, None] * max(k_size / q_size, 1.0)
|
319 |
+
k_coords = torch.arange(k_size)[None, :] * max(q_size / k_size, 1.0)
|
320 |
+
relative_coords = (q_coords - k_coords) + (k_size - 1) * max(q_size / k_size, 1.0)
|
321 |
+
|
322 |
+
return rel_pos_resized[relative_coords.long()]
|
323 |
+
|
324 |
+
|
325 |
+
def add_decomposed_rel_pos(
|
326 |
+
attn: torch.Tensor,
|
327 |
+
q: torch.Tensor,
|
328 |
+
rel_pos_h: torch.Tensor,
|
329 |
+
rel_pos_w: torch.Tensor,
|
330 |
+
q_size: Tuple[int, int],
|
331 |
+
k_size: Tuple[int, int],
|
332 |
+
) -> torch.Tensor:
|
333 |
+
"""
|
334 |
+
Calculate decomposed Relative Positional Embeddings from :paper:`mvitv2`.
|
335 |
+
https://github.com/facebookresearch/mvit/blob/19786631e330df9f3622e5402b4a419a263a2c80/mvit/models/attention.py # noqa B950
|
336 |
+
Args:
|
337 |
+
attn (Tensor): attention map.
|
338 |
+
q (Tensor): query q in the attention layer with shape (B, q_h * q_w, C).
|
339 |
+
rel_pos_h (Tensor): relative position embeddings (Lh, C) for height axis.
|
340 |
+
rel_pos_w (Tensor): relative position embeddings (Lw, C) for width axis.
|
341 |
+
q_size (Tuple): spatial sequence size of query q with (q_h, q_w).
|
342 |
+
k_size (Tuple): spatial sequence size of key k with (k_h, k_w).
|
343 |
+
|
344 |
+
Returns:
|
345 |
+
attn (Tensor): attention map with added relative positional embeddings.
|
346 |
+
"""
|
347 |
+
q_h, q_w = q_size
|
348 |
+
k_h, k_w = k_size
|
349 |
+
Rh = get_rel_pos(q_h, k_h, rel_pos_h)
|
350 |
+
Rw = get_rel_pos(q_w, k_w, rel_pos_w)
|
351 |
+
|
352 |
+
B, _, dim = q.shape
|
353 |
+
r_q = q.reshape(B, q_h, q_w, dim)
|
354 |
+
rel_h = torch.einsum("bhwc,hkc->bhwk", r_q, Rh)
|
355 |
+
rel_w = torch.einsum("bhwc,wkc->bhwk", r_q, Rw)
|
356 |
+
|
357 |
+
attn = (
|
358 |
+
attn.view(B, q_h, q_w, k_h, k_w) + rel_h[:, :, :, :, None] + rel_w[:, :, :, None, :]
|
359 |
+
).view(B, q_h * q_w, k_h * k_w)
|
360 |
+
|
361 |
+
return attn
|
362 |
+
|
363 |
+
|
364 |
+
class PatchEmbed(nn.Module):
|
365 |
+
"""
|
366 |
+
Image to Patch Embedding.
|
367 |
+
"""
|
368 |
+
|
369 |
+
def __init__(
|
370 |
+
self,
|
371 |
+
kernel_size: Tuple[int, int] = (16, 16),
|
372 |
+
stride: Tuple[int, int] = (16, 16),
|
373 |
+
padding: Tuple[int, int] = (0, 0),
|
374 |
+
in_chans: int = 3,
|
375 |
+
embed_dim: int = 768,
|
376 |
+
) -> None:
|
377 |
+
"""
|
378 |
+
Args:
|
379 |
+
kernel_size (Tuple): kernel size of the projection layer.
|
380 |
+
stride (Tuple): stride of the projection layer.
|
381 |
+
padding (Tuple): padding size of the projection layer.
|
382 |
+
in_chans (int): Number of input image channels.
|
383 |
+
embed_dim (int): embed_dim (int): Patch embedding dimension.
|
384 |
+
"""
|
385 |
+
super().__init__()
|
386 |
+
|
387 |
+
self.proj = nn.Conv2d(
|
388 |
+
in_chans, embed_dim, kernel_size=kernel_size, stride=stride, padding=padding
|
389 |
+
)
|
390 |
+
|
391 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
392 |
+
x = self.proj(x)
|
393 |
+
# B C H W -> B H W C
|
394 |
+
x = x.permute(0, 2, 3, 1)
|
395 |
+
return x
|
segment_anything/modeling/mask_decoder.py
ADDED
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
from torch import nn
|
9 |
+
from torch.nn import functional as F
|
10 |
+
|
11 |
+
from typing import List, Tuple, Type
|
12 |
+
|
13 |
+
from .common import LayerNorm2d
|
14 |
+
|
15 |
+
|
16 |
+
class MaskDecoder(nn.Module):
|
17 |
+
def __init__(
|
18 |
+
self,
|
19 |
+
*,
|
20 |
+
transformer_dim: int,
|
21 |
+
transformer: nn.Module,
|
22 |
+
num_multimask_outputs: int = 3,
|
23 |
+
activation: Type[nn.Module] = nn.GELU,
|
24 |
+
iou_head_depth: int = 3,
|
25 |
+
iou_head_hidden_dim: int = 256,
|
26 |
+
) -> None:
|
27 |
+
"""
|
28 |
+
Predicts masks given an image and prompt embeddings, using a
|
29 |
+
tranformer architecture.
|
30 |
+
|
31 |
+
Arguments:
|
32 |
+
transformer_dim (int): the channel dimension of the transformer
|
33 |
+
transformer (nn.Module): the transformer used to predict masks
|
34 |
+
num_multimask_outputs (int): the number of masks to predict
|
35 |
+
when disambiguating masks
|
36 |
+
activation (nn.Module): the type of activation to use when
|
37 |
+
upscaling masks
|
38 |
+
iou_head_depth (int): the depth of the MLP used to predict
|
39 |
+
mask quality
|
40 |
+
iou_head_hidden_dim (int): the hidden dimension of the MLP
|
41 |
+
used to predict mask quality
|
42 |
+
"""
|
43 |
+
super().__init__()
|
44 |
+
self.transformer_dim = transformer_dim
|
45 |
+
self.transformer = transformer
|
46 |
+
|
47 |
+
self.num_multimask_outputs = num_multimask_outputs
|
48 |
+
|
49 |
+
self.iou_token = nn.Embedding(1, transformer_dim)
|
50 |
+
self.num_mask_tokens = num_multimask_outputs + 1
|
51 |
+
self.mask_tokens = nn.Embedding(self.num_mask_tokens, transformer_dim)
|
52 |
+
|
53 |
+
self.output_upscaling = nn.Sequential(
|
54 |
+
nn.ConvTranspose2d(transformer_dim, transformer_dim // 4, kernel_size=2, stride=2),
|
55 |
+
LayerNorm2d(transformer_dim // 4),
|
56 |
+
activation(),
|
57 |
+
nn.ConvTranspose2d(transformer_dim // 4, transformer_dim // 8, kernel_size=2, stride=2),
|
58 |
+
activation(),
|
59 |
+
)
|
60 |
+
self.output_hypernetworks_mlps = nn.ModuleList(
|
61 |
+
[
|
62 |
+
MLP(transformer_dim, transformer_dim, transformer_dim // 8, 3)
|
63 |
+
for i in range(self.num_mask_tokens)
|
64 |
+
]
|
65 |
+
)
|
66 |
+
|
67 |
+
self.iou_prediction_head = MLP(
|
68 |
+
transformer_dim, iou_head_hidden_dim, self.num_mask_tokens, iou_head_depth
|
69 |
+
)
|
70 |
+
|
71 |
+
def forward(
|
72 |
+
self,
|
73 |
+
image_embeddings: torch.Tensor,
|
74 |
+
image_pe: torch.Tensor,
|
75 |
+
sparse_prompt_embeddings: torch.Tensor,
|
76 |
+
dense_prompt_embeddings: torch.Tensor,
|
77 |
+
multimask_output: bool,
|
78 |
+
) -> Tuple[torch.Tensor, torch.Tensor]:
|
79 |
+
"""
|
80 |
+
Predict masks given image and prompt embeddings.
|
81 |
+
|
82 |
+
Arguments:
|
83 |
+
image_embeddings (torch.Tensor): the embeddings from the image encoder
|
84 |
+
image_pe (torch.Tensor): positional encoding with the shape of image_embeddings
|
85 |
+
sparse_prompt_embeddings (torch.Tensor): the embeddings of the points and boxes
|
86 |
+
dense_prompt_embeddings (torch.Tensor): the embeddings of the mask inputs
|
87 |
+
multimask_output (bool): Whether to return multiple masks or a single
|
88 |
+
mask.
|
89 |
+
|
90 |
+
Returns:
|
91 |
+
torch.Tensor: batched predicted masks
|
92 |
+
torch.Tensor: batched predictions of mask quality
|
93 |
+
"""
|
94 |
+
masks, iou_pred = self.predict_masks(
|
95 |
+
image_embeddings=image_embeddings,
|
96 |
+
image_pe=image_pe,
|
97 |
+
sparse_prompt_embeddings=sparse_prompt_embeddings,
|
98 |
+
dense_prompt_embeddings=dense_prompt_embeddings,
|
99 |
+
)
|
100 |
+
|
101 |
+
# Select the correct mask or masks for outptu
|
102 |
+
if multimask_output:
|
103 |
+
mask_slice = slice(1, None)
|
104 |
+
else:
|
105 |
+
mask_slice = slice(0, 1)
|
106 |
+
masks = masks[:, mask_slice, :, :]
|
107 |
+
iou_pred = iou_pred[:, mask_slice]
|
108 |
+
|
109 |
+
# Prepare output
|
110 |
+
return masks, iou_pred
|
111 |
+
|
112 |
+
def predict_masks(
|
113 |
+
self,
|
114 |
+
image_embeddings: torch.Tensor,
|
115 |
+
image_pe: torch.Tensor,
|
116 |
+
sparse_prompt_embeddings: torch.Tensor,
|
117 |
+
dense_prompt_embeddings: torch.Tensor,
|
118 |
+
) -> Tuple[torch.Tensor, torch.Tensor]:
|
119 |
+
"""Predicts masks. See 'forward' for more details."""
|
120 |
+
# Concatenate output tokens
|
121 |
+
output_tokens = torch.cat([self.iou_token.weight, self.mask_tokens.weight], dim=0)
|
122 |
+
output_tokens = output_tokens.unsqueeze(0).expand(sparse_prompt_embeddings.size(0), -1, -1)
|
123 |
+
tokens = torch.cat((output_tokens, sparse_prompt_embeddings), dim=1)
|
124 |
+
|
125 |
+
# Expand per-image data in batch direction to be per-mask
|
126 |
+
src = torch.repeat_interleave(image_embeddings, tokens.shape[0], dim=0)
|
127 |
+
src = src + dense_prompt_embeddings
|
128 |
+
pos_src = torch.repeat_interleave(image_pe, tokens.shape[0], dim=0)
|
129 |
+
b, c, h, w = src.shape
|
130 |
+
|
131 |
+
# Run the transformer
|
132 |
+
hs, src = self.transformer(src, pos_src, tokens)
|
133 |
+
iou_token_out = hs[:, 0, :]
|
134 |
+
mask_tokens_out = hs[:, 1 : (1 + self.num_mask_tokens), :]
|
135 |
+
|
136 |
+
# Upscale mask embeddings and predict masks using the mask tokens
|
137 |
+
src = src.transpose(1, 2).view(b, c, h, w)
|
138 |
+
upscaled_embedding = self.output_upscaling(src)
|
139 |
+
hyper_in_list: List[torch.Tensor] = []
|
140 |
+
for i in range(self.num_mask_tokens):
|
141 |
+
hyper_in_list.append(self.output_hypernetworks_mlps[i](mask_tokens_out[:, i, :]))
|
142 |
+
hyper_in = torch.stack(hyper_in_list, dim=1)
|
143 |
+
b, c, h, w = upscaled_embedding.shape
|
144 |
+
masks = (hyper_in @ upscaled_embedding.view(b, c, h * w)).view(b, -1, h, w)
|
145 |
+
|
146 |
+
# Generate mask quality predictions
|
147 |
+
iou_pred = self.iou_prediction_head(iou_token_out)
|
148 |
+
|
149 |
+
return masks, iou_pred
|
150 |
+
|
151 |
+
|
152 |
+
# Lightly adapted from
|
153 |
+
# https://github.com/facebookresearch/MaskFormer/blob/main/mask_former/modeling/transformer/transformer_predictor.py # noqa
|
154 |
+
class MLP(nn.Module):
|
155 |
+
def __init__(
|
156 |
+
self,
|
157 |
+
input_dim: int,
|
158 |
+
hidden_dim: int,
|
159 |
+
output_dim: int,
|
160 |
+
num_layers: int,
|
161 |
+
sigmoid_output: bool = False,
|
162 |
+
) -> None:
|
163 |
+
super().__init__()
|
164 |
+
self.num_layers = num_layers
|
165 |
+
h = [hidden_dim] * (num_layers - 1)
|
166 |
+
self.layers = nn.ModuleList(
|
167 |
+
nn.Linear(n, k) for n, k in zip([input_dim] + h, h + [output_dim])
|
168 |
+
)
|
169 |
+
self.sigmoid_output = sigmoid_output
|
170 |
+
|
171 |
+
def forward(self, x):
|
172 |
+
for i, layer in enumerate(self.layers):
|
173 |
+
x = F.relu(layer(x)) if i < self.num_layers - 1 else layer(x)
|
174 |
+
if self.sigmoid_output:
|
175 |
+
x = F.sigmoid(x)
|
176 |
+
return x
|
segment_anything/modeling/prompt_encoder.py
ADDED
@@ -0,0 +1,214 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import numpy as np
|
8 |
+
import torch
|
9 |
+
from torch import nn
|
10 |
+
|
11 |
+
from typing import Any, Optional, Tuple, Type
|
12 |
+
|
13 |
+
from .common import LayerNorm2d
|
14 |
+
|
15 |
+
|
16 |
+
class PromptEncoder(nn.Module):
|
17 |
+
def __init__(
|
18 |
+
self,
|
19 |
+
embed_dim: int,
|
20 |
+
image_embedding_size: Tuple[int, int],
|
21 |
+
input_image_size: Tuple[int, int],
|
22 |
+
mask_in_chans: int,
|
23 |
+
activation: Type[nn.Module] = nn.GELU,
|
24 |
+
) -> None:
|
25 |
+
"""
|
26 |
+
Encodes prompts for input to SAM's mask decoder.
|
27 |
+
|
28 |
+
Arguments:
|
29 |
+
embed_dim (int): The prompts' embedding dimension
|
30 |
+
image_embedding_size (tuple(int, int)): The spatial size of the
|
31 |
+
image embedding, as (H, W).
|
32 |
+
input_image_size (int): The padded size of the image as input
|
33 |
+
to the image encoder, as (H, W).
|
34 |
+
mask_in_chans (int): The number of hidden channels used for
|
35 |
+
encoding input masks.
|
36 |
+
activation (nn.Module): The activation to use when encoding
|
37 |
+
input masks.
|
38 |
+
"""
|
39 |
+
super().__init__()
|
40 |
+
self.embed_dim = embed_dim
|
41 |
+
self.input_image_size = input_image_size
|
42 |
+
self.image_embedding_size = image_embedding_size
|
43 |
+
self.pe_layer = PositionEmbeddingRandom(embed_dim // 2)
|
44 |
+
|
45 |
+
self.num_point_embeddings: int = 4 # pos/neg point + 2 box corners
|
46 |
+
point_embeddings = [nn.Embedding(1, embed_dim) for i in range(self.num_point_embeddings)]
|
47 |
+
self.point_embeddings = nn.ModuleList(point_embeddings)
|
48 |
+
self.not_a_point_embed = nn.Embedding(1, embed_dim)
|
49 |
+
|
50 |
+
self.mask_input_size = (4 * image_embedding_size[0], 4 * image_embedding_size[1])
|
51 |
+
self.mask_downscaling = nn.Sequential(
|
52 |
+
nn.Conv2d(1, mask_in_chans // 4, kernel_size=2, stride=2),
|
53 |
+
LayerNorm2d(mask_in_chans // 4),
|
54 |
+
activation(),
|
55 |
+
nn.Conv2d(mask_in_chans // 4, mask_in_chans, kernel_size=2, stride=2),
|
56 |
+
LayerNorm2d(mask_in_chans),
|
57 |
+
activation(),
|
58 |
+
nn.Conv2d(mask_in_chans, embed_dim, kernel_size=1),
|
59 |
+
)
|
60 |
+
self.no_mask_embed = nn.Embedding(1, embed_dim)
|
61 |
+
|
62 |
+
def get_dense_pe(self) -> torch.Tensor:
|
63 |
+
"""
|
64 |
+
Returns the positional encoding used to encode point prompts,
|
65 |
+
applied to a dense set of points the shape of the image encoding.
|
66 |
+
|
67 |
+
Returns:
|
68 |
+
torch.Tensor: Positional encoding with shape
|
69 |
+
1x(embed_dim)x(embedding_h)x(embedding_w)
|
70 |
+
"""
|
71 |
+
return self.pe_layer(self.image_embedding_size).unsqueeze(0)
|
72 |
+
|
73 |
+
def _embed_points(
|
74 |
+
self,
|
75 |
+
points: torch.Tensor,
|
76 |
+
labels: torch.Tensor,
|
77 |
+
pad: bool,
|
78 |
+
) -> torch.Tensor:
|
79 |
+
"""Embeds point prompts."""
|
80 |
+
points = points + 0.5 # Shift to center of pixel
|
81 |
+
if pad:
|
82 |
+
padding_point = torch.zeros((points.shape[0], 1, 2), device=points.device)
|
83 |
+
padding_label = -torch.ones((labels.shape[0], 1), device=labels.device)
|
84 |
+
points = torch.cat([points, padding_point], dim=1)
|
85 |
+
labels = torch.cat([labels, padding_label], dim=1)
|
86 |
+
point_embedding = self.pe_layer.forward_with_coords(points, self.input_image_size)
|
87 |
+
point_embedding[labels == -1] = 0.0
|
88 |
+
point_embedding[labels == -1] += self.not_a_point_embed.weight
|
89 |
+
point_embedding[labels == 0] += self.point_embeddings[0].weight
|
90 |
+
point_embedding[labels == 1] += self.point_embeddings[1].weight
|
91 |
+
return point_embedding
|
92 |
+
|
93 |
+
def _embed_boxes(self, boxes: torch.Tensor) -> torch.Tensor:
|
94 |
+
"""Embeds box prompts."""
|
95 |
+
boxes = boxes + 0.5 # Shift to center of pixel
|
96 |
+
coords = boxes.reshape(-1, 2, 2)
|
97 |
+
corner_embedding = self.pe_layer.forward_with_coords(coords, self.input_image_size)
|
98 |
+
corner_embedding[:, 0, :] += self.point_embeddings[2].weight
|
99 |
+
corner_embedding[:, 1, :] += self.point_embeddings[3].weight
|
100 |
+
return corner_embedding
|
101 |
+
|
102 |
+
def _embed_masks(self, masks: torch.Tensor) -> torch.Tensor:
|
103 |
+
"""Embeds mask inputs."""
|
104 |
+
mask_embedding = self.mask_downscaling(masks)
|
105 |
+
return mask_embedding
|
106 |
+
|
107 |
+
def _get_batch_size(
|
108 |
+
self,
|
109 |
+
points: Optional[Tuple[torch.Tensor, torch.Tensor]],
|
110 |
+
boxes: Optional[torch.Tensor],
|
111 |
+
masks: Optional[torch.Tensor],
|
112 |
+
) -> int:
|
113 |
+
"""
|
114 |
+
Gets the batch size of the output given the batch size of the input prompts.
|
115 |
+
"""
|
116 |
+
if points is not None:
|
117 |
+
return points[0].shape[0]
|
118 |
+
elif boxes is not None:
|
119 |
+
return boxes.shape[0]
|
120 |
+
elif masks is not None:
|
121 |
+
return masks.shape[0]
|
122 |
+
else:
|
123 |
+
return 1
|
124 |
+
|
125 |
+
def _get_device(self) -> torch.device:
|
126 |
+
return self.point_embeddings[0].weight.device
|
127 |
+
|
128 |
+
def forward(
|
129 |
+
self,
|
130 |
+
points: Optional[Tuple[torch.Tensor, torch.Tensor]],
|
131 |
+
boxes: Optional[torch.Tensor],
|
132 |
+
masks: Optional[torch.Tensor],
|
133 |
+
) -> Tuple[torch.Tensor, torch.Tensor]:
|
134 |
+
"""
|
135 |
+
Embeds different types of prompts, returning both sparse and dense
|
136 |
+
embeddings.
|
137 |
+
|
138 |
+
Arguments:
|
139 |
+
points (tuple(torch.Tensor, torch.Tensor) or none): point coordinates
|
140 |
+
and labels to embed.
|
141 |
+
boxes (torch.Tensor or none): boxes to embed
|
142 |
+
masks (torch.Tensor or none): masks to embed
|
143 |
+
|
144 |
+
Returns:
|
145 |
+
torch.Tensor: sparse embeddings for the points and boxes, with shape
|
146 |
+
BxNx(embed_dim), where N is determined by the number of input points
|
147 |
+
and boxes.
|
148 |
+
torch.Tensor: dense embeddings for the masks, in the shape
|
149 |
+
Bx(embed_dim)x(embed_H)x(embed_W)
|
150 |
+
"""
|
151 |
+
bs = self._get_batch_size(points, boxes, masks)
|
152 |
+
sparse_embeddings = torch.empty((bs, 0, self.embed_dim), device=self._get_device())
|
153 |
+
if points is not None:
|
154 |
+
coords, labels = points
|
155 |
+
point_embeddings = self._embed_points(coords, labels, pad=(boxes is None))
|
156 |
+
sparse_embeddings = torch.cat([sparse_embeddings, point_embeddings], dim=1)
|
157 |
+
if boxes is not None:
|
158 |
+
box_embeddings = self._embed_boxes(boxes)
|
159 |
+
sparse_embeddings = torch.cat([sparse_embeddings, box_embeddings], dim=1)
|
160 |
+
|
161 |
+
if masks is not None:
|
162 |
+
dense_embeddings = self._embed_masks(masks)
|
163 |
+
else:
|
164 |
+
dense_embeddings = self.no_mask_embed.weight.reshape(1, -1, 1, 1).expand(
|
165 |
+
bs, -1, self.image_embedding_size[0], self.image_embedding_size[1]
|
166 |
+
)
|
167 |
+
|
168 |
+
return sparse_embeddings, dense_embeddings
|
169 |
+
|
170 |
+
|
171 |
+
class PositionEmbeddingRandom(nn.Module):
|
172 |
+
"""
|
173 |
+
Positional encoding using random spatial frequencies.
|
174 |
+
"""
|
175 |
+
|
176 |
+
def __init__(self, num_pos_feats: int = 64, scale: Optional[float] = None) -> None:
|
177 |
+
super().__init__()
|
178 |
+
if scale is None or scale <= 0.0:
|
179 |
+
scale = 1.0
|
180 |
+
self.register_buffer(
|
181 |
+
"positional_encoding_gaussian_matrix",
|
182 |
+
scale * torch.randn((2, num_pos_feats)),
|
183 |
+
)
|
184 |
+
|
185 |
+
def _pe_encoding(self, coords: torch.Tensor) -> torch.Tensor:
|
186 |
+
"""Positionally encode points that are normalized to [0,1]."""
|
187 |
+
# assuming coords are in [0, 1]^2 square and have d_1 x ... x d_n x 2 shape
|
188 |
+
coords = 2 * coords - 1
|
189 |
+
coords = coords @ self.positional_encoding_gaussian_matrix
|
190 |
+
coords = 2 * np.pi * coords
|
191 |
+
# outputs d_1 x ... x d_n x C shape
|
192 |
+
return torch.cat([torch.sin(coords), torch.cos(coords)], dim=-1)
|
193 |
+
|
194 |
+
def forward(self, size: Tuple[int, int]) -> torch.Tensor:
|
195 |
+
"""Generate positional encoding for a grid of the specified size."""
|
196 |
+
h, w = size
|
197 |
+
device: Any = self.positional_encoding_gaussian_matrix.device
|
198 |
+
grid = torch.ones((h, w), device=device, dtype=torch.float32)
|
199 |
+
y_embed = grid.cumsum(dim=0) - 0.5
|
200 |
+
x_embed = grid.cumsum(dim=1) - 0.5
|
201 |
+
y_embed = y_embed / h
|
202 |
+
x_embed = x_embed / w
|
203 |
+
|
204 |
+
pe = self._pe_encoding(torch.stack([x_embed, y_embed], dim=-1))
|
205 |
+
return pe.permute(2, 0, 1) # C x H x W
|
206 |
+
|
207 |
+
def forward_with_coords(
|
208 |
+
self, coords_input: torch.Tensor, image_size: Tuple[int, int]
|
209 |
+
) -> torch.Tensor:
|
210 |
+
"""Positionally encode points that are not normalized to [0,1]."""
|
211 |
+
coords = coords_input.clone()
|
212 |
+
coords[:, :, 0] = coords[:, :, 0] / image_size[1]
|
213 |
+
coords[:, :, 1] = coords[:, :, 1] / image_size[0]
|
214 |
+
return self._pe_encoding(coords.to(torch.float)) # B x N x C
|
segment_anything/modeling/sam.py
ADDED
@@ -0,0 +1,174 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
from torch import nn
|
9 |
+
from torch.nn import functional as F
|
10 |
+
|
11 |
+
from typing import Any, Dict, List, Tuple
|
12 |
+
|
13 |
+
from .image_encoder import ImageEncoderViT
|
14 |
+
from .mask_decoder import MaskDecoder
|
15 |
+
from .prompt_encoder import PromptEncoder
|
16 |
+
|
17 |
+
|
18 |
+
class Sam(nn.Module):
|
19 |
+
mask_threshold: float = 0.0
|
20 |
+
image_format: str = "RGB"
|
21 |
+
|
22 |
+
def __init__(
|
23 |
+
self,
|
24 |
+
image_encoder,
|
25 |
+
prompt_encoder: PromptEncoder,
|
26 |
+
mask_decoder: MaskDecoder,
|
27 |
+
pixel_mean: List[float] = [123.675, 116.28, 103.53],
|
28 |
+
pixel_std: List[float] = [58.395, 57.12, 57.375],
|
29 |
+
) -> None:
|
30 |
+
"""
|
31 |
+
SAM predicts object masks from an image and input prompts.
|
32 |
+
|
33 |
+
Arguments:
|
34 |
+
image_encoder (ImageEncoderViT): The backbone used to encode the
|
35 |
+
image into image embeddings that allow for efficient mask prediction.
|
36 |
+
prompt_encoder (PromptEncoder): Encodes various types of input prompts.
|
37 |
+
mask_decoder (MaskDecoder): Predicts masks from the image embeddings
|
38 |
+
and encoded prompts.
|
39 |
+
pixel_mean (list(float)): Mean values for normalizing pixels in the input image.
|
40 |
+
pixel_std (list(float)): Std values for normalizing pixels in the input image.
|
41 |
+
"""
|
42 |
+
super().__init__()
|
43 |
+
self.image_encoder = image_encoder
|
44 |
+
self.prompt_encoder = prompt_encoder
|
45 |
+
self.mask_decoder = mask_decoder
|
46 |
+
self.register_buffer("pixel_mean", torch.Tensor(pixel_mean).view(-1, 1, 1), False)
|
47 |
+
self.register_buffer("pixel_std", torch.Tensor(pixel_std).view(-1, 1, 1), False)
|
48 |
+
|
49 |
+
@property
|
50 |
+
def device(self) -> Any:
|
51 |
+
return self.pixel_mean.device
|
52 |
+
|
53 |
+
@torch.no_grad()
|
54 |
+
def forward(
|
55 |
+
self,
|
56 |
+
batched_input: List[Dict[str, Any]],
|
57 |
+
multimask_output: bool,
|
58 |
+
) -> List[Dict[str, torch.Tensor]]:
|
59 |
+
"""
|
60 |
+
Predicts masks end-to-end from provided images and prompts.
|
61 |
+
If prompts are not known in advance, using SamPredictor is
|
62 |
+
recommended over calling the model directly.
|
63 |
+
|
64 |
+
Arguments:
|
65 |
+
batched_input (list(dict)): A list over input images, each a
|
66 |
+
dictionary with the following keys. A prompt key can be
|
67 |
+
excluded if it is not present.
|
68 |
+
'image': The image as a torch tensor in 3xHxW format,
|
69 |
+
already transformed for input to the model.
|
70 |
+
'original_size': (tuple(int, int)) The original size of
|
71 |
+
the image before transformation, as (H, W).
|
72 |
+
'point_coords': (torch.Tensor) Batched point prompts for
|
73 |
+
this image, with shape BxNx2. Already transformed to the
|
74 |
+
input frame of the model.
|
75 |
+
'point_labels': (torch.Tensor) Batched labels for point prompts,
|
76 |
+
with shape BxN.
|
77 |
+
'boxes': (torch.Tensor) Batched box inputs, with shape Bx4.
|
78 |
+
Already transformed to the input frame of the model.
|
79 |
+
'mask_inputs': (torch.Tensor) Batched mask inputs to the model,
|
80 |
+
in the form Bx1xHxW.
|
81 |
+
multimask_output (bool): Whether the model should predict multiple
|
82 |
+
disambiguating masks, or return a single mask.
|
83 |
+
|
84 |
+
Returns:
|
85 |
+
(list(dict)): A list over input images, where each element is
|
86 |
+
as dictionary with the following keys.
|
87 |
+
'masks': (torch.Tensor) Batched binary mask predictions,
|
88 |
+
with shape BxCxHxW, where B is the number of input promts,
|
89 |
+
C is determiend by multimask_output, and (H, W) is the
|
90 |
+
original size of the image.
|
91 |
+
'iou_predictions': (torch.Tensor) The model's predictions
|
92 |
+
of mask quality, in shape BxC.
|
93 |
+
'low_res_logits': (torch.Tensor) Low resolution logits with
|
94 |
+
shape BxCxHxW, where H=W=256. Can be passed as mask input
|
95 |
+
to subsequent iterations of prediction.
|
96 |
+
"""
|
97 |
+
input_images = torch.stack([self.preprocess(x["image"]) for x in batched_input], dim=0)
|
98 |
+
image_embeddings = self.image_encoder(input_images)
|
99 |
+
|
100 |
+
outputs = []
|
101 |
+
for image_record, curr_embedding in zip(batched_input, image_embeddings):
|
102 |
+
if "point_coords" in image_record:
|
103 |
+
points = (image_record["point_coords"], image_record["point_labels"])
|
104 |
+
else:
|
105 |
+
points = None
|
106 |
+
sparse_embeddings, dense_embeddings = self.prompt_encoder(
|
107 |
+
points=points,
|
108 |
+
boxes=image_record.get("boxes", None),
|
109 |
+
masks=image_record.get("mask_inputs", None),
|
110 |
+
)
|
111 |
+
low_res_masks, iou_predictions = self.mask_decoder(
|
112 |
+
image_embeddings=curr_embedding.unsqueeze(0),
|
113 |
+
image_pe=self.prompt_encoder.get_dense_pe(),
|
114 |
+
sparse_prompt_embeddings=sparse_embeddings,
|
115 |
+
dense_prompt_embeddings=dense_embeddings,
|
116 |
+
multimask_output=multimask_output,
|
117 |
+
)
|
118 |
+
masks = self.postprocess_masks(
|
119 |
+
low_res_masks,
|
120 |
+
input_size=image_record["image"].shape[-2:],
|
121 |
+
original_size=image_record["original_size"],
|
122 |
+
)
|
123 |
+
masks = masks > self.mask_threshold
|
124 |
+
outputs.append(
|
125 |
+
{
|
126 |
+
"masks": masks,
|
127 |
+
"iou_predictions": iou_predictions,
|
128 |
+
"low_res_logits": low_res_masks,
|
129 |
+
}
|
130 |
+
)
|
131 |
+
return outputs
|
132 |
+
|
133 |
+
def postprocess_masks(
|
134 |
+
self,
|
135 |
+
masks: torch.Tensor,
|
136 |
+
input_size: Tuple[int, ...],
|
137 |
+
original_size: Tuple[int, ...],
|
138 |
+
) -> torch.Tensor:
|
139 |
+
"""
|
140 |
+
Remove padding and upscale masks to the original image size.
|
141 |
+
|
142 |
+
Arguments:
|
143 |
+
masks (torch.Tensor): Batched masks from the mask_decoder,
|
144 |
+
in BxCxHxW format.
|
145 |
+
input_size (tuple(int, int)): The size of the image input to the
|
146 |
+
model, in (H, W) format. Used to remove padding.
|
147 |
+
original_size (tuple(int, int)): The original size of the image
|
148 |
+
before resizing for input to the model, in (H, W) format.
|
149 |
+
|
150 |
+
Returns:
|
151 |
+
(torch.Tensor): Batched masks in BxCxHxW format, where (H, W)
|
152 |
+
is given by original_size.
|
153 |
+
"""
|
154 |
+
masks = F.interpolate(
|
155 |
+
masks,
|
156 |
+
(self.image_encoder.img_size, self.image_encoder.img_size),
|
157 |
+
mode="bilinear",
|
158 |
+
align_corners=False,
|
159 |
+
)
|
160 |
+
masks = masks[..., : input_size[0], : input_size[1]]
|
161 |
+
masks = F.interpolate(masks, original_size, mode="bilinear", align_corners=False)
|
162 |
+
return masks
|
163 |
+
|
164 |
+
def preprocess(self, x: torch.Tensor) -> torch.Tensor:
|
165 |
+
"""Normalize pixel values and pad to a square input."""
|
166 |
+
# Normalize colors
|
167 |
+
x = (x - self.pixel_mean) / self.pixel_std
|
168 |
+
|
169 |
+
# Pad
|
170 |
+
h, w = x.shape[-2:]
|
171 |
+
padh = self.image_encoder.img_size - h
|
172 |
+
padw = self.image_encoder.img_size - w
|
173 |
+
x = F.pad(x, (0, padw, 0, padh))
|
174 |
+
return x
|
segment_anything/modeling/transformer.py
ADDED
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
from torch import Tensor, nn
|
9 |
+
|
10 |
+
import math
|
11 |
+
from typing import Tuple, Type
|
12 |
+
|
13 |
+
from .common import MLPBlock
|
14 |
+
|
15 |
+
|
16 |
+
class TwoWayTransformer(nn.Module):
|
17 |
+
def __init__(
|
18 |
+
self,
|
19 |
+
depth: int,
|
20 |
+
embedding_dim: int,
|
21 |
+
num_heads: int,
|
22 |
+
mlp_dim: int,
|
23 |
+
activation: Type[nn.Module] = nn.ReLU,
|
24 |
+
attention_downsample_rate: int = 2,
|
25 |
+
) -> None:
|
26 |
+
"""
|
27 |
+
A transformer decoder that attends to an input image using
|
28 |
+
queries whose positional embedding is supplied.
|
29 |
+
|
30 |
+
Args:
|
31 |
+
depth (int): number of layers in the transformer
|
32 |
+
embedding_dim (int): the channel dimension for the input embeddings
|
33 |
+
num_heads (int): the number of heads for multihead attention. Must
|
34 |
+
divide embedding_dim
|
35 |
+
mlp_dim (int): the channel dimension internal to the MLP block
|
36 |
+
activation (nn.Module): the activation to use in the MLP block
|
37 |
+
"""
|
38 |
+
super().__init__()
|
39 |
+
self.depth = depth
|
40 |
+
self.embedding_dim = embedding_dim
|
41 |
+
self.num_heads = num_heads
|
42 |
+
self.mlp_dim = mlp_dim
|
43 |
+
self.layers = nn.ModuleList()
|
44 |
+
|
45 |
+
for i in range(depth):
|
46 |
+
self.layers.append(
|
47 |
+
TwoWayAttentionBlock(
|
48 |
+
embedding_dim=embedding_dim,
|
49 |
+
num_heads=num_heads,
|
50 |
+
mlp_dim=mlp_dim,
|
51 |
+
activation=activation,
|
52 |
+
attention_downsample_rate=attention_downsample_rate,
|
53 |
+
skip_first_layer_pe=(i == 0),
|
54 |
+
)
|
55 |
+
)
|
56 |
+
|
57 |
+
self.final_attn_token_to_image = Attention(
|
58 |
+
embedding_dim, num_heads, downsample_rate=attention_downsample_rate
|
59 |
+
)
|
60 |
+
self.norm_final_attn = nn.LayerNorm(embedding_dim)
|
61 |
+
|
62 |
+
def forward(
|
63 |
+
self,
|
64 |
+
image_embedding: Tensor,
|
65 |
+
image_pe: Tensor,
|
66 |
+
point_embedding: Tensor,
|
67 |
+
) -> Tuple[Tensor, Tensor]:
|
68 |
+
"""
|
69 |
+
Args:
|
70 |
+
image_embedding (torch.Tensor): image to attend to. Should be shape
|
71 |
+
B x embedding_dim x h x w for any h and w.
|
72 |
+
image_pe (torch.Tensor): the positional encoding to add to the image. Must
|
73 |
+
have the same shape as image_embedding.
|
74 |
+
point_embedding (torch.Tensor): the embedding to add to the query points.
|
75 |
+
Must have shape B x N_points x embedding_dim for any N_points.
|
76 |
+
|
77 |
+
Returns:
|
78 |
+
torch.Tensor: the processed point_embedding
|
79 |
+
torch.Tensor: the processed image_embedding
|
80 |
+
"""
|
81 |
+
# BxCxHxW -> BxHWxC == B x N_image_tokens x C
|
82 |
+
bs, c, h, w = image_embedding.shape
|
83 |
+
image_embedding = image_embedding.flatten(2).permute(0, 2, 1)
|
84 |
+
image_pe = image_pe.flatten(2).permute(0, 2, 1)
|
85 |
+
|
86 |
+
# Prepare queries
|
87 |
+
queries = point_embedding
|
88 |
+
keys = image_embedding
|
89 |
+
|
90 |
+
# Apply transformer blocks and final layernorm
|
91 |
+
for layer in self.layers:
|
92 |
+
queries, keys = layer(
|
93 |
+
queries=queries,
|
94 |
+
keys=keys,
|
95 |
+
query_pe=point_embedding,
|
96 |
+
key_pe=image_pe,
|
97 |
+
)
|
98 |
+
|
99 |
+
# Apply the final attenion layer from the points to the image
|
100 |
+
q = queries + point_embedding
|
101 |
+
k = keys + image_pe
|
102 |
+
attn_out = self.final_attn_token_to_image(q=q, k=k, v=keys)
|
103 |
+
queries = queries + attn_out
|
104 |
+
queries = self.norm_final_attn(queries)
|
105 |
+
|
106 |
+
return queries, keys
|
107 |
+
|
108 |
+
|
109 |
+
class TwoWayAttentionBlock(nn.Module):
|
110 |
+
def __init__(
|
111 |
+
self,
|
112 |
+
embedding_dim: int,
|
113 |
+
num_heads: int,
|
114 |
+
mlp_dim: int = 2048,
|
115 |
+
activation: Type[nn.Module] = nn.ReLU,
|
116 |
+
attention_downsample_rate: int = 2,
|
117 |
+
skip_first_layer_pe: bool = False,
|
118 |
+
) -> None:
|
119 |
+
"""
|
120 |
+
A transformer block with four layers: (1) self-attention of sparse
|
121 |
+
inputs, (2) cross attention of sparse inputs to dense inputs, (3) mlp
|
122 |
+
block on sparse inputs, and (4) cross attention of dense inputs to sparse
|
123 |
+
inputs.
|
124 |
+
|
125 |
+
Arguments:
|
126 |
+
embedding_dim (int): the channel dimension of the embeddings
|
127 |
+
num_heads (int): the number of heads in the attention layers
|
128 |
+
mlp_dim (int): the hidden dimension of the mlp block
|
129 |
+
activation (nn.Module): the activation of the mlp block
|
130 |
+
skip_first_layer_pe (bool): skip the PE on the first layer
|
131 |
+
"""
|
132 |
+
super().__init__()
|
133 |
+
self.self_attn = Attention(embedding_dim, num_heads)
|
134 |
+
self.norm1 = nn.LayerNorm(embedding_dim)
|
135 |
+
|
136 |
+
self.cross_attn_token_to_image = Attention(
|
137 |
+
embedding_dim, num_heads, downsample_rate=attention_downsample_rate
|
138 |
+
)
|
139 |
+
self.norm2 = nn.LayerNorm(embedding_dim)
|
140 |
+
|
141 |
+
self.mlp = MLPBlock(embedding_dim, mlp_dim, activation)
|
142 |
+
self.norm3 = nn.LayerNorm(embedding_dim)
|
143 |
+
|
144 |
+
self.norm4 = nn.LayerNorm(embedding_dim)
|
145 |
+
self.cross_attn_image_to_token = Attention(
|
146 |
+
embedding_dim, num_heads, downsample_rate=attention_downsample_rate
|
147 |
+
)
|
148 |
+
|
149 |
+
self.skip_first_layer_pe = skip_first_layer_pe
|
150 |
+
|
151 |
+
def forward(
|
152 |
+
self, queries: Tensor, keys: Tensor, query_pe: Tensor, key_pe: Tensor
|
153 |
+
) -> Tuple[Tensor, Tensor]:
|
154 |
+
# Self attention block
|
155 |
+
if self.skip_first_layer_pe:
|
156 |
+
queries = self.self_attn(q=queries, k=queries, v=queries)
|
157 |
+
else:
|
158 |
+
q = queries + query_pe
|
159 |
+
attn_out = self.self_attn(q=q, k=q, v=queries)
|
160 |
+
queries = queries + attn_out
|
161 |
+
queries = self.norm1(queries)
|
162 |
+
|
163 |
+
# Cross attention block, tokens attending to image embedding
|
164 |
+
q = queries + query_pe
|
165 |
+
k = keys + key_pe
|
166 |
+
attn_out = self.cross_attn_token_to_image(q=q, k=k, v=keys)
|
167 |
+
queries = queries + attn_out
|
168 |
+
queries = self.norm2(queries)
|
169 |
+
|
170 |
+
# MLP block
|
171 |
+
mlp_out = self.mlp(queries)
|
172 |
+
queries = queries + mlp_out
|
173 |
+
queries = self.norm3(queries)
|
174 |
+
|
175 |
+
# Cross attention block, image embedding attending to tokens
|
176 |
+
q = queries + query_pe
|
177 |
+
k = keys + key_pe
|
178 |
+
attn_out = self.cross_attn_image_to_token(q=k, k=q, v=queries)
|
179 |
+
keys = keys + attn_out
|
180 |
+
keys = self.norm4(keys)
|
181 |
+
|
182 |
+
return queries, keys
|
183 |
+
|
184 |
+
|
185 |
+
class Attention(nn.Module):
|
186 |
+
"""
|
187 |
+
An attention layer that allows for downscaling the size of the embedding
|
188 |
+
after projection to queries, keys, and values.
|
189 |
+
"""
|
190 |
+
|
191 |
+
def __init__(
|
192 |
+
self,
|
193 |
+
embedding_dim: int,
|
194 |
+
num_heads: int,
|
195 |
+
downsample_rate: int = 1,
|
196 |
+
) -> None:
|
197 |
+
super().__init__()
|
198 |
+
self.embedding_dim = embedding_dim
|
199 |
+
self.internal_dim = embedding_dim // downsample_rate
|
200 |
+
self.num_heads = num_heads
|
201 |
+
assert self.internal_dim % num_heads == 0, "num_heads must divide embedding_dim."
|
202 |
+
|
203 |
+
self.q_proj = nn.Linear(embedding_dim, self.internal_dim)
|
204 |
+
self.k_proj = nn.Linear(embedding_dim, self.internal_dim)
|
205 |
+
self.v_proj = nn.Linear(embedding_dim, self.internal_dim)
|
206 |
+
self.out_proj = nn.Linear(self.internal_dim, embedding_dim)
|
207 |
+
|
208 |
+
def _separate_heads(self, x: Tensor, num_heads: int) -> Tensor:
|
209 |
+
b, n, c = x.shape
|
210 |
+
x = x.reshape(b, n, num_heads, c // num_heads)
|
211 |
+
return x.transpose(1, 2) # B x N_heads x N_tokens x C_per_head
|
212 |
+
|
213 |
+
def _recombine_heads(self, x: Tensor) -> Tensor:
|
214 |
+
b, n_heads, n_tokens, c_per_head = x.shape
|
215 |
+
x = x.transpose(1, 2)
|
216 |
+
return x.reshape(b, n_tokens, n_heads * c_per_head) # B x N_tokens x C
|
217 |
+
|
218 |
+
def forward(self, q: Tensor, k: Tensor, v: Tensor) -> Tensor:
|
219 |
+
# Input projections
|
220 |
+
q = self.q_proj(q)
|
221 |
+
k = self.k_proj(k)
|
222 |
+
v = self.v_proj(v)
|
223 |
+
|
224 |
+
# Separate into heads
|
225 |
+
q = self._separate_heads(q, self.num_heads)
|
226 |
+
k = self._separate_heads(k, self.num_heads)
|
227 |
+
v = self._separate_heads(v, self.num_heads)
|
228 |
+
|
229 |
+
# Attention
|
230 |
+
_, _, _, c_per_head = q.shape
|
231 |
+
attn = q @ k.permute(0, 1, 3, 2) # B x N_heads x N_tokens x N_tokens
|
232 |
+
attn = attn / math.sqrt(c_per_head)
|
233 |
+
attn = torch.softmax(attn, dim=-1)
|
234 |
+
|
235 |
+
# Get output
|
236 |
+
out = attn @ v
|
237 |
+
out = self._recombine_heads(out)
|
238 |
+
out = self.out_proj(out)
|
239 |
+
|
240 |
+
return out
|
segment_anything/predictor.py
ADDED
@@ -0,0 +1,269 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import numpy as np
|
8 |
+
import torch
|
9 |
+
|
10 |
+
from segment_anything.modeling import Sam
|
11 |
+
|
12 |
+
from typing import Optional, Tuple
|
13 |
+
|
14 |
+
from .utils.transforms import ResizeLongestSide
|
15 |
+
|
16 |
+
|
17 |
+
class SamPredictor:
|
18 |
+
def __init__(
|
19 |
+
self,
|
20 |
+
sam_model: Sam,
|
21 |
+
) -> None:
|
22 |
+
"""
|
23 |
+
Uses SAM to calculate the image embedding for an image, and then
|
24 |
+
allow repeated, efficient mask prediction given prompts.
|
25 |
+
|
26 |
+
Arguments:
|
27 |
+
sam_model (Sam): The model to use for mask prediction.
|
28 |
+
"""
|
29 |
+
super().__init__()
|
30 |
+
self.model = sam_model
|
31 |
+
self.transform = ResizeLongestSide(sam_model.image_encoder.img_size)
|
32 |
+
self.reset_image()
|
33 |
+
|
34 |
+
def set_image(
|
35 |
+
self,
|
36 |
+
image: np.ndarray,
|
37 |
+
image_format: str = "RGB",
|
38 |
+
) -> None:
|
39 |
+
"""
|
40 |
+
Calculates the image embeddings for the provided image, allowing
|
41 |
+
masks to be predicted with the 'predict' method.
|
42 |
+
|
43 |
+
Arguments:
|
44 |
+
image (np.ndarray): The image for calculating masks. Expects an
|
45 |
+
image in HWC uint8 format, with pixel values in [0, 255].
|
46 |
+
image_format (str): The color format of the image, in ['RGB', 'BGR'].
|
47 |
+
"""
|
48 |
+
assert image_format in [
|
49 |
+
"RGB",
|
50 |
+
"BGR",
|
51 |
+
], f"image_format must be in ['RGB', 'BGR'], is {image_format}."
|
52 |
+
if image_format != self.model.image_format:
|
53 |
+
image = image[..., ::-1]
|
54 |
+
|
55 |
+
# Transform the image to the form expected by the model
|
56 |
+
input_image = self.transform.apply_image(image)
|
57 |
+
input_image_torch = torch.as_tensor(input_image, device=self.device)
|
58 |
+
input_image_torch = input_image_torch.permute(2, 0, 1).contiguous()[None, :, :, :]
|
59 |
+
|
60 |
+
self.set_torch_image(input_image_torch, image.shape[:2])
|
61 |
+
|
62 |
+
@torch.no_grad()
|
63 |
+
def set_torch_image(
|
64 |
+
self,
|
65 |
+
transformed_image: torch.Tensor,
|
66 |
+
original_image_size: Tuple[int, ...],
|
67 |
+
) -> None:
|
68 |
+
"""
|
69 |
+
Calculates the image embeddings for the provided image, allowing
|
70 |
+
masks to be predicted with the 'predict' method. Expects the input
|
71 |
+
image to be already transformed to the format expected by the model.
|
72 |
+
|
73 |
+
Arguments:
|
74 |
+
transformed_image (torch.Tensor): The input image, with shape
|
75 |
+
1x3xHxW, which has been transformed with ResizeLongestSide.
|
76 |
+
original_image_size (tuple(int, int)): The size of the image
|
77 |
+
before transformation, in (H, W) format.
|
78 |
+
"""
|
79 |
+
assert (
|
80 |
+
len(transformed_image.shape) == 4
|
81 |
+
and transformed_image.shape[1] == 3
|
82 |
+
and max(*transformed_image.shape[2:]) == self.model.image_encoder.img_size
|
83 |
+
), f"set_torch_image input must be BCHW with long side {self.model.image_encoder.img_size}."
|
84 |
+
self.reset_image()
|
85 |
+
|
86 |
+
self.original_size = original_image_size
|
87 |
+
self.input_size = tuple(transformed_image.shape[-2:])
|
88 |
+
input_image = self.model.preprocess(transformed_image)
|
89 |
+
self.features = self.model.image_encoder(input_image)
|
90 |
+
self.is_image_set = True
|
91 |
+
|
92 |
+
def predict(
|
93 |
+
self,
|
94 |
+
point_coords: Optional[np.ndarray] = None,
|
95 |
+
point_labels: Optional[np.ndarray] = None,
|
96 |
+
box: Optional[np.ndarray] = None,
|
97 |
+
mask_input: Optional[np.ndarray] = None,
|
98 |
+
multimask_output: bool = True,
|
99 |
+
return_logits: bool = False,
|
100 |
+
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
|
101 |
+
"""
|
102 |
+
Predict masks for the given input prompts, using the currently set image.
|
103 |
+
|
104 |
+
Arguments:
|
105 |
+
point_coords (np.ndarray or None): A Nx2 array of point prompts to the
|
106 |
+
model. Each point is in (X,Y) in pixels.
|
107 |
+
point_labels (np.ndarray or None): A length N array of labels for the
|
108 |
+
point prompts. 1 indicates a foreground point and 0 indicates a
|
109 |
+
background point.
|
110 |
+
box (np.ndarray or None): A length 4 array given a box prompt to the
|
111 |
+
model, in XYXY format.
|
112 |
+
mask_input (np.ndarray): A low resolution mask input to the model, typically
|
113 |
+
coming from a previous prediction iteration. Has form 1xHxW, where
|
114 |
+
for SAM, H=W=256.
|
115 |
+
multimask_output (bool): If true, the model will return three masks.
|
116 |
+
For ambiguous input prompts (such as a single click), this will often
|
117 |
+
produce better masks than a single prediction. If only a single
|
118 |
+
mask is needed, the model's predicted quality score can be used
|
119 |
+
to select the best mask. For non-ambiguous prompts, such as multiple
|
120 |
+
input prompts, multimask_output=False can give better results.
|
121 |
+
return_logits (bool): If true, returns un-thresholded masks logits
|
122 |
+
instead of a binary mask.
|
123 |
+
|
124 |
+
Returns:
|
125 |
+
(np.ndarray): The output masks in CxHxW format, where C is the
|
126 |
+
number of masks, and (H, W) is the original image size.
|
127 |
+
(np.ndarray): An array of length C containing the model's
|
128 |
+
predictions for the quality of each mask.
|
129 |
+
(np.ndarray): An array of shape CxHxW, where C is the number
|
130 |
+
of masks and H=W=256. These low resolution logits can be passed to
|
131 |
+
a subsequent iteration as mask input.
|
132 |
+
"""
|
133 |
+
if not self.is_image_set:
|
134 |
+
raise RuntimeError("An image must be set with .set_image(...) before mask prediction.")
|
135 |
+
|
136 |
+
# Transform input prompts
|
137 |
+
coords_torch, labels_torch, box_torch, mask_input_torch = None, None, None, None
|
138 |
+
if point_coords is not None:
|
139 |
+
assert (
|
140 |
+
point_labels is not None
|
141 |
+
), "point_labels must be supplied if point_coords is supplied."
|
142 |
+
point_coords = self.transform.apply_coords(point_coords, self.original_size)
|
143 |
+
coords_torch = torch.as_tensor(point_coords, dtype=torch.float, device=self.device)
|
144 |
+
labels_torch = torch.as_tensor(point_labels, dtype=torch.int, device=self.device)
|
145 |
+
coords_torch, labels_torch = coords_torch[None, :, :], labels_torch[None, :]
|
146 |
+
if box is not None:
|
147 |
+
box = self.transform.apply_boxes(box, self.original_size)
|
148 |
+
box_torch = torch.as_tensor(box, dtype=torch.float, device=self.device)
|
149 |
+
box_torch = box_torch[None, :]
|
150 |
+
if mask_input is not None:
|
151 |
+
mask_input_torch = torch.as_tensor(mask_input, dtype=torch.float, device=self.device)
|
152 |
+
mask_input_torch = mask_input_torch[None, :, :, :]
|
153 |
+
|
154 |
+
masks, iou_predictions, low_res_masks = self.predict_torch(
|
155 |
+
coords_torch,
|
156 |
+
labels_torch,
|
157 |
+
box_torch,
|
158 |
+
mask_input_torch,
|
159 |
+
multimask_output,
|
160 |
+
return_logits=return_logits,
|
161 |
+
)
|
162 |
+
|
163 |
+
masks = masks[0].detach().cpu().numpy()
|
164 |
+
iou_predictions = iou_predictions[0].detach().cpu().numpy()
|
165 |
+
low_res_masks = low_res_masks[0].detach().cpu().numpy()
|
166 |
+
return masks, iou_predictions, low_res_masks
|
167 |
+
|
168 |
+
@torch.no_grad()
|
169 |
+
def predict_torch(
|
170 |
+
self,
|
171 |
+
point_coords: Optional[torch.Tensor],
|
172 |
+
point_labels: Optional[torch.Tensor],
|
173 |
+
boxes: Optional[torch.Tensor] = None,
|
174 |
+
mask_input: Optional[torch.Tensor] = None,
|
175 |
+
multimask_output: bool = True,
|
176 |
+
return_logits: bool = False,
|
177 |
+
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
|
178 |
+
"""
|
179 |
+
Predict masks for the given input prompts, using the currently set image.
|
180 |
+
Input prompts are batched torch tensors and are expected to already be
|
181 |
+
transformed to the input frame using ResizeLongestSide.
|
182 |
+
|
183 |
+
Arguments:
|
184 |
+
point_coords (torch.Tensor or None): A BxNx2 array of point prompts to the
|
185 |
+
model. Each point is in (X,Y) in pixels.
|
186 |
+
point_labels (torch.Tensor or None): A BxN array of labels for the
|
187 |
+
point prompts. 1 indicates a foreground point and 0 indicates a
|
188 |
+
background point.
|
189 |
+
box (np.ndarray or None): A Bx4 array given a box prompt to the
|
190 |
+
model, in XYXY format.
|
191 |
+
mask_input (np.ndarray): A low resolution mask input to the model, typically
|
192 |
+
coming from a previous prediction iteration. Has form Bx1xHxW, where
|
193 |
+
for SAM, H=W=256. Masks returned by a previous iteration of the
|
194 |
+
predict method do not need further transformation.
|
195 |
+
multimask_output (bool): If true, the model will return three masks.
|
196 |
+
For ambiguous input prompts (such as a single click), this will often
|
197 |
+
produce better masks than a single prediction. If only a single
|
198 |
+
mask is needed, the model's predicted quality score can be used
|
199 |
+
to select the best mask. For non-ambiguous prompts, such as multiple
|
200 |
+
input prompts, multimask_output=False can give better results.
|
201 |
+
return_logits (bool): If true, returns un-thresholded masks logits
|
202 |
+
instead of a binary mask.
|
203 |
+
|
204 |
+
Returns:
|
205 |
+
(torch.Tensor): The output masks in BxCxHxW format, where C is the
|
206 |
+
number of masks, and (H, W) is the original image size.
|
207 |
+
(torch.Tensor): An array of shape BxC containing the model's
|
208 |
+
predictions for the quality of each mask.
|
209 |
+
(torch.Tensor): An array of shape BxCxHxW, where C is the number
|
210 |
+
of masks and H=W=256. These low res logits can be passed to
|
211 |
+
a subsequent iteration as mask input.
|
212 |
+
"""
|
213 |
+
if not self.is_image_set:
|
214 |
+
raise RuntimeError("An image must be set with .set_image(...) before mask prediction.")
|
215 |
+
|
216 |
+
if point_coords is not None:
|
217 |
+
points = (point_coords, point_labels)
|
218 |
+
else:
|
219 |
+
points = None
|
220 |
+
|
221 |
+
# Embed prompts
|
222 |
+
sparse_embeddings, dense_embeddings = self.model.prompt_encoder(
|
223 |
+
points=points,
|
224 |
+
boxes=boxes,
|
225 |
+
masks=mask_input,
|
226 |
+
)
|
227 |
+
|
228 |
+
# Predict masks
|
229 |
+
low_res_masks, iou_predictions = self.model.mask_decoder(
|
230 |
+
image_embeddings=self.features,
|
231 |
+
image_pe=self.model.prompt_encoder.get_dense_pe(),
|
232 |
+
sparse_prompt_embeddings=sparse_embeddings,
|
233 |
+
dense_prompt_embeddings=dense_embeddings,
|
234 |
+
multimask_output=multimask_output,
|
235 |
+
)
|
236 |
+
|
237 |
+
# Upscale the masks to the original image resolution
|
238 |
+
masks = self.model.postprocess_masks(low_res_masks, self.input_size, self.original_size)
|
239 |
+
|
240 |
+
if not return_logits:
|
241 |
+
masks = masks > self.model.mask_threshold
|
242 |
+
|
243 |
+
return masks, iou_predictions, low_res_masks
|
244 |
+
|
245 |
+
def get_image_embedding(self) -> torch.Tensor:
|
246 |
+
"""
|
247 |
+
Returns the image embeddings for the currently set image, with
|
248 |
+
shape 1xCxHxW, where C is the embedding dimension and (H,W) are
|
249 |
+
the embedding spatial dimension of SAM (typically C=256, H=W=64).
|
250 |
+
"""
|
251 |
+
if not self.is_image_set:
|
252 |
+
raise RuntimeError(
|
253 |
+
"An image must be set with .set_image(...) to generate an embedding."
|
254 |
+
)
|
255 |
+
assert self.features is not None, "Features must exist if an image has been set."
|
256 |
+
return self.features
|
257 |
+
|
258 |
+
@property
|
259 |
+
def device(self) -> torch.device:
|
260 |
+
return self.model.device
|
261 |
+
|
262 |
+
def reset_image(self) -> None:
|
263 |
+
"""Resets the currently set image."""
|
264 |
+
self.is_image_set = False
|
265 |
+
self.features = None
|
266 |
+
self.orig_h = None
|
267 |
+
self.orig_w = None
|
268 |
+
self.input_h = None
|
269 |
+
self.input_w = None
|
segment_anything/utils/__init__.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
segment_anything/utils/amg.py
ADDED
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import numpy as np
|
8 |
+
import torch
|
9 |
+
|
10 |
+
import math
|
11 |
+
from copy import deepcopy
|
12 |
+
from itertools import product
|
13 |
+
from typing import Any, Dict, Generator, ItemsView, List, Tuple
|
14 |
+
|
15 |
+
|
16 |
+
class MaskData:
|
17 |
+
"""
|
18 |
+
A structure for storing masks and their related data in batched format.
|
19 |
+
Implements basic filtering and concatenation.
|
20 |
+
"""
|
21 |
+
|
22 |
+
def __init__(self, **kwargs) -> None:
|
23 |
+
for v in kwargs.values():
|
24 |
+
assert isinstance(
|
25 |
+
v, (list, np.ndarray, torch.Tensor)
|
26 |
+
), "MaskData only supports list, numpy arrays, and torch tensors."
|
27 |
+
self._stats = dict(**kwargs)
|
28 |
+
|
29 |
+
def __setitem__(self, key: str, item: Any) -> None:
|
30 |
+
assert isinstance(
|
31 |
+
item, (list, np.ndarray, torch.Tensor)
|
32 |
+
), "MaskData only supports list, numpy arrays, and torch tensors."
|
33 |
+
self._stats[key] = item
|
34 |
+
|
35 |
+
def __delitem__(self, key: str) -> None:
|
36 |
+
del self._stats[key]
|
37 |
+
|
38 |
+
def __getitem__(self, key: str) -> Any:
|
39 |
+
return self._stats[key]
|
40 |
+
|
41 |
+
def items(self) -> ItemsView[str, Any]:
|
42 |
+
return self._stats.items()
|
43 |
+
|
44 |
+
def filter(self, keep: torch.Tensor) -> None:
|
45 |
+
for k, v in self._stats.items():
|
46 |
+
if v is None:
|
47 |
+
self._stats[k] = None
|
48 |
+
elif isinstance(v, torch.Tensor):
|
49 |
+
self._stats[k] = v[torch.as_tensor(keep, device=v.device)]
|
50 |
+
elif isinstance(v, np.ndarray):
|
51 |
+
self._stats[k] = v[keep.detach().cpu().numpy()]
|
52 |
+
elif isinstance(v, list) and keep.dtype == torch.bool:
|
53 |
+
self._stats[k] = [a for i, a in enumerate(v) if keep[i]]
|
54 |
+
elif isinstance(v, list):
|
55 |
+
self._stats[k] = [v[i] for i in keep]
|
56 |
+
else:
|
57 |
+
raise TypeError(f"MaskData key {k} has an unsupported type {type(v)}.")
|
58 |
+
|
59 |
+
def cat(self, new_stats: "MaskData") -> None:
|
60 |
+
for k, v in new_stats.items():
|
61 |
+
if k not in self._stats or self._stats[k] is None:
|
62 |
+
self._stats[k] = deepcopy(v)
|
63 |
+
elif isinstance(v, torch.Tensor):
|
64 |
+
self._stats[k] = torch.cat([self._stats[k], v], dim=0)
|
65 |
+
elif isinstance(v, np.ndarray):
|
66 |
+
self._stats[k] = np.concatenate([self._stats[k], v], axis=0)
|
67 |
+
elif isinstance(v, list):
|
68 |
+
self._stats[k] = self._stats[k] + deepcopy(v)
|
69 |
+
else:
|
70 |
+
raise TypeError(f"MaskData key {k} has an unsupported type {type(v)}.")
|
71 |
+
|
72 |
+
def to_numpy(self) -> None:
|
73 |
+
for k, v in self._stats.items():
|
74 |
+
if isinstance(v, torch.Tensor):
|
75 |
+
self._stats[k] = v.detach().cpu().numpy()
|
76 |
+
|
77 |
+
|
78 |
+
def is_box_near_crop_edge(
|
79 |
+
boxes: torch.Tensor, crop_box: List[int], orig_box: List[int], atol: float = 20.0
|
80 |
+
) -> torch.Tensor:
|
81 |
+
"""Filter masks at the edge of a crop, but not at the edge of the original image."""
|
82 |
+
crop_box_torch = torch.as_tensor(crop_box, dtype=torch.float, device=boxes.device)
|
83 |
+
orig_box_torch = torch.as_tensor(orig_box, dtype=torch.float, device=boxes.device)
|
84 |
+
boxes = uncrop_boxes_xyxy(boxes, crop_box).float()
|
85 |
+
near_crop_edge = torch.isclose(boxes, crop_box_torch[None, :], atol=atol, rtol=0)
|
86 |
+
near_image_edge = torch.isclose(boxes, orig_box_torch[None, :], atol=atol, rtol=0)
|
87 |
+
near_crop_edge = torch.logical_and(near_crop_edge, ~near_image_edge)
|
88 |
+
return torch.any(near_crop_edge, dim=1)
|
89 |
+
|
90 |
+
|
91 |
+
def box_xyxy_to_xywh(box_xyxy: torch.Tensor) -> torch.Tensor:
|
92 |
+
box_xywh = deepcopy(box_xyxy)
|
93 |
+
box_xywh[2] = box_xywh[2] - box_xywh[0]
|
94 |
+
box_xywh[3] = box_xywh[3] - box_xywh[1]
|
95 |
+
return box_xywh
|
96 |
+
|
97 |
+
|
98 |
+
def batch_iterator(batch_size: int, *args) -> Generator[List[Any], None, None]:
|
99 |
+
assert len(args) > 0 and all(
|
100 |
+
len(a) == len(args[0]) for a in args
|
101 |
+
), "Batched iteration must have inputs of all the same size."
|
102 |
+
n_batches = len(args[0]) // batch_size + int(len(args[0]) % batch_size != 0)
|
103 |
+
for b in range(n_batches):
|
104 |
+
yield [arg[b * batch_size : (b + 1) * batch_size] for arg in args]
|
105 |
+
|
106 |
+
|
107 |
+
def mask_to_rle_pytorch(tensor: torch.Tensor) -> List[Dict[str, Any]]:
|
108 |
+
"""
|
109 |
+
Encodes masks to an uncompressed RLE, in the format expected by
|
110 |
+
pycoco tools.
|
111 |
+
"""
|
112 |
+
# Put in fortran order and flatten h,w
|
113 |
+
b, h, w = tensor.shape
|
114 |
+
tensor = tensor.permute(0, 2, 1).flatten(1)
|
115 |
+
|
116 |
+
# Compute change indices
|
117 |
+
diff = tensor[:, 1:] ^ tensor[:, :-1]
|
118 |
+
change_indices = diff.nonzero()
|
119 |
+
|
120 |
+
# Encode run length
|
121 |
+
out = []
|
122 |
+
for i in range(b):
|
123 |
+
cur_idxs = change_indices[change_indices[:, 0] == i, 1]
|
124 |
+
cur_idxs = torch.cat(
|
125 |
+
[
|
126 |
+
torch.tensor([0], dtype=cur_idxs.dtype, device=cur_idxs.device),
|
127 |
+
cur_idxs + 1,
|
128 |
+
torch.tensor([h * w], dtype=cur_idxs.dtype, device=cur_idxs.device),
|
129 |
+
]
|
130 |
+
)
|
131 |
+
btw_idxs = cur_idxs[1:] - cur_idxs[:-1]
|
132 |
+
counts = [] if tensor[i, 0] == 0 else [0]
|
133 |
+
counts.extend(btw_idxs.detach().cpu().tolist())
|
134 |
+
out.append({"size": [h, w], "counts": counts})
|
135 |
+
return out
|
136 |
+
|
137 |
+
|
138 |
+
def rle_to_mask(rle: Dict[str, Any]) -> np.ndarray:
|
139 |
+
"""Compute a binary mask from an uncompressed RLE."""
|
140 |
+
h, w = rle["size"]
|
141 |
+
mask = np.empty(h * w, dtype=bool)
|
142 |
+
idx = 0
|
143 |
+
parity = False
|
144 |
+
for count in rle["counts"]:
|
145 |
+
mask[idx : idx + count] = parity
|
146 |
+
idx += count
|
147 |
+
parity ^= True
|
148 |
+
mask = mask.reshape(w, h)
|
149 |
+
return mask.transpose() # Put in C order
|
150 |
+
|
151 |
+
|
152 |
+
def area_from_rle(rle: Dict[str, Any]) -> int:
|
153 |
+
return sum(rle["counts"][1::2])
|
154 |
+
|
155 |
+
|
156 |
+
def calculate_stability_score(
|
157 |
+
masks: torch.Tensor, mask_threshold: float, threshold_offset: float
|
158 |
+
) -> torch.Tensor:
|
159 |
+
"""
|
160 |
+
Computes the stability score for a batch of masks. The stability
|
161 |
+
score is the IoU between the binary masks obtained by thresholding
|
162 |
+
the predicted mask logits at high and low values.
|
163 |
+
"""
|
164 |
+
# One mask is always contained inside the other.
|
165 |
+
# Save memory by preventing unnecesary cast to torch.int64
|
166 |
+
intersections = (
|
167 |
+
(masks > (mask_threshold + threshold_offset))
|
168 |
+
.sum(-1, dtype=torch.int16)
|
169 |
+
.sum(-1, dtype=torch.int32)
|
170 |
+
)
|
171 |
+
unions = (
|
172 |
+
(masks > (mask_threshold - threshold_offset))
|
173 |
+
.sum(-1, dtype=torch.int16)
|
174 |
+
.sum(-1, dtype=torch.int32)
|
175 |
+
)
|
176 |
+
return intersections / unions
|
177 |
+
|
178 |
+
|
179 |
+
def build_point_grid(n_per_side: int) -> np.ndarray:
|
180 |
+
"""Generates a 2D grid of points evenly spaced in [0,1]x[0,1]."""
|
181 |
+
offset = 1 / (2 * n_per_side)
|
182 |
+
points_one_side = np.linspace(offset, 1 - offset, n_per_side)
|
183 |
+
points_x = np.tile(points_one_side[None, :], (n_per_side, 1))
|
184 |
+
points_y = np.tile(points_one_side[:, None], (1, n_per_side))
|
185 |
+
points = np.stack([points_x, points_y], axis=-1).reshape(-1, 2)
|
186 |
+
return points
|
187 |
+
|
188 |
+
|
189 |
+
def build_all_layer_point_grids(
|
190 |
+
n_per_side: int, n_layers: int, scale_per_layer: int
|
191 |
+
) -> List[np.ndarray]:
|
192 |
+
"""Generates point grids for all crop layers."""
|
193 |
+
points_by_layer = []
|
194 |
+
for i in range(n_layers + 1):
|
195 |
+
n_points = int(n_per_side / (scale_per_layer**i))
|
196 |
+
points_by_layer.append(build_point_grid(n_points))
|
197 |
+
return points_by_layer
|
198 |
+
|
199 |
+
|
200 |
+
def generate_crop_boxes(
|
201 |
+
im_size: Tuple[int, ...], n_layers: int, overlap_ratio: float
|
202 |
+
) -> Tuple[List[List[int]], List[int]]:
|
203 |
+
"""
|
204 |
+
Generates a list of crop boxes of different sizes. Each layer
|
205 |
+
has (2**i)**2 boxes for the ith layer.
|
206 |
+
"""
|
207 |
+
crop_boxes, layer_idxs = [], []
|
208 |
+
im_h, im_w = im_size
|
209 |
+
short_side = min(im_h, im_w)
|
210 |
+
|
211 |
+
# Original image
|
212 |
+
crop_boxes.append([0, 0, im_w, im_h])
|
213 |
+
layer_idxs.append(0)
|
214 |
+
|
215 |
+
def crop_len(orig_len, n_crops, overlap):
|
216 |
+
return int(math.ceil((overlap * (n_crops - 1) + orig_len) / n_crops))
|
217 |
+
|
218 |
+
for i_layer in range(n_layers):
|
219 |
+
n_crops_per_side = 2 ** (i_layer + 1)
|
220 |
+
overlap = int(overlap_ratio * short_side * (2 / n_crops_per_side))
|
221 |
+
|
222 |
+
crop_w = crop_len(im_w, n_crops_per_side, overlap)
|
223 |
+
crop_h = crop_len(im_h, n_crops_per_side, overlap)
|
224 |
+
|
225 |
+
crop_box_x0 = [int((crop_w - overlap) * i) for i in range(n_crops_per_side)]
|
226 |
+
crop_box_y0 = [int((crop_h - overlap) * i) for i in range(n_crops_per_side)]
|
227 |
+
|
228 |
+
# Crops in XYWH format
|
229 |
+
for x0, y0 in product(crop_box_x0, crop_box_y0):
|
230 |
+
box = [x0, y0, min(x0 + crop_w, im_w), min(y0 + crop_h, im_h)]
|
231 |
+
crop_boxes.append(box)
|
232 |
+
layer_idxs.append(i_layer + 1)
|
233 |
+
|
234 |
+
return crop_boxes, layer_idxs
|
235 |
+
|
236 |
+
|
237 |
+
def uncrop_boxes_xyxy(boxes: torch.Tensor, crop_box: List[int]) -> torch.Tensor:
|
238 |
+
x0, y0, _, _ = crop_box
|
239 |
+
offset = torch.tensor([[x0, y0, x0, y0]], device=boxes.device)
|
240 |
+
# Check if boxes has a channel dimension
|
241 |
+
if len(boxes.shape) == 3:
|
242 |
+
offset = offset.unsqueeze(1)
|
243 |
+
return boxes + offset
|
244 |
+
|
245 |
+
|
246 |
+
def uncrop_points(points: torch.Tensor, crop_box: List[int]) -> torch.Tensor:
|
247 |
+
x0, y0, _, _ = crop_box
|
248 |
+
offset = torch.tensor([[x0, y0]], device=points.device)
|
249 |
+
# Check if points has a channel dimension
|
250 |
+
if len(points.shape) == 3:
|
251 |
+
offset = offset.unsqueeze(1)
|
252 |
+
return points + offset
|
253 |
+
|
254 |
+
|
255 |
+
def uncrop_masks(
|
256 |
+
masks: torch.Tensor, crop_box: List[int], orig_h: int, orig_w: int
|
257 |
+
) -> torch.Tensor:
|
258 |
+
x0, y0, x1, y1 = crop_box
|
259 |
+
if x0 == 0 and y0 == 0 and x1 == orig_w and y1 == orig_h:
|
260 |
+
return masks
|
261 |
+
# Coordinate transform masks
|
262 |
+
pad_x, pad_y = orig_w - (x1 - x0), orig_h - (y1 - y0)
|
263 |
+
pad = (x0, pad_x - x0, y0, pad_y - y0)
|
264 |
+
return torch.nn.functional.pad(masks, pad, value=0)
|
265 |
+
|
266 |
+
|
267 |
+
def remove_small_regions(
|
268 |
+
mask: np.ndarray, area_thresh: float, mode: str
|
269 |
+
) -> Tuple[np.ndarray, bool]:
|
270 |
+
"""
|
271 |
+
Removes small disconnected regions and holes in a mask. Returns the
|
272 |
+
mask and an indicator of if the mask has been modified.
|
273 |
+
"""
|
274 |
+
import cv2 # type: ignore
|
275 |
+
|
276 |
+
assert mode in ["holes", "islands"]
|
277 |
+
correct_holes = mode == "holes"
|
278 |
+
working_mask = (correct_holes ^ mask).astype(np.uint8)
|
279 |
+
n_labels, regions, stats, _ = cv2.connectedComponentsWithStats(working_mask, 8)
|
280 |
+
sizes = stats[:, -1][1:] # Row 0 is background label
|
281 |
+
small_regions = [i + 1 for i, s in enumerate(sizes) if s < area_thresh]
|
282 |
+
if len(small_regions) == 0:
|
283 |
+
return mask, False
|
284 |
+
fill_labels = [0] + small_regions
|
285 |
+
if not correct_holes:
|
286 |
+
fill_labels = [i for i in range(n_labels) if i not in fill_labels]
|
287 |
+
# If every region is below threshold, keep largest
|
288 |
+
if len(fill_labels) == 0:
|
289 |
+
fill_labels = [int(np.argmax(sizes)) + 1]
|
290 |
+
mask = np.isin(regions, fill_labels)
|
291 |
+
return mask, True
|
292 |
+
|
293 |
+
|
294 |
+
def coco_encode_rle(uncompressed_rle: Dict[str, Any]) -> Dict[str, Any]:
|
295 |
+
from pycocotools import mask as mask_utils # type: ignore
|
296 |
+
|
297 |
+
h, w = uncompressed_rle["size"]
|
298 |
+
rle = mask_utils.frPyObjects(uncompressed_rle, h, w)
|
299 |
+
rle["counts"] = rle["counts"].decode("utf-8") # Necessary to serialize with json
|
300 |
+
return rle
|
301 |
+
|
302 |
+
|
303 |
+
def batched_mask_to_box(masks: torch.Tensor) -> torch.Tensor:
|
304 |
+
"""
|
305 |
+
Calculates boxes in XYXY format around masks. Return [0,0,0,0] for
|
306 |
+
an empty mask. For input shape C1xC2x...xHxW, the output shape is C1xC2x...x4.
|
307 |
+
"""
|
308 |
+
# torch.max below raises an error on empty inputs, just skip in this case
|
309 |
+
if torch.numel(masks) == 0:
|
310 |
+
return torch.zeros(*masks.shape[:-2], 4, device=masks.device)
|
311 |
+
|
312 |
+
# Normalize shape to CxHxW
|
313 |
+
shape = masks.shape
|
314 |
+
h, w = shape[-2:]
|
315 |
+
if len(shape) > 2:
|
316 |
+
masks = masks.flatten(0, -3)
|
317 |
+
else:
|
318 |
+
masks = masks.unsqueeze(0)
|
319 |
+
|
320 |
+
# Get top and bottom edges
|
321 |
+
in_height, _ = torch.max(masks, dim=-1)
|
322 |
+
in_height_coords = in_height * torch.arange(h, device=in_height.device)[None, :]
|
323 |
+
bottom_edges, _ = torch.max(in_height_coords, dim=-1)
|
324 |
+
in_height_coords = in_height_coords + h * (~in_height)
|
325 |
+
top_edges, _ = torch.min(in_height_coords, dim=-1)
|
326 |
+
|
327 |
+
# Get left and right edges
|
328 |
+
in_width, _ = torch.max(masks, dim=-2)
|
329 |
+
in_width_coords = in_width * torch.arange(w, device=in_width.device)[None, :]
|
330 |
+
right_edges, _ = torch.max(in_width_coords, dim=-1)
|
331 |
+
in_width_coords = in_width_coords + w * (~in_width)
|
332 |
+
left_edges, _ = torch.min(in_width_coords, dim=-1)
|
333 |
+
|
334 |
+
# If the mask is empty the right edge will be to the left of the left edge.
|
335 |
+
# Replace these boxes with [0, 0, 0, 0]
|
336 |
+
empty_filter = (right_edges < left_edges) | (bottom_edges < top_edges)
|
337 |
+
out = torch.stack([left_edges, top_edges, right_edges, bottom_edges], dim=-1)
|
338 |
+
out = out * (~empty_filter).unsqueeze(-1)
|
339 |
+
|
340 |
+
# Return to original shape
|
341 |
+
if len(shape) > 2:
|
342 |
+
out = out.reshape(*shape[:-2], 4)
|
343 |
+
else:
|
344 |
+
out = out[0]
|
345 |
+
|
346 |
+
return out
|
segment_anything/utils/onnx.py
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import torch
|
8 |
+
import torch.nn as nn
|
9 |
+
from torch.nn import functional as F
|
10 |
+
|
11 |
+
from typing import Tuple
|
12 |
+
|
13 |
+
from ..modeling import Sam
|
14 |
+
from .amg import calculate_stability_score
|
15 |
+
|
16 |
+
|
17 |
+
class SamOnnxModel(nn.Module):
|
18 |
+
"""
|
19 |
+
This model should not be called directly, but is used in ONNX export.
|
20 |
+
It combines the prompt encoder, mask decoder, and mask postprocessing of Sam,
|
21 |
+
with some functions modified to enable model tracing. Also supports extra
|
22 |
+
options controlling what information. See the ONNX export script for details.
|
23 |
+
"""
|
24 |
+
|
25 |
+
def __init__(
|
26 |
+
self,
|
27 |
+
model: Sam,
|
28 |
+
return_single_mask: bool,
|
29 |
+
use_stability_score: bool = False,
|
30 |
+
return_extra_metrics: bool = False,
|
31 |
+
) -> None:
|
32 |
+
super().__init__()
|
33 |
+
self.mask_decoder = model.mask_decoder
|
34 |
+
self.model = model
|
35 |
+
self.img_size = model.image_encoder.img_size
|
36 |
+
self.return_single_mask = return_single_mask
|
37 |
+
self.use_stability_score = use_stability_score
|
38 |
+
self.stability_score_offset = 1.0
|
39 |
+
self.return_extra_metrics = return_extra_metrics
|
40 |
+
|
41 |
+
@staticmethod
|
42 |
+
def resize_longest_image_size(
|
43 |
+
input_image_size: torch.Tensor, longest_side: int
|
44 |
+
) -> torch.Tensor:
|
45 |
+
input_image_size = input_image_size.to(torch.float32)
|
46 |
+
scale = longest_side / torch.max(input_image_size)
|
47 |
+
transformed_size = scale * input_image_size
|
48 |
+
transformed_size = torch.floor(transformed_size + 0.5).to(torch.int64)
|
49 |
+
return transformed_size
|
50 |
+
|
51 |
+
def _embed_points(self, point_coords: torch.Tensor, point_labels: torch.Tensor) -> torch.Tensor:
|
52 |
+
point_coords = point_coords + 0.5
|
53 |
+
point_coords = point_coords / self.img_size
|
54 |
+
point_embedding = self.model.prompt_encoder.pe_layer._pe_encoding(point_coords)
|
55 |
+
point_labels = point_labels.unsqueeze(-1).expand_as(point_embedding)
|
56 |
+
|
57 |
+
point_embedding = point_embedding * (point_labels != -1)
|
58 |
+
point_embedding = point_embedding + self.model.prompt_encoder.not_a_point_embed.weight * (
|
59 |
+
point_labels == -1
|
60 |
+
)
|
61 |
+
|
62 |
+
for i in range(self.model.prompt_encoder.num_point_embeddings):
|
63 |
+
point_embedding = point_embedding + self.model.prompt_encoder.point_embeddings[
|
64 |
+
i
|
65 |
+
].weight * (point_labels == i)
|
66 |
+
|
67 |
+
return point_embedding
|
68 |
+
|
69 |
+
def _embed_masks(self, input_mask: torch.Tensor, has_mask_input: torch.Tensor) -> torch.Tensor:
|
70 |
+
mask_embedding = has_mask_input * self.model.prompt_encoder.mask_downscaling(input_mask)
|
71 |
+
mask_embedding = mask_embedding + (
|
72 |
+
1 - has_mask_input
|
73 |
+
) * self.model.prompt_encoder.no_mask_embed.weight.reshape(1, -1, 1, 1)
|
74 |
+
return mask_embedding
|
75 |
+
|
76 |
+
def mask_postprocessing(self, masks: torch.Tensor, orig_im_size: torch.Tensor) -> torch.Tensor:
|
77 |
+
masks = F.interpolate(
|
78 |
+
masks,
|
79 |
+
size=(self.img_size, self.img_size),
|
80 |
+
mode="bilinear",
|
81 |
+
align_corners=False,
|
82 |
+
)
|
83 |
+
|
84 |
+
prepadded_size = self.resize_longest_image_size(orig_im_size, self.img_size)
|
85 |
+
masks = masks[..., : int(prepadded_size[0]), : int(prepadded_size[1])]
|
86 |
+
|
87 |
+
orig_im_size = orig_im_size.to(torch.int64)
|
88 |
+
h, w = orig_im_size[0], orig_im_size[1]
|
89 |
+
masks = F.interpolate(masks, size=(h, w), mode="bilinear", align_corners=False)
|
90 |
+
return masks
|
91 |
+
|
92 |
+
def select_masks(
|
93 |
+
self, masks: torch.Tensor, iou_preds: torch.Tensor, num_points: int
|
94 |
+
) -> Tuple[torch.Tensor, torch.Tensor]:
|
95 |
+
# Determine if we should return the multiclick mask or not from the number of points.
|
96 |
+
# The reweighting is used to avoid control flow.
|
97 |
+
score_reweight = torch.tensor(
|
98 |
+
[[1000] + [0] * (self.model.mask_decoder.num_mask_tokens - 1)]
|
99 |
+
).to(iou_preds.device)
|
100 |
+
score = iou_preds + (num_points - 2.5) * score_reweight
|
101 |
+
best_idx = torch.argmax(score, dim=1)
|
102 |
+
masks = masks[torch.arange(masks.shape[0]), best_idx, :, :].unsqueeze(1)
|
103 |
+
iou_preds = iou_preds[torch.arange(masks.shape[0]), best_idx].unsqueeze(1)
|
104 |
+
|
105 |
+
return masks, iou_preds
|
106 |
+
|
107 |
+
@torch.no_grad()
|
108 |
+
def forward(
|
109 |
+
self,
|
110 |
+
image_embeddings: torch.Tensor,
|
111 |
+
point_coords: torch.Tensor,
|
112 |
+
point_labels: torch.Tensor,
|
113 |
+
mask_input: torch.Tensor,
|
114 |
+
has_mask_input: torch.Tensor,
|
115 |
+
orig_im_size: torch.Tensor,
|
116 |
+
):
|
117 |
+
sparse_embedding = self._embed_points(point_coords, point_labels)
|
118 |
+
dense_embedding = self._embed_masks(mask_input, has_mask_input)
|
119 |
+
|
120 |
+
masks, scores = self.model.mask_decoder.predict_masks(
|
121 |
+
image_embeddings=image_embeddings,
|
122 |
+
image_pe=self.model.prompt_encoder.get_dense_pe(),
|
123 |
+
sparse_prompt_embeddings=sparse_embedding,
|
124 |
+
dense_prompt_embeddings=dense_embedding,
|
125 |
+
)
|
126 |
+
|
127 |
+
if self.use_stability_score:
|
128 |
+
scores = calculate_stability_score(
|
129 |
+
masks, self.model.mask_threshold, self.stability_score_offset
|
130 |
+
)
|
131 |
+
|
132 |
+
if self.return_single_mask:
|
133 |
+
masks, scores = self.select_masks(masks, scores, point_coords.shape[1])
|
134 |
+
|
135 |
+
upscaled_masks = self.mask_postprocessing(masks, orig_im_size)
|
136 |
+
|
137 |
+
if self.return_extra_metrics:
|
138 |
+
stability_scores = calculate_stability_score(
|
139 |
+
upscaled_masks, self.model.mask_threshold, self.stability_score_offset
|
140 |
+
)
|
141 |
+
areas = (upscaled_masks > self.model.mask_threshold).sum(-1).sum(-1)
|
142 |
+
return upscaled_masks, scores, stability_scores, areas, masks
|
143 |
+
|
144 |
+
return upscaled_masks, scores, masks
|
segment_anything/utils/transforms.py
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
import numpy as np
|
8 |
+
import torch
|
9 |
+
from torch.nn import functional as F
|
10 |
+
from torchvision.transforms.functional import resize, to_pil_image # type: ignore
|
11 |
+
|
12 |
+
from copy import deepcopy
|
13 |
+
from typing import Tuple
|
14 |
+
|
15 |
+
|
16 |
+
class ResizeLongestSide:
|
17 |
+
"""
|
18 |
+
Resizes images to longest side 'target_length', as well as provides
|
19 |
+
methods for resizing coordinates and boxes. Provides methods for
|
20 |
+
transforming both numpy array and batched torch tensors.
|
21 |
+
"""
|
22 |
+
|
23 |
+
def __init__(self, target_length: int) -> None:
|
24 |
+
self.target_length = target_length
|
25 |
+
|
26 |
+
def apply_image(self, image: np.ndarray) -> np.ndarray:
|
27 |
+
"""
|
28 |
+
Expects a numpy array with shape HxWxC in uint8 format.
|
29 |
+
"""
|
30 |
+
target_size = self.get_preprocess_shape(image.shape[0], image.shape[1], self.target_length)
|
31 |
+
return np.array(resize(to_pil_image(image), target_size))
|
32 |
+
|
33 |
+
def apply_coords(self, coords: np.ndarray, original_size: Tuple[int, ...]) -> np.ndarray:
|
34 |
+
"""
|
35 |
+
Expects a numpy array of length 2 in the final dimension. Requires the
|
36 |
+
original image size in (H, W) format.
|
37 |
+
"""
|
38 |
+
old_h, old_w = original_size
|
39 |
+
new_h, new_w = self.get_preprocess_shape(
|
40 |
+
original_size[0], original_size[1], self.target_length
|
41 |
+
)
|
42 |
+
coords = deepcopy(coords).astype(float)
|
43 |
+
coords[..., 0] = coords[..., 0] * (new_w / old_w)
|
44 |
+
coords[..., 1] = coords[..., 1] * (new_h / old_h)
|
45 |
+
return coords
|
46 |
+
|
47 |
+
def apply_boxes(self, boxes: np.ndarray, original_size: Tuple[int, ...]) -> np.ndarray:
|
48 |
+
"""
|
49 |
+
Expects a numpy array shape Bx4. Requires the original image size
|
50 |
+
in (H, W) format.
|
51 |
+
"""
|
52 |
+
boxes = self.apply_coords(boxes.reshape(-1, 2, 2), original_size)
|
53 |
+
return boxes.reshape(-1, 4)
|
54 |
+
|
55 |
+
def apply_image_torch(self, image: torch.Tensor) -> torch.Tensor:
|
56 |
+
"""
|
57 |
+
Expects batched images with shape BxCxHxW and float format. This
|
58 |
+
transformation may not exactly match apply_image. apply_image is
|
59 |
+
the transformation expected by the model.
|
60 |
+
"""
|
61 |
+
# Expects an image in BCHW format. May not exactly match apply_image.
|
62 |
+
target_size = self.get_preprocess_shape(image.shape[0], image.shape[1], self.target_length)
|
63 |
+
return F.interpolate(
|
64 |
+
image, target_size, mode="bilinear", align_corners=False, antialias=True
|
65 |
+
)
|
66 |
+
|
67 |
+
def apply_coords_torch(
|
68 |
+
self, coords: torch.Tensor, original_size: Tuple[int, ...]
|
69 |
+
) -> torch.Tensor:
|
70 |
+
"""
|
71 |
+
Expects a torch tensor with length 2 in the last dimension. Requires the
|
72 |
+
original image size in (H, W) format.
|
73 |
+
"""
|
74 |
+
old_h, old_w = original_size
|
75 |
+
new_h, new_w = self.get_preprocess_shape(
|
76 |
+
original_size[0], original_size[1], self.target_length
|
77 |
+
)
|
78 |
+
coords = deepcopy(coords).to(torch.float)
|
79 |
+
coords[..., 0] = coords[..., 0] * (new_w / old_w)
|
80 |
+
coords[..., 1] = coords[..., 1] * (new_h / old_h)
|
81 |
+
return coords
|
82 |
+
|
83 |
+
def apply_boxes_torch(
|
84 |
+
self, boxes: torch.Tensor, original_size: Tuple[int, ...]
|
85 |
+
) -> torch.Tensor:
|
86 |
+
"""
|
87 |
+
Expects a torch tensor with shape Bx4. Requires the original image
|
88 |
+
size in (H, W) format.
|
89 |
+
"""
|
90 |
+
boxes = self.apply_coords_torch(boxes.reshape(-1, 2, 2), original_size)
|
91 |
+
return boxes.reshape(-1, 4)
|
92 |
+
|
93 |
+
@staticmethod
|
94 |
+
def get_preprocess_shape(oldh: int, oldw: int, long_side_length: int) -> Tuple[int, int]:
|
95 |
+
"""
|
96 |
+
Compute the output size given input size and target long side length.
|
97 |
+
"""
|
98 |
+
scale = long_side_length * 1.0 / max(oldh, oldw)
|
99 |
+
newh, neww = oldh * scale, oldw * scale
|
100 |
+
neww = int(neww + 0.5)
|
101 |
+
newh = int(newh + 0.5)
|
102 |
+
return (newh, neww)
|
setup.cfg
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[isort]
|
2 |
+
line_length=100
|
3 |
+
multi_line_output=3
|
4 |
+
include_trailing_comma=True
|
5 |
+
known_standard_library=numpy,setuptools
|
6 |
+
skip_glob=*/__init__.py
|
7 |
+
known_myself=segment_anything
|
8 |
+
known_third_party=matplotlib,cv2,torch,torchvision,pycocotools,onnx,black,isort
|
9 |
+
no_lines_before=STDLIB,THIRDPARTY
|
10 |
+
sections=FUTURE,STDLIB,THIRDPARTY,MYSELF,FIRSTPARTY,LOCALFOLDER
|
11 |
+
default_section=FIRSTPARTY
|
setup.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
from setuptools import find_packages, setup
|
8 |
+
|
9 |
+
setup(
|
10 |
+
name="segment_anything",
|
11 |
+
version="1.0",
|
12 |
+
install_requires=[],
|
13 |
+
packages=find_packages(exclude="notebooks"),
|
14 |
+
extras_require={
|
15 |
+
"all": ["matplotlib", "pycocotools", "opencv-python", "onnx", "onnxruntime"],
|
16 |
+
"dev": ["flake8", "isort", "black", "mypy"],
|
17 |
+
},
|
18 |
+
)
|