Project

contrek

0.0
The project is in a healthy, maintained state
Contrek is a Ruby library (C++ powered) to trace png bitmap areas polygonal contours.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.5, >= 1.5.3
~> 3.12
~> 1.7, >= 1.7.2
~> 1.51

Runtime

= 4.5.0
 Project Readme

Contrek

Contrek is a Ruby library (C++ powered) to trace png bitmap areas polygonal contours. Manages png images usign png++ and picoPNG (version 20101224) libraries and may work multithreading.

About Contrek library

Contrek (contour trekking) simply scans your png bitmap and returns shape contour as close polygonal lines, both for the external and internal sides. It can compute the nesting level of the polygons found with a tree structure. It supports various levels and modes of compression and approximation of the found coordinates. It is capable of multithreaded processing (currently only on the Ruby side), splitting the image into vertical strips and recombining the coordinates in pairs.

In the following image all the non-white pixels have been examined and the result is the red polygon for the outer contour and the green one for the inner one alt text

Install

Add this line to your application's Gemfile:

gem 'contrek'

And then execute:

bundle install

This will install the gem and compile the native extensions. If you get fatal error: png++/png.hpp: No such file or directory

means that you have to install png++ on your system which Contrek C++ code depends on; visit http://download.savannah.nongnu.org/releases/pngpp/ Grab the lattest file (here 0.2.9) Go to download directory. Extract to /usr/src with

sudo tar -zxf png++-0.2.9.tar.gz -C /usr/src

Change directory to

cd /usr/src/png++-0.2.9/

Do make and make install

make
make install

Usage

In this example we are asking to examine any pixel that does not have the red color.

result = Contrek.contour!(
  png_file_path: "labyrinth3.png",
  options: {
    class: "value_not_matcher",
    color: {r: 255, g: 0, b: 0, a: 255},
    finder: {treemap: true}
  }
)

The result reports information about the execution times (microseconds), the polygons found, their coordinates and the nesting tree.

{:benchmarks=>{"build_tangs_sequence"=>0.129, "compress"=>0.037, "plot"=>0.198, "scan"=>0.114, "total"=>0.478}, :groups=>2, :named_sequence=>"", :polygons=>[...], :treemap=>[]}

By default the C++ version is used. If you want run pure but slower ruby implementation

