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++
- Host: GitHub
- URL: https://github.com/wkentaro/imgviz-cpp
- Owner: wkentaro
- Created: 2020-08-19T22:24:27.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-06T11:22:53.000Z (almost 4 years ago)
- Last Synced: 2025-04-15T14:07:49.563Z (6 months ago)
- Topics: deep-learning, image-visualization, semantic-segmentation
- Language: C++
- Homepage:
- Size: 7.25 MB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
imgviz-cpp
Image Visualization Tools for C++
![]()
## 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-cppmkdir build
cd buildcmake ..
make -j./getting_started ../data
```
examples/label_to_bgr.cpp
![]()
examples/depth_to_bgr.cpp
![]()
examples/tile.cpp
![]()
examples/centerize.cpp
![]()