Skip to content

Latest commit

 

History

History
62 lines (52 loc) · 1.15 KB

flip.md

File metadata and controls

62 lines (52 loc) · 1.15 KB

Flip layer (flip) simply flips data (image + annotation) vertically or horizontally.

{
  "action": "flip",
  "src": ["$data1"],
  "dst": "$data2",
  "settings": {
    "axis": "vertical"
  }
}

"axis" field can be one of two values horizontal or vertical.

Here are the possible results:

Original image

"axis": "vertical"

"axis": "horizontal"

Example

[
  {
    "dst": "$data",
    "src": [
      "myproj/*"
    ],
    "action": "data",
    "settings": {
      "classes_mapping": "default"
    }
  },
  {
    "dst": "$flip_vert",
    "src": [
      "$data"
    ],
    "action": "flip",
    "settings": {
      "axis": "vertical"
    }
  },
  {
    "dst": "flip_ver",
    "src": [
      "$data",
      "$flip_vert"
    ],
    "action": "supervisely",
    "settings": {}
  }
]

In this example we just get all data (images + annotations) from project myproj, apply vertical flip to images and save both original and flipped version.