cellUview 1.0.0
A real-time image processing and analysis suite for digital microscopy.
Loading...
Searching...
No Matches
dilation.h
1
2#ifndef CELLUVIEW_DILATION_H
3#define CELLUVIEW_DILATION_H
4
5
6#include <opencv2/core.hpp>
7#include <opencv2/videoio.hpp>
8#include <iostream>
9#include <stdlib.h>
10#include <thread>
11#include "imageProcessor.h"
12#include "frame.h"
13
14
20public:
21 dilation() = default;
22 void receiveFrame(frame newFrame);
26 std::string getParamLabel(){return paramLabel;};
27 void updateSettings(std::map<std::string, std::string>);
28
29private:
30 //add any other methods here
31 void dilate(frame); //image dilation
32 std::string paramLabel = "dilation";
33};
34#endif // CELLUVIEW_DILATION_H
Definition: dilation.h:19
void updateSettings(std::map< std::string, std::string >)
Definition: dilation.cpp:47
std::string getParamLabel()
Definition: dilation.h:26
void receiveFrame(frame newFrame)
Definition: dilation.cpp:13
Definition: frame.h:20
Definition: imageProcessor.h:15