Jump to Content
Developers & Practitioners

Deploy a coloring page generator in minutes with Cloud Run

April 5, 2022
https://storage.googleapis.com/gweb-cloudblog-publish/original_images/image4_Lp4nmH7.gif
Laurent Picard

Developer Advocate

Have you ever written a script to transform an image? Did you share the script with others or did you run it on multiple computers? How many times did you need to update the script or the setup instructions? Did you end up making it a service or an online app? If your script is useful, you’ll likely want to make it available to others. Deploying processing services is a recurring need – one that comes with its own set of challenges. Serverless technologies let you solve these challenges easily and efficiently.

In this post, you’ll see how to…

  • Create an image processing service that generates coloring pages

  • Make it available online using minimal resources

…and do it all in less than 200 lines of Python and JavaScript!

Tools

To build and deploy a coloring page generator, you’ll need a few tools:

  • A library to process images

  • A web application framework

  • A web server

  • A serverless solution to make the demo available 24/7

Architecture

Here is one possible architecture for a coloring page generator using Cloud Run:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image10_2OuvNrS.max-1400x1400.png
Architecture serving a web app with Cloud Run

And here is the workflow:

  1. The user opens the web app: the browser requests the main page.

  2. Cloud Run serves the app HTML code.

  3. The browser requests the additional needed resources.

  4. Cloud Run serves the CSS, JavaScript, and other resources.


  1. The user selects an image and the frontend sends the image to the /api/coloring-page endpoint.

  2. The backend processes the input image and returns an output image, which the user can then visualize, download, or print via the browser.

Software stack

Of course, there are many different software stacks that you could use to implement such an architecture.

Here is a good one based on Python:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image20_uj2Fzyf.max-800x800.png
Schema

It includes:

  • Gunicorn: A production-grade WSGI HTTP server

  • Flask: A popular web app framework

  • scikit-image: An extensive image processing library

Define these app dependencies in a file named requirements.txt:
https://storage.googleapis.com/gweb-cloudblog-publish/images/image22_WjcVfmX.max-700x700.png

Image processing

How do you remove colors from an image? One way is by detecting the object edges and removing everything but the edges in the result image. This can be done with a Sobel filter, a convolution filter that detects the regions in which the image intensity changes the most.

Create a Python file named main.py, define an image processing function, and within it use the Sobel filter and other functions from scikit-image:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image5_iOJnWK3.max-700x700.png

Note: The NumPy and Pillow libraries are automatically installed as dependencies of scikit-image.

As an example, here is how the Cloud Run logo is processed at each step:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image6_Pd2bvLI.max-600x600.png
Colored input transformed into edge-detected grayscale output

Web app

Backend

To expose both endpoints (GET / and POST /api/coloring-page), add Flask routes in main.py:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image13_idhfwgc.max-700x700.png

Frontend

On the browser side, write a JavaScript function that calls the /api/coloring-page endpoint and receives the processed image:
https://storage.googleapis.com/gweb-cloudblog-publish/images/image2_3jZZmiZ.max-700x700.png


The base of your app is there. Now you just need to add a mix of HTML + CSS + JS to complete the desired user experience.

Local development

To develop and test the app on your computer, once your environment is set up, make sure you have the needed dependencies:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image23_Hsz5OMg.max-700x700.png

Add the following block to main.py. It will only execute when you run your app manually:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image9_CsXjatk.max-700x700.png

Run your app:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image14_kicRhNy.max-700x700.png


Flask starts a local web server:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image7_wez5waX.max-700x700.png

Note: In this mode, you’re using a development web server (one that is not suited for production). You’ll next set up the deployment to serve your app with Gunicorn, a production-grade server.

 You’re all set. Open localhost:8080 in your browser, test, refine, and iterate.

Deployment

Once your app is ready for prime time, you can define how it will be served with this single line in a file named Procfile:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image25_D37CgXX.max-700x700.png
https://storage.googleapis.com/gweb-cloudblog-publish/images/image18_BqUeBHh.max-700x700.png

That’s it, you can now deploy your app from the source folder:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image3_AtXQeoJ.max-700x700.png

Under the hood

The command line output details all the different steps:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image17_yDoUXQh.max-700x700.png

Cloud Build is indirectly called to containerize your app. One of its core components is Google Cloud Buildpacks, which automatically builds a production-ready container image from your source code. Here are the main steps:

  • Cloud Build fetches the source code.

  • Buildpacks autodetects the app language (Python, in this case) and uses the corresponding secure base image.

  • Buildpacks installs the app dependencies (defined in requirements.txt for Python).

  • Buildpacks configures the service entrypoint (defined in Procfile for Python).

  • Cloud Build pushes the container image to Artifact Registry.

  • Cloud Run creates a new revision of the service based on this container image.

  • Cloud Run routes production traffic to it.

Notes:

  • Buildpacks currently supports the following runtimes: Go, Java, .NET, Node.js, and Python.

  • The base image is actively maintained by Google, scanned for security vulnerabilities, and patched against known issues. This means that, when you deploy an update, your service is based on an image that is as secure as possible.

If you need to build your own container image, for example with a custom runtime, you can add your own Dockerfile and Buildpacks will use it instead.

Updates

More testing from real-life users shows some issues.

First, the app does not handle pictures taken with digital cameras in non-native orientations. You can fix this using the EXIF orientation data:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image19_2Oqjjkz.max-700x700.png

In addition, the app is too sensitive to details in the input image. Textures in paintings, or noise in pictures, can generate many edges in the processed image. You can improve the processing algorithm by adding a denoising step upfront:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image11_hnfty0Q.max-700x700.png

This additional step makes the coloring page cleaner and reduces the quantity of ink used if you print it:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image24_zQRBeI5.max-800x800.png
La nascita di Venere by Botticelli, with and without denoising

Redeploy, and the app is automatically updated:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image12_XPH8e4o.max-700x700.png

It’s alive

The app is visible as a service in Cloud Run:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image15_ZcrUzgp.max-600x600.png

The service dashboard gives you an overview of app usage:

https://storage.googleapis.com/gweb-cloudblog-publish/images/image21_9lNNFtD.max-1400x1400.png

That’s it; your image processing app is in production!

https://storage.googleapis.com/gweb-cloudblog-publish/original_images/image8_3TEtg9m.gif

It’s serverless

There are many benefits to using Cloud Run in this architecture:

  • Your app is available 24/7.

  • The environment is fully managed: you can focus on your code and not worry about the infrastructure.

  • Your app is automatically available through HTTPS.

  • You can map your app to a custom domain.

  • Cloud Run scales the number of instances automatically and the billing includes only the resources used when your code runs.

  • If your app is not used, Cloud Run scales down to zero.

  • If your app gets more traffic (imagine it makes the news), Cloud Run scales up to the number of instances needed.

  • You can control performance and cost by fine-tuning many settings: CPU, memory, concurrency, minimum instances, maximum instances, and more.

  • Every month, the free tier offers the first 50 vCPU-hours, 100 GiB-hours, and 2 million requests for no cost.

Source code

The project includes just seven files and less than 200 lines of Python + JavaScript code.

You can reuse this demo as a base to build your own image processing app:

More

Posted in