| 37 | } |
| 38 | |
| 39 | void SphericalProjection::init_effect_details() |
| 40 | { |
| 41 | InitEffectInfo(); |
| 42 | info.class_name = "SphericalProjection"; |
| 43 | info.name = "Spherical Projection"; |
| 44 | info.description = |
| 45 | "Flatten and reproject 360° or fisheye inputs into a rectilinear view with yaw, pitch, roll, and FOV. Supports Equirect and multiple fisheye lens models."; |
| 46 | info.has_audio = false; |
| 47 | info.has_video = true; |
| 48 | } |
| 49 | |
| 50 | namespace { |
| 51 | inline double cubic_interp(double p0, double p1, double p2, double p3, |
nothing calls this directly
no outgoing calls
no test coverage detected