-
Notifications
You must be signed in to change notification settings - Fork 73
Segmentation Camera #329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Segmentation Camera #329
Changes from 28 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
8813531
Semantic Segmentation Camera in OGRE 2
AmrElsersy df77bf5
address CI compiler warnings
adlarkin 6dd5624
Style
AmrElsersy 53dec8d
Merge pull request #1 from AmrElsersy/SegmentationCamera
AmrElsersy ec14e66
Add Unit Test & Integration Test
AmrElsersy 05913c4
Solved Destructor Crash problem
AmrElsersy 1240859
Convert colored map to label ids map
AmrElsersy df6eda1
Merge branch 'main' into segmentation
adlarkin f4f3761
Style SegmentationType
AmrElsersy 1cef192
solve many subitems problem
AmrElsersy b8415a3
Solve Multi Link models problem
AmrElsersy 8139028
Merge branch 'main' into segmentation
adlarkin 798c0ed
Merge branch 'main' of https://github.com/ignitionrobotics/ign-render…
AmrElsersy 35f5dfd
Merge branch 'main' into segmentation
adlarkin 3d24d2c
style
AmrElsersy b18f377
Merge branch 'segmentation' of https://github.com/AmrElsersy/ign-rend…
AmrElsersy ac4b604
review feedback
adlarkin 4f0209d
use TopLevelModelVisual method instead of hardcoded string
adlarkin 2cbfe91
use iterator to avoid multiple lookups
adlarkin de63a56
Move MaterialSwitcher into separate TU
4ff40ee
Merge branch 'main' into segmentation
05da804
Update for OGRE 2.2
3dff4dc
Fix workspace creation
8f90b62
Fix readback
3c2e70b
Fix background
5e78c76
Fix order of destruction
c4e0685
fix tests
iche033 e185ecd
final edits
adlarkin 31547f9
codecheck
adlarkin 8f25b09
windows warnings
adlarkin 4ed1b40
macOS warning
adlarkin 3e3711b
add panoptic pixel order documentation to public API
adlarkin e6e7579
Merge branch 'main' into segmentation
iche033 b40fa21
fix build from recent merge
adlarkin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) | ||
| project(ignition-rendering-segmentation-camera) | ||
| find_package(ignition-rendering6 REQUIRED) | ||
|
|
||
| include_directories(SYSTEM | ||
| ${PROJECT_BINARY_DIR} | ||
| ) | ||
|
|
||
| find_package(GLUT REQUIRED) | ||
| include_directories(SYSTEM ${GLUT_INCLUDE_DIRS}) | ||
| link_directories(${GLUT_LIBRARY_DIRS}) | ||
|
|
||
| find_package(OpenGL REQUIRED) | ||
| include_directories(SYSTEM ${OpenGL_INCLUDE_DIRS}) | ||
| link_directories(${OpenGL_LIBRARY_DIRS}) | ||
|
|
||
| if (NOT APPLE) | ||
| find_package(GLEW REQUIRED) | ||
| include_directories(SYSTEM ${GLEW_INCLUDE_DIRS}) | ||
| link_directories(${GLEW_LIBRARY_DIRS}) | ||
| endif() | ||
|
|
||
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations") | ||
|
|
||
| configure_file (example_config.hh.in ${PROJECT_BINARY_DIR}/example_config.hh) | ||
|
|
||
| add_executable(segmentation_camera Main.cc GlutWindow.cc) | ||
|
|
||
| target_link_libraries(segmentation_camera | ||
| ${GLUT_LIBRARIES} | ||
| ${OPENGL_LIBRARIES} | ||
| ${GLEW_LIBRARIES} | ||
| ${IGNITION-RENDERING_LIBRARIES} | ||
| ) | ||
|
|
||
| add_custom_command(TARGET segmentation_camera POST_BUILD | ||
| COMMAND ${CMAKE_COMMAND} -E copy_directory | ||
| ${CMAKE_SOURCE_DIR}/media | ||
| $<TARGET_FILE_DIR:segmentation_camera>/media) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.