@ulb-darmstadt/photogrammetry-viewer
Version:
```console npm i photogrammetry-viewer ``` This library provides an HTML web component that displays photogrammetric data. The component consists of a combined 3D and 2D viewer. For each view of the 3D model, the 2D image closest to the view is loaded. Fo
12 lines (11 loc) • 336 B
TypeScript
export declare class Sensor {
fovInRad: number;
focalLengthInPx: number;
cx: number;
cy: number;
aspectRatio: number;
private _sensorWidthInPx;
private _sensorHeightInPx;
constructor(focalLengthInPx: number, sensorWidthInPx: number, sensorHeightInPx: number);
equals(otherSensor: Sensor): boolean;
}