<aside> 🛠

Strip OCR Output Down to Just the Coordinates


OCR nodes return everything they know: where the text is, what it says, how confident they are. When all you want is where, this tool throws away the rest. Feed it OCR region data and it returns the geometry alone — one region per line, in exactly the form Image Masker by Region expects. Polygons by default; flip one checkbox to get bounding boxes instead. It's a pure text-in, text-out step, which means no JSON parsing, no code node, and no language model retyping coordinates it might get wrong.

</aside>


What it does

Region Extract reads OCR region data as text and outputs the region geometry as text — nothing else.

  1. The OCR node's output goes in
  2. Recognized strings, confidence scores, and any other metadata are discarded
  3. What comes out is the coordinate data, one region per line

The checkbox controls the shape of what comes out. Off, each detected region is emitted as a polygon — the quadrilateral (or arbitrary shape) the OCR engine actually found, which stays tight around rotated or skewed text. On, each region is reduced to its bounding box — the smallest upright rectangle containing it.

This node does not touch images. It is a text transformer that happens to sit at the exact seam where OCR output meets image editing.

Problem it solves

Input/Output

<aside>

<aside>

Configuration Options