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 "STBValidValue.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 #define IS_OUT_FR_SCORE( val , min , max , acceptA , acceptB ) ( IS_OUT_RANGE( val , min , max ) && ( (val) != (acceptA) ) && ( (val) != (acceptB) ) )
dkato 5:49a61433290a 24
dkato 5:49a61433290a 25 /*------------------------------------------------------------------------------------------------------------------*/
dkato 5:49a61433290a 26 /* STB_IsValidValue */
dkato 5:49a61433290a 27 /*------------------------------------------------------------------------------------------------------------------*/
dkato 5:49a61433290a 28 STB_INT32 STB_IsValidValue(const STB_FRAME_RESULT *input, STBExecFlg *execFlg)
dkato 5:49a61433290a 29 {
dkato 5:49a61433290a 30 STB_INT32 i ,j;
dkato 5:49a61433290a 31
dkato 5:49a61433290a 32
dkato 5:49a61433290a 33
dkato 5:49a61433290a 34 if( execFlg->bodyTr == STB_TRUE )
dkato 5:49a61433290a 35 {
dkato 5:49a61433290a 36 if( IS_OUT_RANGE( input->bodys.nCount , STB_BODY_CNT_MIN , STB_BODY_CNT_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 37 for( i = 0 ; i < input->bodys.nCount ; i++)
dkato 5:49a61433290a 38 {
dkato 5:49a61433290a 39 if( IS_OUT_RANGE( input->bodys.body[i].center.nX , STB_BODY_XY_MIN , STB_BODY_XY_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 40 if( IS_OUT_RANGE( input->bodys.body[i].center.nY , STB_BODY_XY_MIN , STB_BODY_XY_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 41 if( IS_OUT_RANGE( input->bodys.body[i].nSize , STB_BODY_SIZE_MIN , STB_BODY_SIZE_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 42 if( IS_OUT_RANGE( input->bodys.body[i].nConfidence , STB_BODY_CONF_MIN , STB_BODY_CONF_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 43 }
dkato 5:49a61433290a 44
dkato 5:49a61433290a 45 }
dkato 5:49a61433290a 46
dkato 5:49a61433290a 47 if( execFlg->faceTr == STB_TRUE )
dkato 5:49a61433290a 48 {
dkato 5:49a61433290a 49 if( IS_OUT_RANGE( input->faces.nCount , STB_FACE_CNT_MIN , STB_FACE_CNT_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 50 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 51 {
dkato 5:49a61433290a 52 if( IS_OUT_RANGE( input->faces.face[i].center.nX , STB_FACE_XY_MIN , STB_FACE_XY_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 53 if( IS_OUT_RANGE( input->faces.face[i].center.nY , STB_FACE_XY_MIN , STB_FACE_XY_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 54 if( IS_OUT_RANGE( input->faces.face[i].nSize , STB_FACE_SIZE_MIN , STB_FACE_SIZE_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 55 if( IS_OUT_RANGE( input->faces.face[i].nConfidence , STB_FACE_CONF_MIN , STB_FACE_CONF_MAX ) ){ 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 || execFlg->age == STB_TRUE
dkato 5:49a61433290a 61 || execFlg->fr == STB_TRUE
dkato 5:49a61433290a 62 || execFlg->exp == STB_TRUE
dkato 5:49a61433290a 63 || execFlg->dir == STB_TRUE
dkato 5:49a61433290a 64 || execFlg->gaz == STB_TRUE
dkato 5:49a61433290a 65 || execFlg->bli == STB_TRUE
dkato 5:49a61433290a 66 )
dkato 5:49a61433290a 67 {
dkato 5:49a61433290a 68 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 69 {
dkato 5:49a61433290a 70 if( IS_OUT_RANGE( input->faces.face[i].direction.nLR , STB_FACE_DIR_LR_MIN , STB_FACE_DIR_LR_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 71 if( IS_OUT_RANGE( input->faces.face[i].direction.nUD , STB_FACE_DIR_UD_MIN , STB_FACE_DIR_UD_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 72 if( IS_OUT_RANGE( input->faces.face[i].direction.nRoll , STB_FACE_DIR_ROLL_MIN , STB_FACE_DIR_ROLL_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 73 if( IS_OUT_RANGE( input->faces.face[i].direction.nConfidence , STB_FACE_DIR_CONF_MIN , STB_FACE_DIR_CONF_MAX ) ){ return STB_FALSE;}
dkato 5:49a61433290a 74 }
dkato 5:49a61433290a 75 }
dkato 5:49a61433290a 76
dkato 5:49a61433290a 77
dkato 5:49a61433290a 78 if( execFlg->age == STB_TRUE )
dkato 5:49a61433290a 79 {
dkato 5:49a61433290a 80 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 81 {
dkato 5:49a61433290a 82 if( IS_OUT_VALUE( input->faces.face[i].age.nAge , STB_FACE_AGE_VAL_MIN , STB_FACE_AGE_VAL_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 83 if( IS_OUT_VALUE( input->faces.face[i].age.nConfidence , STB_FACE_AGE_CONF_MIN , STB_FACE_AGE_CONF_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 84 }
dkato 5:49a61433290a 85 }
dkato 5:49a61433290a 86
dkato 5:49a61433290a 87 if( execFlg->gen == STB_TRUE )
dkato 5:49a61433290a 88 {
dkato 5:49a61433290a 89 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 90 {
dkato 5:49a61433290a 91 if( IS_OUT_VALUE( input->faces.face[i].gender.nGender , STB_FACE_GEN_VAL_MIN , STB_FACE_GEN_VAL_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 92 if( IS_OUT_VALUE( input->faces.face[i].gender.nConfidence , STB_FACE_GEN_CONF_MIN , STB_FACE_GEN_CONF_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 93 }
dkato 5:49a61433290a 94 }
dkato 5:49a61433290a 95
dkato 5:49a61433290a 96 if( execFlg->gaz == STB_TRUE )
dkato 5:49a61433290a 97 {
dkato 5:49a61433290a 98 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 99 {
dkato 5:49a61433290a 100 if( IS_OUT_VALUE( input->faces.face[i].gaze.nLR , STB_FACE_GAZE_LR_MIN , STB_FACE_GAZE_LR_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 101 if( IS_OUT_VALUE( input->faces.face[i].gaze.nUD , STB_FACE_GAZE_UD_MIN , STB_FACE_GAZE_UD_MAX ,STB_ERR_PE_CANNOT ) ){ return STB_FALSE;}
dkato 5:49a61433290a 102 }
dkato 5:49a61433290a 103 }
dkato 5:49a61433290a 104
dkato 5:49a61433290a 105 if( execFlg->bli == STB_TRUE )
dkato 5:49a61433290a 106 {
dkato 5:49a61433290a 107 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 108 {
dkato 5:49a61433290a 109 if( IS_OUT_VALUE( input->faces.face[i].blink.nLeftEye , STB_FACE_BLI_L_MIN , STB_FACE_BLI_L_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 110 if( IS_OUT_VALUE( input->faces.face[i].blink.nRightEye , STB_FACE_BLI_R_MIN , STB_FACE_BLI_R_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 111 }
dkato 5:49a61433290a 112 }
dkato 5:49a61433290a 113
dkato 5:49a61433290a 114 if( execFlg->exp == STB_TRUE )
dkato 5:49a61433290a 115 {
dkato 5:49a61433290a 116 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 117 {
dkato 5:49a61433290a 118 if( IS_OUT_VALUE( input->faces.face[i].expression.nDegree , STB_FACE_EXP_DEG_MIN , STB_FACE_EXP_DEG_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 119 for( j = 0 ; j < STB_EX_MAX ; j++)
dkato 5:49a61433290a 120 {
dkato 5:49a61433290a 121 if( IS_OUT_VALUE( input->faces.face[i].expression.anScore[j] ,STB_FACE_EXP_SCORE_MIN , STB_FACE_EXP_SCORE_MAX ,STB_ERR_PE_CANNOT) ){ return STB_FALSE;}
dkato 5:49a61433290a 122 }
dkato 5:49a61433290a 123
dkato 5:49a61433290a 124 }
dkato 5:49a61433290a 125 }
dkato 5:49a61433290a 126
dkato 5:49a61433290a 127 if( execFlg->fr == STB_TRUE )
dkato 5:49a61433290a 128 {
dkato 5:49a61433290a 129 for( i = 0 ; i < input->faces.nCount ; i++)
dkato 5:49a61433290a 130 {
dkato 5:49a61433290a 131 if( IS_OUT_FR_UID( input->faces.face[i].recognition.nUID , STB_FACE_FR_UID_MIN , STB_FACE_FR_UID_MAX ,STB_ERR_FR_CANNOT ,STB_ERR_FR_NOID ,STB_ERR_FR_NOALBUM ) ){ return STB_FALSE;}
dkato 5:49a61433290a 132 if( IS_OUT_FR_SCORE( input->faces.face[i].recognition.nScore , STB_FACE_FR_SCORE_MIN , STB_FACE_FR_SCORE_MAX ,STB_ERR_FR_CANNOT ,STB_ERR_FR_NOALBUM) ){ return STB_FALSE;}
dkato 5:49a61433290a 133 }
dkato 5:49a61433290a 134 }
dkato 5:49a61433290a 135
dkato 5:49a61433290a 136
dkato 5:49a61433290a 137 return STB_TRUE;
dkato 5:49a61433290a 138 }