Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: GraphicsFramework GR-PEACH_video LCD_shield_config AsciiFont R_BSP USBHost_custom
HVC/STBLib/src/include/STBTracking.h@5:49a61433290a, 2017-09-05 (annotated)
- Committer:
- dkato
- Date:
- Tue Sep 05 10:01:51 2017 +0000
- Revision:
- 5:49a61433290a
Add HVC sensing result stabilizing library
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| dkato | 5:49a61433290a | 1 | /*---------------------------------------------------------------------------*/ |
| dkato | 5:49a61433290a | 2 | /* Copyright(C) 2017 OMRON Corporation */ |
| dkato | 5:49a61433290a | 3 | /* */ |
| dkato | 5:49a61433290a | 4 | /* Licensed under the Apache License, Version 2.0 (the "License"); */ |
| dkato | 5:49a61433290a | 5 | /* you may not use this file except in compliance with the License. */ |
| dkato | 5:49a61433290a | 6 | /* You may obtain a copy of the License at */ |
| dkato | 5:49a61433290a | 7 | /* */ |
| dkato | 5:49a61433290a | 8 | /* http://www.apache.org/licenses/LICENSE-2.0 */ |
| dkato | 5:49a61433290a | 9 | /* */ |
| dkato | 5:49a61433290a | 10 | /* Unless required by applicable law or agreed to in writing, software */ |
| dkato | 5:49a61433290a | 11 | /* distributed under the License is distributed on an "AS IS" BASIS, */ |
| dkato | 5:49a61433290a | 12 | /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ |
| dkato | 5:49a61433290a | 13 | /* See the License for the specific language governing permissions and */ |
| dkato | 5:49a61433290a | 14 | /* limitations under the License. */ |
| dkato | 5:49a61433290a | 15 | /*---------------------------------------------------------------------------*/ |
| dkato | 5:49a61433290a | 16 | |
| dkato | 5:49a61433290a | 17 | #ifndef STBTRACKING_H__ |
| dkato | 5:49a61433290a | 18 | #define STBTRACKING_H__ |
| dkato | 5:49a61433290a | 19 | #include "STBTypedefInput.h" |
| dkato | 5:49a61433290a | 20 | #include "STBHandle.h" |
| dkato | 5:49a61433290a | 21 | |
| dkato | 5:49a61433290a | 22 | VOID SetTrackingObjectBody ( const STB_FRAME_RESULT_BODYS* stbINPUTbodys,TraObj *bodys); |
| dkato | 5:49a61433290a | 23 | VOID SetTrackingObjectFace ( const STB_FRAME_RESULT_FACES *stbINPUTfaces,TraObj *faces); |
| dkato | 5:49a61433290a | 24 | |
| dkato | 5:49a61433290a | 25 | VOID SetTrackingInfoToFace ( STB_TR_RES_FACES *fdResult,STB_INT32 *pnTrackingNum,TraObj *faces); |
| dkato | 5:49a61433290a | 26 | VOID SetTrackingInfoToBody ( STB_TR_RES_BODYS *bdResult,STB_INT32 *pnTrackingNum,TraObj *bodys); |
| dkato | 5:49a61433290a | 27 | |
| dkato | 5:49a61433290a | 28 | VOID SetSrcTrFace ( STB_INT32 nDetCntFace , TraObj *trFace, STB_TR_DET *trSrcInfo); |
| dkato | 5:49a61433290a | 29 | VOID SetSrcTrBody ( STB_INT32 nDetCntBody , TraObj *trBody, STB_TR_DET *trSrcInfo); |
| dkato | 5:49a61433290a | 30 | |
| dkato | 5:49a61433290a | 31 | #endif |