mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
4c0f0a7a7b
Former-commit-id: ff1ac0936c118d129bc8a8014958948d3b3883be
27 lines
659 B
Python
27 lines
659 B
Python
import numpy as np
|
|
import pydensecrf.densecrf as dcrf
|
|
|
|
|
|
def dense_crf(img, output_probs):
|
|
h = output_probs.shape[0]
|
|
w = output_probs.shape[1]
|
|
|
|
output_probs = np.expand_dims(output_probs, 0)
|
|
output_probs = np.append(1 - output_probs, output_probs, axis=0)
|
|
|
|
d = dcrf.DenseCRF2D(w, h, 2)
|
|
U = -np.log(output_probs)
|
|
U = U.reshape((2, -1))
|
|
U = np.ascontiguousarray(U)
|
|
img = np.ascontiguousarray(img)
|
|
|
|
d.setUnaryEnergy(U)
|
|
|
|
d.addPairwiseGaussian(sxy=20, compat=3)
|
|
d.addPairwiseBilateral(sxy=30, srgb=20, rgbim=img, compat=10)
|
|
|
|
Q = d.inference(5)
|
|
Q = np.argmax(np.array(Q), axis=0).reshape((h, w))
|
|
|
|
return Q
|