About Paths

Each artwork is more than an image — it carries the full process of its making

Machine Learning Dataset

All recordings are structured JSON containing point-by-point stroke coordinates, millisecond-precision timestamps, strokeData brush parameters, and Flow effect settings. Suitable for generative model training, style transfer research, or painting behavior analysis.

Artwork Strokes Flow Events Duration Size JSON File
#00184 1,06520.1s56.9 KB Download
#00286 93819.1s51.9 KB Download
#00381 1,28521.9s66.2 KB Download
#004325 1,40825.0s99.7 KB Download
#00592 1,48763.5s131.1 KB Download
#006175 1,99235.7s184.1 KB Download

Recording JSON Structure Overview

{
  "version": "1.0",
  "canvasSize": { "width": 800, "height": 800 },
  "canvasBackgroundColor": [222, 212, 195],
  "events": [
    { "m": "mp", "t": 150, "x": 400, "y": 300, "strokeData": { ... } },
    { "m": "md", "t": 166, "x": 402, "y": 305 },
    ...
    { "m": "mr", "t": 1200, "x": 410, "y": 600 },
    { "m": "flow", "t": 2500, "action": "start", "blendType": 3, ... },
    { "m": "flow", "t": 4000, "action": "end", ... }
  ]
}

For complete field definitions, see Tutorial #08: AI Agent & JSON Generation; you can also check the inline API spec in <script id="agent-api-spec"> on the main page.

← Previous: Emotion & Intention

InkField Tutorial Series — Understanding digital ink, explained simply