Skip to content
This repository was archived by the owner on Aug 22, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
aaddc09
Reduce usage of build pools (#1222)
May 28, 2020
61951da
Update usage.md
Jun 30, 2020
ec82b0b
update usage.md (#1522)
Taeyoung96 Mar 18, 2021
e354721
Fix build with libmatroska 1.6.x (#1379)
robUx4 Mar 18, 2021
aac136c
Adding Azure Kinect DK Camera CAD file (#1532)
jaygullapalli Mar 18, 2021
2feb342
Python api development (#1483)
JonathanESantos Mar 24, 2021
f210de3
Fix compile error for std::nothrow (#1560)
UnaNancyOwen Apr 9, 2021
ea01d60
Update to project build pipeline (#1575)
jaygullapalli Apr 20, 2021
c03aa97
Add missing const qualifiers (#1451)
HlibKazakov2000 Apr 22, 2021
6b9321b
Fix Close Device of Python API (#1558)
UnaNancyOwen Apr 27, 2021
3a9dbac
Fixing point cloud transformation bug, switching type used for image …
JonathanESantos Apr 27, 2021
cdec4f2
Mark member functions as const that don't modify state (#1593)
HlibKazakov2000 May 6, 2021
a20f468
Fix a typo in the documentation (#1445)
HlibKazakov2000 May 6, 2021
36df754
Replace C clock with steady_clock (#1592)
HlibKazakov2000 May 26, 2021
04168ad
Adding calibration and registration tools to examples. (#1475)
kyrendon-msft May 26, 2021
920e395
Create readme.txt
qm13 Jul 19, 2021
f22b761
Add files via upload
qm13 Jul 19, 2021
45f36b6
Update readme.txt
qm13 Oct 20, 2021
dda733a
Delete firmware-beta directory
qm13 Oct 20, 2021
44db841
Create readme.txt
qm13 Oct 20, 2021
2b03a65
Update readme.txt
qm13 Oct 20, 2021
ba9bdad
Update readme.txt
qm13 Oct 20, 2021
d87ef57
Add files via upload
qm13 Oct 20, 2021
20eeee1
Update usage.md
qm13 May 13, 2022
48f9652
Update usage.md
qm13 May 13, 2022
c8c3b2f
Update azure-pipelines.yml for Azure Pipelines
dasparli Aug 16, 2022
34bc7cc
Update azure-pipelines.yml for Azure Pipelines
dasparli Aug 16, 2022
62c4b48
Microsoft mandatory file (#1814)
microsoft-github-policy-service[bot] Aug 16, 2022
8bb59ca
Updating Targetframework to netcoreapp3.1 (#1826)
jaygullapalli Sep 1, 2022
3503ba4
Updating target framework to use net6.0 (#1980)
jaygullapalli May 21, 2024
cd2b3e9
Updating logo image
jaygullapalli Jun 8, 2024
e165dfb
Updating usage.md markdown file for SDK v1.4.2
jaygullapalli Jun 21, 2024
fe20e2e
Updates from develop for v1.4.2 (#1984)
jaygullapalli Jul 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix a typo in the documentation (#1445)
k4a_transformation_depth_image_to_point_cloud() transforms
the depth image into a single image, not 3 planar images

Signed-off-by: v-hkazakov <[email protected]>
  • Loading branch information
HlibKazakov2000 authored May 6, 2021
commit a20f4687bb6b94e465cab01f3f682e7050337b61
3 changes: 2 additions & 1 deletion include/k4a/k4a.h
Original file line number Diff line number Diff line change
Expand Up @@ -2214,7 +2214,8 @@ K4A_EXPORT k4a_result_t k4a_transformation_color_image_to_depth_camera(k4a_trans
const k4a_image_t color_image,
k4a_image_t transformed_color_image);

/** Transforms the depth image into 3 planar images representing X, Y and Z-coordinates of corresponding 3D points.
/** Transforms the depth image into a single image with voxels representing
* X, Y and Z-coordinates in millimeters of corresponding 3D points.
*
* \param transformation_handle
* Transformation handle.
Expand Down