Sample to operate omron HVC-P2 on GR-PEACH.

Dependencies:   AsciiFont

Information

Please see here for Japanese version.
日本語版はこちらを参照ください。

What is this ?

This is a sample that runs OMRON HVC-P2 with GR-PEACH. In this sample, you can try following among the functions of HVC-P2 : Human Body Detection, Face Detection, Age Estimation, Gender Estimation, Expression Estimation and Face Recognition.
Both GR-PEACH and HVC-P2 use Renesas RZ/A1H included ARM® Cortex™-A9 processor.

/media/uploads/dkato/hvcp2_demo_img3.jpg

HVC-P2 (Human Vision Components B5T-007001) is a human-sensing component that recognizes people. It is an integrated module that is built into other device and provides both the OKAO Vision's ten types of image sensing and a camera module.
For details, please refer to the following link.

In the HVCApi folder of this sample, the code of the following link destination Sample Code "SampleCode_rev.2.0.2" is used. (You can download from "Product Information" -> "Sample Code" in the middle of the following page.)
http://www.omron.com/ecb/products/mobile/hvc_p2/

Constitution

  1. HVC-P2 x 1
  2. USBA-microUSB conversion cable x 2
  3. USBA-microUSB conversion adapter x 1
  4. GR-PEACH x 1
  5. 4.3inc LCD shield x 1

/media/uploads/dkato/composition_hvcp2_demo.jpg

/media/uploads/dkato/composition_hvcp2_demo_2.jpg

Please close JP3 of GR-PEACH.
/media/uploads/RyoheiHagimoto/usb.jpg

How to use

It starts when connecting the power supply USB cable. At startup, all functions are turned off. By pressing the button on the right of the screen you can switch the function on / off.

  • Function ON : orange or green
  • Function OFF : blue or gray

Only the FACE button changes to "FACE (blue) -> FACE (orange) -> RECOGNITION (green)". When FACE (blue), following buttons are gray and can not be operated : AGE, GENDER and EXPRESSION.
"Response time" at the bottom left of the screen indicates "image processing + USB transfer time". It is not pure image processing time.

Register Data (Face Recognition)

Set the FACE button to RECOGNITION (green), and touch the screen with one person on the screen to register the face. In this sample, face registration will record up to 10 people. Delete the old registrant when registering after 11 people. Registration information is stored in the RAM on the HVC-P2 side. It is discarded by power off and reset.

/media/uploads/dkato/hvcp2_demo_img2.jpg

Change parameters

When you press Config icon at the bottom right of the screen, the parameter setting screen is displayed. You can change threshold value, detection size and face angle parameters.

/media/uploads/dkato/hvcp2_demo_config_icon.jpg
/media/uploads/dkato/hvcp2_demo_config.jpg

Change transfer image size

By pressing USER_BUTTON0 on the back of the board, the image transfer size switches in the order of "160 x 120 -> 320 x 240 -> no image".
/media/uploads/dkato/gr-peach_switch2.jpg

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?

