Webcam Tracker  V1.0
Using openCV and an Arduino Uno
ConvertColorSpace.h
Go to the documentation of this file.
1 
9 #pragma once
10 #include "PipeLineAction.h"
15 public:
18  ConvertColorSpace(const cv::String name);
19 
23  void setAction(void* data);
24 
27  void showWindow();
28 
29 };
header file of the PipeLineAction base-class
Child-classe, converts from BGR to HSV color space.
Definition: ConvertColorSpace.h:14
ConvertColorSpace(const cv::String name)
Constructor.
Definition: ConvertColorSpace.cpp:14
void setAction(void *data)
sets the output of the action
Definition: ConvertColorSpace.cpp:16
void showWindow()
shows the action to the user
Definition: ConvertColorSpace.cpp:22
Base-class for all OpenCV pipeline actions.
Definition: PipeLineAction.h:23
cv::String name
(screen)name of the pipeline action
Definition: PipeLineAction.h:27