Skip to content
Snippets Groups Projects
Commit ae9e802c authored by Nathan Chambron's avatar Nathan Chambron
Browse files

modified param localCRS

parent b6938588
No related branches found
No related tags found
3 merge requests!3Feature/new api specs,!2Develop,!1Feature/new api specs
......@@ -34,5 +34,5 @@ file(GLOB HDRS
add_library(${PROJECT_NAME} ${SRCS} )
target_link_libraries(${PROJECT_NAME} pistache pthread)
install(TARGETS ${PROJECT_NAME} DESTINATION /usr/lib)
install(FILES ${HDRS} DESTINATION include)
\ No newline at end of file
install(TARGETS ${PROJECT_NAME} DESTINATION /usr/local)
install(FILES ${HDRS} DESTINATION include)
......@@ -154,21 +154,17 @@ components:
format: byte
example: "10110101"
localCRS:
description: Coordinate reference system of the trackable
description: Coordinate reference system of the trackable, a 4*4 matrix (rowmajor) represented by a float vector
type: array
minItems: 4
maxItems: 4
minItems: 16
maxItems: 16
items:
type: array
items:
type: number
format: float
minItems: 4
maxItems: 4
example: [[-2, 1, -3, 4],
[4, 4, 4, 2],
[1, 0, -2, 1],
[-1, -2, 0, 0]]
type: number
format: float
example: [-2, 1, -3, 4,
4, 4, 4, 2,
1, 0, -2, 1,
-1, -2, 0, 0]
unitSystem:
description: Unit of length
type: string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment