Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
CRF-RNN-pytorch
Commits
bc933240
Commit
bc933240
authored
Nov 19, 2025
by
bailuo
Browse files
readme
parents
Pipeline
#3044
canceled with stages
Changes
22
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
run_demo.py
run_demo.py
+51
-0
sample.png
sample.png
+0
-0
No files found.
run_demo.py
0 → 100644
View file @
bc933240
"""
MIT License
Copyright (c) 2019 Sadeep Jayasumana
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import
torch
from
crfasrnn
import
util
from
crfasrnn.crfasrnn_model
import
CrfRnnNet
def
main
():
input_file
=
"image.jpg"
output_file
=
"labels.png"
# Read the image
img_data
,
img_h
,
img_w
,
size
=
util
.
get_preprocessed_image
(
input_file
)
# Download the model from https://tinyurl.com/crfasrnn-weights-pth
saved_weights_path
=
"crfasrnn_weights.pth"
model
=
CrfRnnNet
()
model
.
load_state_dict
(
torch
.
load
(
saved_weights_path
))
model
.
eval
()
out
=
model
.
forward
(
torch
.
from_numpy
(
img_data
))
probs
=
out
.
detach
().
numpy
()[
0
]
label_im
=
util
.
get_label_image
(
probs
,
img_h
,
img_w
,
size
)
label_im
.
save
(
output_file
)
if
__name__
==
"__main__"
:
main
()
sample.png
0 → 100644
View file @
bc933240
838 KB
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment