FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions
bbox.h File Reference
#include <stdint.h>

Go to the source code of this file.

Data Structures

struct  FFBoundingBox
 

Functions

int ff_calculate_bounding_box (FFBoundingBox *bbox, const uint8_t *data, int linesize, int w, int h, int min_val)
 Calculate the smallest rectangle that will encompass the region with values > min_val. More...
 

Function Documentation

int ff_calculate_bounding_box ( FFBoundingBox bbox,
const uint8_t data,
int  linesize,
int  w,
int  h,
int  min_val 
)

Calculate the smallest rectangle that will encompass the region with values > min_val.

Parameters
bboxbounding box structure which is updated with the found values. If no pixels could be found with value > min_val, the structure is not modified.
Returns
1 in case at least one pixel with value > min_val was found, 0 otherwise

Definition at line 23 of file bbox.c.

Referenced by filter_frame(), and init().