An open API service indexing awesome lists of open source software.

https://github.com/wkentaro/imgviz-cpp

Image Visualization Tools for C++
https://github.com/wkentaro/imgviz-cpp

deep-learning image-visualization semantic-segmentation

Last synced: about 2 months ago
JSON representation

Image Visualization Tools for C++

Awesome Lists containing this project

README

          


imgviz-cpp


Image Visualization Tools for C++






Installation |
Getting Started |
Examples |
Python Version




## Installation

1. Copy [`include/imgviz.hpp`](include/imgviz.hpp) to
your project's `include` directory.
1. Add below to your `CMakeLists.txt`.
1. Refer to [`examples/getting_started.cpp`](examples/getting_started.cpp)
and [examples](#examples) to see how to use this library.

```cmake
find_package(OpenCV REQUIRED)

include_directories(${OpenCV_INCLUDE_DIRS} include)
link_directories(${OpenCV_LIBRARY_DIRS})
add_definitions(${OpenCV_DEFINITIONS})

add_executable(your_executable src/your_executable.cpp)
target_link_libraries(your_executable ${OpenCV_LIBRARIES})
```

## Examples

```bash
git clone https://github.com/wkentaro/imgviz-cpp.git
cd imgviz-cpp

mkdir build
cd build

cmake ..
make -j

./getting_started ../data
```




examples/label_to_bgr.cpp







examples/depth_to_bgr.cpp







examples/tile.cpp







examples/centerize.cpp