Skip to content
Snippets Groups Projects
Commit 82d085de authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[engine.evaluator] Add comment on the blending

parent e20fca15
No related branches found
No related tags found
1 merge request!12Streamlining
......@@ -179,7 +179,9 @@ def _sample_analysis(
if overlay:
img = VF.to_pil_image(img) # PIL Image
tp_pil_colored = PIL.Image.blend(img, tp_pil_colored, 0.4)
# using blend here, to fade original image being overlayed, or
# its brightness may obfuscate colors from the vessel map
tp_pil_colored = PIL.Image.blend(img, tp_pil_colored, 0.5)
return tp_pil_colored
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment