You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
22 lines
453 B
/***************************************************************************************
|
|
*
|
|
* histogram.h is part of SimpleSkyCam.
|
|
*
|
|
***************************************************************************************/
|
|
|
|
#ifndef _HISTOGRAM_H_
|
|
#define _HISTOGRAM_H_
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include <stdint.h>
|
|
|
|
#include "gui.h"
|
|
#include "config.h"
|
|
#include "videoframe.h"
|
|
|
|
void histogram_update(VideoFrame *vf);
|
|
|
|
#endif // _HISTOGRAM_H_
|
|
|