"...models/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "afda28accbc79035384952c0359f0e4de8454cb3"
Commit 2d29f192 authored by Lucas Beyer's avatar Lucas Beyer
Browse files

Merge pull request #5 from kevin-keraudren/pydensecrf_fix-height-width

Fix height width order in dense_inference.py example
parents 0d10e2bf a4390091
...@@ -20,7 +20,7 @@ output = sys.argv[3] ...@@ -20,7 +20,7 @@ output = sys.argv[3]
M = labels.max() + 1 # number of labels M = labels.max() + 1 # number of labels
# Setup the CRF model # Setup the CRF model
d = dcrf.DenseCRF2D(img.shape[0], img.shape[1], M) d = dcrf.DenseCRF2D(img.shape[1], img.shape[0], M)
# Certainty that the ground truth is correct # Certainty that the ground truth is correct
GT_PROB = 0.5 GT_PROB = 0.5
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment