Coder Social home page Coder Social logo

Comments (6)

prepare avatar prepare commented on May 21, 2024

Msdf3

Our version is an extension to the original technique (Msdf, see https://github.com/Chlumsky/msdfgen).

It optimizes 'nearest-edge searching' by using 'classic scanline fill' and encode
the pixel-curve data into a lookup bitmap.

Then it go to original Msdf gen phase,
this time instead of checking all edges for a pixel,
it use the lookup bitmap to decode edge data that are responsible for the
specific bitmap.

With a given pixel, the choices are

  1. no edge for this pixel, => finish here

  2. only 1 edge for this pixel, just calculate distant from a pixel to that edge

  3. more than 1 edge, just calculate the repsonsible edges (mostly just 2-3 edges, on the
    corners, esp overlap edges)

so it go faster


for Msdf, see https://github.com/PaintLab/PixelFarm/tree/master/src/PixelFarm/PixelFarm.Drawing/7_CpuBlitPainter/Msdf

and Msdf3, see https://github.com/PaintLab/PixelFarm/tree/master/src/PixelFarm/PixelFarm.Drawing/7_CpuBlitPainter/Msdf3

msdf_code_in_vs
blue rect is original Msdf, and red rect is Msdf3

from pixelfarm.

prepare avatar prepare commented on May 21, 2024

Closest Edge Lookup Table

Closest edge lookup table bitmap, each pixel contains encoding data of responsible edges
over that pixel.

This render with 'classic scanline' technqiue.

I use my PixelFarm's Agg (Antigrain geometry, C# port) the render it.

msdf3_glyph_x_lut

Roboto font,Closest edge lookup table bitmap


msdf3_glyph_x

Roboto font, Msdf output, 8 times scale up, still sharp :)

Please note that this version has some artifacts, cause by lut phase, It will be fixed later

from pixelfarm.

prepare avatar prepare commented on May 21, 2024

Another glyph-B, Roboto font
This shows both curve segments and line segment

msdf3_glyph_b_lut
Closest edge lookup table bitmap


msdf3_glyph_b

Roboto font, Msdf output, 8 times scale up, still sharp :)

Please note that this version has some artifacts, cause by lut phase, It will be fixed later

from pixelfarm.

prepare avatar prepare commented on May 21, 2024

Closest Edge Lookup Table in the form of Bitmap

The following screen capture show the debugging session when the renderer paint each border.

closest_edge_lut
we paint each border, each border encodes information about edge segment

from the picture, we save result of each step to files to examine later


These are the lut bitmaps.

please note that the actual images are too dark, I will enhance it up to see the data.

dbug_step1
1

dbug_step2
2

dbug_step3
3

dbug_step4
4

dbug_step5
5

dbug_step6
6

dbug_step7
7

dbug_step8
8

dbug_step9
9

dbug_step10
10

dbug_step11
11

dbug_step12
12

from pixelfarm.

prepare avatar prepare commented on May 21, 2024

Lut creation detail

Zoom in some images.

s1
from step1, zoom 8 times from original (above)

You see that it is too dark.
so I will enhance it to see the detail inside in the following pic.


the picture is zoom in 8 times,
and increase brightness (100%) ,
increase contrast (50%) to see the detail

s1_enh1
step 1, in detail

from pixelfarm.

prepare avatar prepare commented on May 21, 2024

s2_enh
step 2, in detail


s_final_enh
final

from pixelfarm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.