UserRevisionLine numberNew 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 #include "STBPeValidValue.h"
dkato 5:49a61433290a 18
dkato 5:49a61433290a 19 /*Value range check*/
dkato 5:49a61433290a 20 #define IS_OUT_RANGE( val , min , max ) ( ( (val) < (min) ) || ( (max) < (val) ) )
dkato 5:49a61433290a 21 #define IS_OUT_VALUE( val , min , max , accept ) ( IS_OUT_RANGE( val , min , max ) && ( (val) != (accept) ) )
dkato 5:49a61433290a 22 #define IS_OUT_FR_UID( val , min , max , acceptA , acceptB , acceptC ) ( IS_OUT_RANGE( val , min , max ) && ( (val) != (acceptA) ) && ( (val) != (acceptB) ) && ( (val) != (acceptC) ) )
dkato 5:49a61433290a 23
dkato 5:49a61433290a 24 /*------------------------------------------------------------------------------------------------------------------*/
dkato 5:49a61433290a 25 /* STB_PeIsValidValue */
dkato 5:49a61433290a 26 /*------------------------------------------------------------------------------------------------------------------*/
dkato 5:49a61433290a 27 STB_INT32 STB_PeIsValidValue(const STB_PE_DET *input, STBExecFlg *execFlg)
dkato 5:49a61433290a 28 {
dkato 5:49a61433290a 29 STB_INT32 i ,j;
dkato 5:49a61433290a 30
dkato 5:49a61433290a 31 if( execFlg->gen == STB_TRUE
dkato 5:49a61433290a 32 || execFlg->age == STB_TRUE
dkato 5:49a61433290a 33 || execFlg->fr == STB_TRUE
dkato 5:49a61433290a 34 || execFlg->exp == STB_TRUE
dkato 5:49a61433290a 35 || execFlg->dir == STB_TRUE
dkato 5:49a61433290a 36 || execFlg->gaz == STB_TRUE
dkato 5:49a61433290a 37 || execFlg->bli == STB_TRUE
dkato 5:49a61433290a 38 )
dkato 5:49a61433290a 39 {
dkato 5:49a61433290a 40 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 41 {
dkato 5:49a61433290a 42 if( IS_OUT_VALUE( input->fcDet[i].dirDetYaw , STB_FACE_DIR_LR_MIN , STB_FACE_DIR_LR_MAX , STB_ERR_DIR_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 43 if( IS_OUT_VALUE( input->fcDet[i].dirDetPitch , STB_FACE_DIR_UD_MIN , STB_FACE_DIR_UD_MAX , STB_ERR_DIR_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 44 if( IS_OUT_VALUE( input->fcDet[i].dirDetRoll , STB_FACE_DIR_ROLL_MIN , STB_FACE_DIR_ROLL_MAX , STB_ERR_DIR_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 45 if( IS_OUT_VALUE( input->fcDet[i].dirDetConf , STB_FACE_DIR_CONF_MIN , STB_FACE_DIR_CONF_MAX , STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 46 }
dkato 5:49a61433290a 47 }
dkato 5:49a61433290a 48
dkato 5:49a61433290a 49
dkato 5:49a61433290a 50 if( execFlg->age == STB_TRUE )
dkato 5:49a61433290a 51 {
dkato 5:49a61433290a 52 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 53 {
dkato 5:49a61433290a 54 if( IS_OUT_VALUE( input->fcDet[i].ageDetVal , STB_FACE_AGE_VAL_MIN , STB_FACE_AGE_VAL_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 55 if( IS_OUT_VALUE( input->fcDet[i].ageDetConf , STB_FACE_AGE_CONF_MIN , STB_FACE_AGE_CONF_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 56 }
dkato 5:49a61433290a 57 }
dkato 5:49a61433290a 58
dkato 5:49a61433290a 59 if( execFlg->gen == STB_TRUE )
dkato 5:49a61433290a 60 {
dkato 5:49a61433290a 61 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 62 {
dkato 5:49a61433290a 63 if( IS_OUT_VALUE( input->fcDet[i].genDetVal , STB_FACE_GEN_VAL_MIN , STB_FACE_GEN_VAL_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 64 if( IS_OUT_VALUE( input->fcDet[i].genDetConf , STB_FACE_GEN_CONF_MIN , STB_FACE_GEN_CONF_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 65 }
dkato 5:49a61433290a 66 }
dkato 5:49a61433290a 67
dkato 5:49a61433290a 68 if( execFlg->gaz == STB_TRUE )
dkato 5:49a61433290a 69 {
dkato 5:49a61433290a 70 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 71 {
dkato 5:49a61433290a 72 if( IS_OUT_VALUE( input->fcDet[i].gazDetLR , STB_FACE_GAZE_LR_MIN , STB_FACE_GAZE_LR_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 73 if( IS_OUT_VALUE( input->fcDet[i].gazDetUD , STB_FACE_GAZE_UD_MIN , STB_FACE_GAZE_UD_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 74 }
dkato 5:49a61433290a 75 }
dkato 5:49a61433290a 76
dkato 5:49a61433290a 77 if( execFlg->bli == STB_TRUE )
dkato 5:49a61433290a 78 {
dkato 5:49a61433290a 79 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 80 {
dkato 5:49a61433290a 81 if( IS_OUT_VALUE( input->fcDet[i].bliDetL , STB_FACE_BLI_L_MIN , STB_FACE_BLI_L_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 82 if( IS_OUT_VALUE( input->fcDet[i].bliDetR , STB_FACE_BLI_R_MIN , STB_FACE_BLI_R_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 83 }
dkato 5:49a61433290a 84 }
dkato 5:49a61433290a 85
dkato 5:49a61433290a 86 if( execFlg->exp == STB_TRUE )
dkato 5:49a61433290a 87 {
dkato 5:49a61433290a 88 for( i = 0 ; i < input->num ; i++)
dkato 5:49a61433290a 89 {
dkato 5:49a61433290a 90 if( IS_OUT_VALUE( input->fcDet[i].expDetConf, STB_FACE_EXP_DEG_MIN , STB_FACE_EXP_DEG_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 91 for( j = 0 ; j < STB_EX_MAX ; j++)
dkato 5:49a61433290a 92 {
dkato 5:49a61433290a 93 if( IS_OUT_VALUE( input->fcDet[i].expDetVal[j] ,STB_FACE_EXP_SCORE_MIN , STB_FACE_EXP_SCORE_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 94 }
dkato 5:49a61433290a 95
dkato 5:49a61433290a 96 }
dkato 5:49a61433290a 97 }
dkato 5:49a61433290a 98
dkato 5:49a61433290a 99
dkato 5:49a61433290a 100
dkato 5:49a61433290a 101
dkato 5:49a61433290a 102 return STB_TRUE;
dkato 5:49a61433290a 103 }