🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/calibrateFloorplanProjection \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraImagePointsPermyriad": [
[
123
]
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"floorplanImagePointsPermyriad": [
[
123
]
]
}
'{
"homography": [
[
123
]
]
}Generate the homography to project detections onto a floorplan.
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/calibrateFloorplanProjection \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraImagePointsPermyriad": [
[
123
]
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"floorplanImagePointsPermyriad": [
[
123
]
]
}
'{
"homography": [
[
123
]
]
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to calibrate floorplan projection for a device.
List of camera image points in permyriad coordinates
List of camera image points in permyriad coordinates
List of camera image points in permyriad coordinates
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
List of floorplan image points in permyriad coordinates
List of floorplan image points in permyriad coordinates
List of floorplan image points in permyriad coordinates
OK
Response containing the calibrated floorplan projection homography.
3x3 homography matrix for floorplan projection
3x3 homography matrix for floorplan projection
3x3 homography matrix for floorplan projection
Was this page helpful?