Skip to content

Commit 2d945fa

Browse files
Documentation updated
1 parent b1b4a56 commit 2d945fa

9 files changed

+16
-15
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

2-
![plot_opencv_logo](_static/plot_opencv_logo.png)
2+
![plot_opencv_logo](./static/plot_opencv_logo.png)
33

44

55

6-
# **plotOpenCv C++ library**
6+
# **PlotOpenCv C++ library**
77

8-
**v1.0.2**
8+
**v1.0.3**
99

1010

1111

@@ -27,7 +27,7 @@
2727

2828
# Overview
2929

30-
**plotOpenCv** is a C++ library developed to facilitate the visualization of 2-dimensional line charts. This library is built upon the OpenCV, providing users with a convenient and efficient tool for visualizing data through line charts. With plotOpenCv, users can effortlessly create multiple line charts within a single window and tune various chart parameters, such as line width, color, and more. It uses C++17 standard. The library is licensed under the Apache 2.0 license.
30+
**plotOpenCv** is a C++ library developed to facilitate the visualization of 2-dimensional line charts. This library is built upon the OpenCV, providing users with a convenient and efficient tool for visualizing data through line charts. With **plotOpenCv**, users can effortlessly create multiple line charts within a single window and tune various chart parameters, such as line width, color, and more. It uses C++17 standard. The library is licensed under the Apache 2.0 license.
3131

3232

3333

@@ -40,6 +40,7 @@
4040
| 1.0.0 | 08.09.2023 | First version. |
4141
| 1.0.1 | 18.09.2023 | - Update used container for plots. |
4242
| 1.0.2 | 16.04.2024 | - Antialiased line drawing implemented.<br/>- Window size issue fixed.<br/>- Documentation updated. |
43+
| 1.0.3 | 17.05.2024 | - Documentation updated. |
4344

4445

4546

@@ -123,7 +124,7 @@ std::cout << "plotOpenCv class version: " << plotOpenCv::getVersion() << std::en
123124
Console output:
124125

125126
```bash
126-
plotOpenCv class version: 1.0.2
127+
plotOpenCv class version: 1.0.3
127128
```
128129

129130

@@ -139,7 +140,7 @@ void addPlot(std::vector<T> &points, int id, int start = 0, int end = 0,
139140
140141
| Parameter | Value |
141142
| --------- | ------------------------------------------------------------ |
142-
| Points | One dimentional vector which includes vertical points.Vector format : {y1, y2, ... } |
143+
| Points | One dimensional vector which includes vertical points.Vector format : {y1, y2, ... } |
143144
| id | Identifier for chart on a window. Provides user to update a chart or add new one. |
144145
| start | Start index of plot from vector when user wants to plot a specific range from a dataset. Should be 0 for whole dataset.|
145146
| end | End index of plot from vector when user wants to plot a specific range from a dataset. Should be 0 for whole dataset. |
@@ -159,12 +160,12 @@ void addPlot(std::vector<std::vector<T>> &points, int id, int start = 0, int end
159160

160161
| Parameter | Value |
161162
| --------- | ------------------------------------------------------------ |
162-
| Points | Two dimentional vector which includes vertical and horizontal points. Vector format : {{x1,y1}, {x2,y2}, ... } |
163+
| Points | Two dimensional vector which includes vertical and horizontal points. Vector format : [{x1,y1}, {x2,y2}, ... ] |
163164
| id | Identifier for chart on a window. Provides user to update a chart or add new one. |
164165
| start | Start index of plot from vector when user wants to plot a specific range from a dataset. Should be 0 for whole dataset.|
165166
| end | End index of plot from vector when user wants to plot a specific range from a dataset. Should be 0 for whole dataset. |
166167
| color | Color of chart line. |
167-
| tickness | Tickness of chart line.|
168+
| thickness | Thickness of chart line.|
168169

169170

170171
**Table 2** - Supported data types.
@@ -221,10 +222,10 @@ void clean();
221222
222223
# Example Charts
223224
224-
![plot_opencv_example_1](_static/plot_opencv_example_1.png)
225-
![plot_opencv_example_2](_static/plot_opencv_example_2.png)
226-
![plot_opencv_example_3](_static/plot_opencv_example_3.png)
227-
![plot_opencv_example_combined](_static/plot_opencv_example_combined.png)
225+
![plot_opencv_example_1](./static/plot_opencv_example_1.png)
226+
![plot_opencv_example_2](./static/plot_opencv_example_2.png)
227+
![plot_opencv_example_3](./static/plot_opencv_example_3.png)
228+
![plot_opencv_example_combined](./static/plot_opencv_example_combined.png)
228229
229230
230231

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13)
66
## LIBRARY-PROJECT
77
## name and version
88
###############################################################################
9-
project(plotOpenCv VERSION 1.0.2 LANGUAGES CXX)
9+
project(plotOpenCv VERSION 1.0.3 LANGUAGES CXX)
1010

1111

1212

src/plotOpenCvVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
#define PLOT_OPENCV_MAJOR_VERSION 1
44
#define PLOT_OPENCV_MINOR_VERSION 0
5-
#define PLOT_OPENCV_PATCH_VERSION 2
5+
#define PLOT_OPENCV_PATCH_VERSION 3
66

7-
#define PLOT_OPENCV_VERSION "1.0.2"
7+
#define PLOT_OPENCV_VERSION "1.0.3"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)