December 2020
tl;dr: Use cylindrical representation of fisheye images to transfer pinhole camera image to fisheye images.
In pinhole camera model, perceived objects become smaller as they become further away as measured by depth Z. Objects with constant Z, regardless of X and Y positions, appear similar. Pinhole camera model can only accommodate limited FoV (view angles up to 90 deg).
Fisheye model,
One way is to convert it into a cylindrical view. An object's side and appearance remain the same as long as the
- Change fisheye raw image to cylindrical view
- Interpret output z as
$\rho$ - Use self-supervised learning (rotation prediction, etc) and finetune on small number (<100) of samples. The fintuning even on a small number of images helps a lot.
- We need finetuning as the analogy between cylindrical and perspective image (approximation that
$\Delta X = \rho \Delta \phi$ ) breaks down for close-by objects.
- We need finetuning as the analogy between cylindrical and perspective image (approximation that
- Warping uses predefined mappings and its computation time is typically negligible (as compared to model inference time).
- Questions and notes on how to improve/revise the current work