karolzak / cntk-python-web-service-on-azure

This sample project shows off how to prepare and deploy to Azure Web Apps a simple Python web service with an image classifying model produced in CNTK (Cognitive Toolkit) using FasterRCNN
MIT License
26 stars 18 forks source link

Issue with font on Linux #3

Closed bartkowiaktomasz closed 6 years ago

bartkowiaktomasz commented 6 years ago

If you get an error with font on Linux while trying to POST an image, you need to edit the file CNTK-Python-Web-Service-on-Azure/plot_helpers.py, edit the lines 318, 323 and change: ImageFont.truetype("arial.ttf", 16)): to ImageFont.truetype(available_font, 16)): as it has been done by @karolzak in: fixed an issue with font on Linux

karolzak commented 6 years ago

@bartkowiaktomasz thanks for pointing that out!