%YAML:1.0
---

#Optional for custom camera profiles:
name: "Unique_name"

#----------------------------------------

#Essential for both Camera Profile & Calibration import:
K: !!opencv-matrix #Do not change
  rows: 3 #Do not change
  cols: 3 #Do not change
  dt: d #Do not change
	data: [ fx, 0., cx, 0., fy, cy, 0., 0., 1. ] #Integer values

ImgSizeWH: !!opencv-matrix #Do not change
  rows: 2 #Do not change
  cols: 1 #Do not change
  dt: d #Do not change
  data: [ width, height ] #Integer values

#----------------------------------------

#Essential for calibration import only:
RT: !!opencv-matrix #Do not change
  rows: 3 #Do not change
  cols: 4 #Do not change
  dt: d #Do not change
  data: [ r11, r12, r13, tx,r21, r22, r23, ty, r31, r32, r33, tz ] #Integer values
  
CaptureAreaMode: CIRCLE  #Do not change
CaptureAreaCircleRadius: 2. #Decimal value
CaptureAreaCircleNumPoints: 5 #Integer value
