CCIMXDesktop
 
Loading...
Searching...
No Matches
CannyExample.h
1#ifndef CANNYEXAMPLE_H
2#define CANNYEXAMPLE_H
3
4#include <QWidget>
5
6namespace Ui {
7class CannyExample;
8}
9
14class CannyExample : public QWidget {
15 Q_OBJECT
16
17public:
22 explicit CannyExample(QWidget* parent = nullptr);
23
28
33
34private:
38 Ui::CannyExample* ui;
39};
40
41#endif // CANNYEXAMPLE_H
The CannyExample class This widget demonstrates the application of the Canny edge detection algorithm...
Definition CannyExample.h:14
void process_image_session()
Processes the image using Canny edge detection.
Definition CannyExample.cpp:28
~CannyExample()
Destroy the CannyExample widget.
Definition CannyExample.cpp:24