Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
89ce687
update OrbbecSDK library and impl code
hzcyf Sep 18, 2023
c032215
[fix]:building in linux
Sep 21, 2023
2cb1154
[fix]:building in windows
Sep 21, 2023
7c456fb
[fix]:building problem
Sep 22, 2023
261dc22
[fix]:Adjust (k4aversion.h) generation
Sep 22, 2023
8400ec7
Delete include/k4a/k4aversion.h
zzuliys Sep 22, 2023
5c3d603
[fix]:building process in readme.md
Sep 22, 2023
47ee06a
[fix]:resolve missing enums
Sep 22, 2023
293aa69
[feat]:add obbecsdk.dll during installation
Sep 22, 2023
6387864
add Doxyfile and custom target configure to output api reference docu…
hzcyf Sep 26, 2023
660607b
Restore some unnecessary header file modifications and fix some typo
hzcyf Sep 26, 2023
69c83c4
restore cpp file and fix typo on README.md
hzcyf Sep 26, 2023
4ad8da9
Merge branch 'ob/feature/1.1.x_build_ninja' into ob/dev/bolt
Sep 26, 2023
5a37e3c
[fix]:merge
Sep 26, 2023
f1d58fd
Merge pull request #3 from zzuliys/ob/dev/bolt
hzcyf Sep 26, 2023
040abca
Update README.md
hzcyf Sep 26, 2023
1608776
checkout OrbbecSDK branch to bolt-1.7.x-dev
hzcyf Sep 26, 2023
401e289
fix k4ainternal header file include error
hzcyf Sep 26, 2023
93b726b
Modify k4aviewer code to solve the problem of failure to initialize t…
hzcyf Sep 26, 2023
5daf7e7
add attention info on README.md
hzcyf Sep 26, 2023
a5d5333
Update README.md
hzcyf Sep 26, 2023
21b7cc1
Update README.md
hzcyf Sep 26, 2023
efcc837
Update README.md
hzcyf Sep 26, 2023
29f5b10
Fix ob_k4a_impl compile errors in some versions of the compiler
hzcyf Sep 26, 2023
45e266f
add documentation link to README.md
hzcyf Sep 26, 2023
5f3f5a0
Update README.md
hzcyf Sep 26, 2023
d947d00
Update README.md
hzcyf Sep 26, 2023
114bdc4
Update README.md
hzcyf Sep 26, 2023
597db53
Update README.md
hzcyf Sep 26, 2023
da293b9
Update README.md
hzcyf Sep 26, 2023
70d6529
Update README.md
hzcyf Sep 26, 2023
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
add documentation link to README.md
  • Loading branch information
hzcyf committed Sep 26, 2023
commit 45e266fa3ca6f8575b292feea3b17cf368bbf7e9
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ git submodule update --init --recursive
**It is same as the Native K4A, refer to [Building and Dependencies](./docs/building.md)**

Quick Instructions:

* Windows:

```powershell
Expand All @@ -64,6 +65,10 @@ Quick Instructions:

Connect the Orbbec camera to your PC, and run the k4aviewer.

## Documentation

API documentation is available [here](https://orbbec.github.io/docs/OrbbecSDK_K4A_Wrapper/bolt-1.7.x-dev/).

## Attention

1. The library of this branch is not support the K4A device, please use the [Native K4A](https://github.com/microsoft/Azure-Kinect-Sensor-SDK) library to access the K4A device.
Expand Down
2 changes: 1 addition & 1 deletion src/orbbec/OrbbecSDK
4 changes: 2 additions & 2 deletions src/orbbec/ob_k4a_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2040,7 +2040,7 @@ k4a_result_t version_convert(const char *orbbec_version, k4a_version_t *k4a_vers
}

char split_version[MAX_FIREWARE_VERSION_LEN] = { 0 };
size_t count = 0;
int count = 0;

for (int i = 0; i < orbbec_version_len; i++)
{
Expand All @@ -2051,7 +2051,7 @@ k4a_result_t version_convert(const char *orbbec_version, k4a_version_t *k4a_vers
}
}

size_t split_version_len = orbbec_version_len - count;
int split_version_len = orbbec_version_len - count;
memcpy(split_version, orbbec_version + count, (uint16_t)split_version_len);

count = 0;
Expand Down