src/interfaces/IAutozoomControlOpts.ts
Options used for autozoom control class
Properties |
|
shouldAutoFrame |
shouldAutoFrame:
|
Type : boolean
|
Optional |
Configure autozoom without doing auto framing. With this option set to true, you can still get detection and framing events, however, auto framing of people is not done on the camera any more. |
export default interface AutozoomControlOpts {
/**
* Configure autozoom without doing auto
* framing. With this option set to true,
* you can still get detection and framing
* events, however, auto framing of people is
* not done on the camera any more.
*
* @type {Boolean}
* @memberof AutozoomControlOpts
*/
shouldAutoFrame?: boolean;
}