Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
drawing the bounding box
조회 수: 1 (최근 30일)
이전 댓글 표시
I am working on "Facial Expression Recognition Using Facial
Characteristic Points and Gini Index" ,In this i have cropped the parts of face manaually such as mouth eye brows,but please tell how to draw bounding box for different facial expression,In what ways the height of mouth and eyebrows differ
Step1. Input the template and the target image.
Step2. Convert the images into gray scale images.
Step3. Find the 2-d convolution of the target and template image.
Step4. Find the mean and variance of the template image.
Step5. Form the search image from the search region of the template size.
I have completed till step 4,please tell how to perform step5
Mycodes
temp_img=imread('face1.bmp');
srv_img=imread('face2.bmp');
C2 = conv2(temp_img,srv_img,'same');
M=mean(temp_img(:));
V = var(double(temp_img(:)));
result=[M V];
please tell how to perform step 5
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!