result = Contrek.contour!(
  png_file_path: "labyrinth3.png",
  options: {
    native: false, # force ruby pure
    class: "value_not_matcher",
    color: {r: 241, g: 156, b: 156, a: 255}
  }

You can bypass the helper and access low level (here the CPP classes)

png_bitmap = CPPPngBitMap.new("labyrinth3.png")
rgb_matcher = CPPRGBNotMatcher.new(png_bitmap.rgb_value_at(0, 0))
polygonfinder = CPPPolygonFinder.new(png_bitmap,
  rgb_matcher,
  nil,
  {versus: :a, compress: {visvalingam: {tolerance: 1.5}}})
result = polygonfinder.process_info
# draws the polygons found
Contrek::Bitmaps::Painting.direct_draw_polygons(result[:polygons], png_image)
png_image.save('result.png') # => inspect the image to feedback the result

You can also read base64 png images

png_bitmap = CPPRemotePngBitMap.new("iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+P+/HgAFhAJ/wlseKgAAAABJRU5ErkJggg==")

Multithreaded contour processing is supported. However, on Ruby MRI (the standard Ruby implementation, at least up to 3.x), the Global Interpreter Lock (GIL) prevents more than one thread from executing Ruby code simultaneously. As a consequence, execution remains effectively serialized even on multicore systems, unless the gem is used under JRuby or TruffleRuby (not tested).

The actual multithreaded implementation effort is therefore focused on the native C++ component, which is currently under development and is expected to provide substantially higher performance.

result = Contrek.contour!(
  png_file_path: "./spec/files/images/rectangle_8x8.png",
  options: {
    number_of_threads: 2,
    native: false,
    class: "value_not_matcher",
    color: {r: 255, g: 255, b: 255, a: 255},
    finder: {number_of_tiles: 2, compress: {uniq: true, linear: true}}
  }
)

The example uses 2 threads, and the image has been divided into 2 vertical bands. It is also possible to rely on the system to determine the maximum number of threads supported by your CPU (cores) by passing the appropriate parameter.

  number_of_threads: nil

Regarding multithreading:

  • The algorithm splits the contour-detection workflow into multiple phases that can be executed in parallel. The initial contour extraction on each band and the subsequent merging of coordinates between adjacent bands—performed pairwise, recursively, and in a non-deterministic order—results in a final output that is not idempotent. Idempotence is guaranteed only when the exact same merging sequence is repeated.

  • The treemap option is currently ignored (multithreaded treemap support will be introduced in upcoming revisions).

Multithreaded approach

The multithreaded contour-tracing implementation operates as follows:

The input image is divided into multiple vertical bands—at least two—where each band shares a one-pixel-wide vertical strip with its adjacent bands. For example, if the image is 20 pixels wide and split into two bands, the first band may span from x=0 to x=9 (10 pixels), and the second from x=9 to x=19 (11 pixels). The vertical column at x=9 is therefore the shared region.

01234567890123456789
---------*----------

Each band is processed independently as if it were a standalone image, with its contour-tracing assigned to a dedicated thread. Whenever two adjacent bands have completed processing, they are assigned to an available thread that performs the merge of their coordinates.

For example, with three bands B1 – B2 – B3 the merging sequence might be:

B1 + B2 → (B1+B2) + B3 or

B2 + B3 → B1 + (B2+B3)

The order is therefore nondeterministic, constrained only by the possible combinations derived from the initial number of bands.

The merging algorithm operates by splitting polygons that intersect the shared band into sequential subsets of coordinates—called parts—distinguishing between segments inside the shared region and those outside it. The first stage merges the outer boundary; the second stage merges the disconnected inner parts, which are inserted where needed into the outer sequences produced in the first stage.

This process is applied recursively, merging bands until a single final band remains, upon which the coordinate-compression algorithms are executed.

Performances native vs pure

One of the most complex test you can find under the spec folder is named "scans poly 1200x800", scans this image computing coordinates to draw polygons drawn in this result. On pure ruby implementation kept time

{ :scan=>1063.146,
  :build_tangs_sequence=>287.114,
  :plot=>79.329,
  :compress=>0.001,
  :total=>1429.59}

This the one for the native C++

{ :scan=>43.521,
  :build_tangs_sequence=>44.105,
  :plot=>35.718,
  :compress=>0.001,
  :total=>123.34500000000001}

About 10 x faster. Times are in microseconds; system: AMD Ryzen 7 3700X 8-Core Processor (BogoMIPS: 7199,99).

License

This project is licensed under the terms of the MIT license.

See LICENSE.md.

History

The algorithm was originally developed by me in 2018 when I was commissioned to create a Rails web application whose main objective was to census buildings from GoogleMAPS; the end user had to be able to select their home building by clicking its roof on the map which had to be identified as a clickable polygon. The solution was to configure GoogleMAPS to render buildings of a well-defined color (red), and at each refresh of the same to transform the div into an image (html2canvas) then process it server side returning the polygons to be superimposed again on the map. This required very fast polygons determination. Searching for a library for tracing the contours I was not able to find anything better except OpenCV which however seemed to me a very heavy dependency. So I decided to write my algorithm directly in the context of the ROR application. Once perfected, it was already usable but a bit slow in the higher image resolutions. So I decided to write the counterpart in C++, which came out much faster and which I then used as an extension on Ruby by means of Rice.

I thought that the algorithm had excellent qualities but I never had the time to develop it further. A few months ago I decided to publish it as a gem, freely usable. The gem includes the C++ extension. There is also a Rails 7.1 demo project that uses the gem and proposes the same scheme I described above. Starting from a GoogleMAPS map, the server receives the image and returns the outlines to be drawn again on the same. It is a great way to test an applicative use of this gem. Enjoy!.