{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":161214378,"defaultBranch":"develop","name":"Azure-Kinect-Sensor-SDK","ownerLogin":"microsoft","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-12-10T17:50:05.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/6154722?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720032689.0","currentOid":""},"activityList":{"items":[{"before":"fe20e2eba917633913d7c20e02a677426b7c48fe","after":null,"ref":"refs/heads/pr-develop-release1.4.x","pushedAt":"2024-07-03T18:51:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"}},{"before":"3cfe362dacc4ad9b2206af3f28d62e1eb7be99c2","after":"251004770b7da55649f234ac78de9631ac8a8c9c","ref":"refs/heads/release/1.4.x","pushedAt":"2024-07-03T18:51:20.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"PR for changes from develop for SDK release v1.4.2 into release1.4.x (#1983)\n\n* Reduce usage of build pools (#1222)\r\n\r\n* Reduce usage of build pools\r\n\r\nWe are currently using over 30 machines in parallel. This will reduce\r\nour usage down to 15 machines by staggering the master and develop\r\nbuilds as well as removing some build flavors we don't really care\r\nabout.\r\n\r\n* Update azure-pipelines.yml\r\n\r\nCo-authored-by: wes-b \r\n\r\n* Update azure-pipelines.yml\r\n\r\nCo-authored-by: wes-b \r\n\r\nCo-authored-by: wes-b \r\n\r\n* Update usage.md\r\n\r\n* update usage.md (#1522)\r\n\r\nCo-authored-by: [Taeyoung <[tyoung96@naver.com]>\r\n\r\n* Fix build with libmatroska 1.6.x (#1379)\r\n\r\nThe MATROSKA_VERSION define is gone as it was an ancient compilation flag to support writing Matroska v1 files.\r\n\r\nSince the EDocTypeReadVersion is 2, using 2 as the Matroska version of the file seems the correct value to use.\r\n\r\nFixes the issue mentioned here https://github.com/Matroska-Org/libmatroska/issues/41#issuecomment-693278668\r\n\r\n* Adding Azure Kinect DK Camera CAD file (#1532)\r\n\r\nCo-authored-by: Jay Gullapalli \r\n\r\n* Python api development (#1483)\r\n\r\n* PythonK4A: Adding initial directory structure, k4atypes.py which defines enums, and tests to check the enum values.\r\n\r\nThe _bindings/ folder is meant to contain internal ctypes bindings to the C-exported functions in k4a.dll.\r\nThe _libs/ folder is meant to contain the required DLLs: k4a.dll and DepthEngine.dll.\r\nThe api/ folder is meant for modules that define the actual Python K4A API.\r\nThe docs/ folder is for documentation.\r\nThe tests/ folder is for unit tests and functional tests.\r\nThe examples/ folder is for simple example code on how to use the API.\r\n\r\n* PythonK4A: Updating __init__.py to point to the \"api\" directory (renamed from sdk).\r\n\r\n* Python K4A: Rearranging directory tree so that it matches the expectation of what gets imported when users use \"import k4a\".\r\nAdding a powershell script to build a wheel file. Adding empty docs files.\r\n\r\n* Python k4a api: Put ctypes structs inside k4atypes.py.\r\n\r\nArrange import methods so that:\r\n1. \"import k4a\" will expose all visible symbols in the module k4atypes.py.\r\n2. \"from k4a import *\" will work the same way as \"import k4a\".\r\n\r\nTo see all symbols in k4atypes.py, use \"import k4a.k4atypes\".\r\nThis is considered to be a development or debug way of importing symbols.\r\nUsers are encouraged to use \"import k4a\".\r\n\r\n* Python k4a api: Adding to setup.py so that \"pip install -e .[test]\" will install pytest along with k4a (in editable mode).\r\n\r\n* Python k4a api: An enum name with AUTO was mistakenly replaced with _auto. Switching it back to AUTO.\r\n\r\nFor the enum tests, explicitly testing the enum entries rather than doing it in a for loop. These don't really test much other than making sure the enums have values from 0 to n.\r\n\r\n* Python k4a api: Adding __repr__() functions to structs in order to print the contents of the struct.\r\n\r\n* Python k4a api: Adding a check that the required dlls are in the _libs folder before making the wheel.\r\n\r\n* Python k4a api: Adding the rest of the bindings for the functions that are exposed in the dll.\r\n\r\n* Python k4a: Adding tests to call the functions in the dll.\r\n\r\nTODO: Test the following functions:\r\nk4a_calibration_3d_to_3d\r\nk4a_calibration_2d_to_3d\r\nk4a_calibration_3d_to_2d\r\nk4a_calibration_2d_to_2d\r\nk4a_calibration_color_2d_to_depth_2d\r\nk4a_transformation_create\r\nk4a_transformation_destroy\r\nk4a_transformation_depth_image_to_color_camera\r\nk4a_transformation_depth_image_to_color_camera_custom\r\nk4a_transformation_color_image_to_depth_camera\r\nk4a_transformation_depth_image_to_point_cloud\r\n\r\n* Python k4a: Adding missing enum in color resolution, and adding tests for the transformation functions. The build_wheel.ps1 script will create a win-amd64 only python wheel.\r\n\r\n* Python k4a: Changing @unittest.skip to @unittest.expectedfail for those tests that fail.\r\n\r\n* Python k4a: Updating docs. Removing platform tag in building the k4a library wheel file.\r\n\r\n* Python API: Renaming enums and structs to Python naming convention.\r\n\r\n* Python API: Moving all internal files and symbols into the _bindings/ folder. By doing this, when a user \"import k4a\", only the exported symbols will be visible. Everything else will be under a _bindings symbol.\r\n\r\n* Python API: Moving handle structs from _k4a.py back to _k4atypes.py so that it aligns more with k4a.h and k4atypes.h.\r\n\r\n* Renaming modules inside _bindings subpackage to not include underscore. This seems redundant since the subpackage _bindings already has an underscore.\r\n\r\n* Python api: Adding Device class which corresponds to a device with a device_handle.\r\n\r\n* Python API: Adding capture and image classes to encapsulate capture and image functions and handles.\r\nAdding test files.\r\n\r\n* Python API: Bug in Image class was missing a height_pixels in one line, causing import k4a to fail.\r\n\r\n* Python API: Adding Calibration and Transformation wrapper classes.\r\n\r\n* Python API: Renaming a test file.\r\n\r\n* Python API: Adding more tests to test the Device, Capture, Image, and Calibration classes. Fixing shallow copy and deep copy of Image objects.\r\n\r\n* Python API: Fixing transformation functions and their tests.\r\n\r\n* Python API: Adding example code that makes use of the Python API.\r\nFixing minor bugs in the Transformation class, and fixing issues with the unit tests regarding starting and stopping the imu and getting imu samples.\r\n\r\n* Python API: Adding docstrings *.py files and a Doxygen settings file to generate the html documentation for the Python API.\r\n\r\n* Python API: Adding a main page to the documentation, and fixing a bug in the example code image_transformations.py.\r\n\r\n* Python API: Adding lines in build_wheel.ps1 to generate the documentation using doxygen.\r\n\r\nFixing several bugs:\r\n1. The build_wheel.ps1 had extra arguments that breaks the building of the wheel.\r\n2. The Transformation class had some parameters renamed but the renamed vars were not changed in the functions accordingly.\r\n3. The Transformation class removed an unneeded param in depth_image_to_color_camera_custom but did not remove it in the test code.\r\n\r\n* Making minor changes to get this k4a package to work in both Windows and Linux. Adding a bash script to automate generating the wheel file in Ubuntu (Linux).\r\n\r\n* Forgot to commit the minor changes to get this k4a package to work in both Windows and Linux. Doing it now.\r\n\r\n* Python API: Specifying specific library names that the python code will try to load. In Windows, the library names must be k4a.dll and depthengine.dll. In Linux, the library names must be libk4a.so and libdepthengine.so.\r\n\r\nIf the libraries have different names, the user should create symlinks and point it to the actual library using relative addressing.\r\n\r\n* Python API: Modifying the build_wheel.csh script to look for libdepthengine.so and libk4a.so file names.\r\n\r\n* Python API: Updating building.md for clarity.\r\n\r\n* Python API: Fixing bug in tests that causes failure in some of the tests. Also renaming the tests so that they can be filtered into unit, functional_fast, functional, and perf tests.\r\n\r\n* Removing forced-loading of depthengine library. Just load k4a.dll and let it load the depth engine.\r\n\r\nFixing markdown formatting.\r\n\r\n* In the wheel build scripts, adding test to check if doxygen is installed.\r\nIn the building.md docs, adding a Linux requirement to install venv. For some reason, it is not installed natively as part of a Python installation.\r\n\r\n* Fixing markdown documents.\r\n\r\n* Adding blurb about installing pip in Linux.\r\n\r\n* Changing ctypes.c_ulonglong to ctypes.c_size_t where it matches the function signature on the C API better.\r\n\r\n* Changing c_ulonglong to c_size_t in the tests to match the change in the bindings.\r\n\r\n* Fixing build script in Linux to look for depthengine.so* inside a subfolder. Fixing docs to reflect these changes.\r\n\r\n* Fixing documents that say the Linux depthengine.so.2.0 must be in a subfolder libk4a1.4. This is a previous method of chain loading the libraries, which is not the case anymore. The depthengine.so.2.0 should be in the same folder as the libk4a.so.\r\n\r\n* The build script for Linux needs to check for depthengine.so* in the same folder as libk4a.so.\r\n\r\n* Making slight changes to the building.md documentation for more clarity.\r\n\r\n* Fixing a minor typo in the comments of image_transformations.py, and adding additional comments to let the users know they have to install a required package separately from k4a package.\r\n\r\nCo-authored-by: Jonathan Santos \r\n\r\n* Fix compile error for std::nothrow (#1560)\r\n\r\nFix C2039, and C2065\r\n\r\n* Update to project build pipeline (#1575)\r\n\r\n* Update to build schedule and build matrix\r\n\r\n* Set UsesOpenCV to FALSE in VS2019 x86 builds\r\n\r\nCo-authored-by: Jay Gullapalli \r\n\r\n* Add missing const qualifiers (#1451)\r\n\r\nBy not having const on these c++ member functions, it prevents the use\r\nof const objects. Such objects are desired by style, coders, and compliers.\r\n\r\nSigned-off-by: v-hkazakov \r\n\r\n* Fix Close Device of Python API (#1558)\r\n\r\n* Fixing point cloud transformation bug, switching type used for image representation uint16 to int16 (#1568)\r\n\r\n* Fixing point cloud transformation bug with using uint16 when int16 should be used because the X and Y images are centered around 0 and can take on negative values.\r\nAdding point_cloud_capture.py example to capture depth data, transform to point cloud, and write to text file which can then be opened with a 3D modeling application like MeshLab.\r\n\r\n* Adding a newline to avoid a warning or no new line at the end of the file.\r\n\r\n* Replacing point cloud example to use numpy reshape.\r\n\r\n* Fixing example point_cloud_capture.py with getting the numpy array shape and having the correct order of the width vs height.\r\n\r\n* Mark member functions as const that don't modify state (#1593)\r\n\r\n* Fix a typo in the documentation (#1445)\r\n\r\nk4a_transformation_depth_image_to_point_cloud() transforms\r\nthe depth image into a single image, not 3 planar images\r\n\r\nSigned-off-by: v-hkazakov \r\n\r\n* Replace C clock with steady_clock (#1592)\r\n\r\nclock() reports CPU time and not the 'wall time'.\r\nWithout this fix recording obtained by k4arecorder will be longer than\r\nthe time passed to the `--record-length` argument.\r\n\r\n* Adding calibration and registration tools to examples. (#1475)\r\n\r\n* Adding tools for calibration and registration of cameras.\r\n\r\n* removing two unnecessary tools from pipfile\r\n\r\n* removing unused elements in pipfile\r\n\r\n* removing test pylintrcfile\r\n\r\n* Minor cleanup of the printing, template file fixes, and one edge case detection bug.\r\n\r\n* bugfix to how rms radians is computed and more quality of image checks\r\n\r\n* BUGFIX: enforcing that registration is attached to the correct camera and adding more images to examples\r\n\r\n* fixing spelling errors\r\n\r\n* remove unnecessary elements from gitignore\r\n\r\n* Removing package that is not relevant to this tool.\r\n\r\nCo-authored-by: Kyle Rendon \r\n\r\n* Create readme.txt\r\n\r\n* Add files via upload\r\n\r\n* Update readme.txt\r\n\r\n* Delete firmware-beta directory\r\n\r\n* Create readme.txt\r\n\r\n* Update readme.txt\r\n\r\n* Update readme.txt\r\n\r\n* Add files via upload\r\n\r\n* Update usage.md\r\n\r\n* Update usage.md\r\n\r\nMark .msi installers prior to v1.3 deprecated.\r\n\r\n* Update azure-pipelines.yml for Azure Pipelines\r\n\r\nRemoved all VS2017 and Win2017 references to address a build warning/error in the pipeline.\r\n\r\n* Update azure-pipelines.yml for Azure Pipelines\r\n\r\nRemoving references for vs2017 from the documentation task\r\n\r\n* Microsoft mandatory file (#1814)\r\n\r\nCo-authored-by: microsoft-github-policy-service[bot] <77245923+microsoft-github-policy-service[bot]@users.noreply.github.com>\r\n\r\n* Updating Targetframework to netcoreapp3.1 (#1826)\r\n\r\n* Using netcoreapp3.1 for TargetFramework\r\n\r\n* Updating target framework to use net6.0 (#1980)\r\n\r\n* Updating target framework to use net6.0\r\n\r\n* Disabling generation of reference assemblies for C# tests\r\n\r\n* Updating logo image\r\n\r\n* Updating usage.md markdown file for SDK v1.4.2\r\n\r\n* Updates from develop for v1.4.2 (#1984)\r\n\r\n* Adding retirement date for Azure Kinect DK Sensor SDK\r\n\r\n* Updating firmware version and download link to v1.6.110080014 (Same as what is included in v1.4.2 installer)\r\n\r\n---------\r\n\r\nSigned-off-by: v-hkazakov \r\nCo-authored-by: Matt Schulte \r\nCo-authored-by: wes-b \r\nCo-authored-by: Tae Young Kim \r\nCo-authored-by: [Taeyoung <[tyoung96@naver.com]>\r\nCo-authored-by: Steve Lhomme \r\nCo-authored-by: Jay Gullapalli \r\nCo-authored-by: Jonathan Santos \r\nCo-authored-by: Jonathan Santos \r\nCo-authored-by: Tsukasa Sugiura \r\nCo-authored-by: HlibKazakov2000 <74240687+HlibKazakov2000@users.noreply.github.com>\r\nCo-authored-by: KyleRendon <77355198+not-the-programmer@users.noreply.github.com>\r\nCo-authored-by: Kyle Rendon \r\nCo-authored-by: qm13 <47307385+qm13@users.noreply.github.com>\r\nCo-authored-by: Dale <102560310+dasparli@users.noreply.github.com>\r\nCo-authored-by: microsoft-github-policy-service[bot] <77245923+microsoft-github-policy-service[bot]@users.noreply.github.com>","shortMessageHtmlLink":"PR for changes from develop for SDK release v1.4.2 into release1.4.x (#…"}},{"before":"e165dfb6aa03097c40fb8cbfd6eadd97b6c12b75","after":"fe20e2eba917633913d7c20e02a677426b7c48fe","ref":"refs/heads/pr-develop-release1.4.x","pushedAt":"2024-07-03T18:48:56.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updates from develop for v1.4.2 (#1984)\n\n* Adding retirement date for Azure Kinect DK Sensor SDK\r\n\r\n* Updating firmware version and download link to v1.6.110080014 (Same as what is included in v1.4.2 installer)","shortMessageHtmlLink":"Updates from develop for v1.4.2 (#1984)"}},{"before":"3c79d56c2aa082d62ebae6ccf217191e6d4e2cfa","after":"5f79890933e1c81e325633152b2f2799df825b8b","ref":"refs/heads/develop","pushedAt":"2024-07-03T18:08:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updating firmware version and download link to v1.6.110080014 (Same as what is included in v1.4.2 installer)","shortMessageHtmlLink":"Updating firmware version and download link to v1.6.110080014 (Same a…"}},{"before":"e165dfb6aa03097c40fb8cbfd6eadd97b6c12b75","after":"3c79d56c2aa082d62ebae6ccf217191e6d4e2cfa","ref":"refs/heads/develop","pushedAt":"2024-06-21T22:56:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Adding retirement date for Azure Kinect DK Sensor SDK","shortMessageHtmlLink":"Adding retirement date for Azure Kinect DK Sensor SDK"}},{"before":null,"after":"e165dfb6aa03097c40fb8cbfd6eadd97b6c12b75","ref":"refs/heads/pr-develop-release1.4.x","pushedAt":"2024-06-21T01:16:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updating usage.md markdown file for SDK v1.4.2","shortMessageHtmlLink":"Updating usage.md markdown file for SDK v1.4.2"}},{"before":"cd2b3e9894b26fbeebfe34a5cab5b26efab0939a","after":"e165dfb6aa03097c40fb8cbfd6eadd97b6c12b75","ref":"refs/heads/develop","pushedAt":"2024-06-21T00:59:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updating usage.md markdown file for SDK v1.4.2","shortMessageHtmlLink":"Updating usage.md markdown file for SDK v1.4.2"}},{"before":"3503ba48d60a5aca7529f05571b8be4d98350e50","after":"cd2b3e9894b26fbeebfe34a5cab5b26efab0939a","ref":"refs/heads/develop","pushedAt":"2024-06-08T23:51:47.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updating logo image","shortMessageHtmlLink":"Updating logo image"}},{"before":"8bb59caa9db1d5da32e382b87622c8cd91bbb8fe","after":"3503ba48d60a5aca7529f05571b8be4d98350e50","ref":"refs/heads/develop","pushedAt":"2024-05-21T18:43:40.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jaygullapalli","name":null,"path":"/jaygullapalli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/29506814?s=80&v=4"},"commit":{"message":"Updating target framework to use net6.0 (#1980)\n\n* Updating target framework to use net6.0\r\n\r\n* Disabling generation of reference assemblies for C# tests","shortMessageHtmlLink":"Updating target framework to use net6.0 (#1980)"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNy0wM1QxODo1MToyOS4wMDAwMDBazwAAAAR2NhWh","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNy0wM1QxODo1MToyOS4wMDAwMDBazwAAAAR2NhWh","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNS0yMVQxODo0Mzo0MC4wMDAwMDBazwAAAARQLtiz"}},"title":"Activity · microsoft/Azure-Kinect-Sensor-SDK"}