2015-03-09 18:22:07 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
|
|
|
#include <opencv\highgui.h>
|
2015-03-09 19:55:15 +00:00
|
|
|
#include <filesystem>
|
2015-03-09 18:22:07 +00:00
|
|
|
|
|
|
|
#include "Frame.h"
|
|
|
|
#include "Face.h"
|
|
|
|
#include "ImageListener.h"
|
|
|
|
#include "FrameDetector.h"
|
|
|
|
#include "AffdexException.h"
|
|
|
|
|
|
|
|
using namespace std;
|
2015-04-21 18:45:01 +00:00
|
|
|
using namespace affdex;
|
2015-03-09 18:22:07 +00:00
|
|
|
|
|
|
|
float last_timestamp = -1.0f;
|
|
|
|
float capture_fps = -1.0f;
|
|
|
|
float process_last_timestamp = -1.0f;
|
|
|
|
float process_fps = -1.0f;
|
|
|
|
|
|
|
|
|
|
|
|
class PlottingImageListener : public ImageListener
|
|
|
|
{
|
|
|
|
public:
|
2015-04-21 18:45:01 +00:00
|
|
|
void onImageResults(std::map<FaceId,Face> faces, Frame image) {
|
2015-03-09 18:22:07 +00:00
|
|
|
|
2015-09-03 19:50:04 +00:00
|
|
|
const int spacing = 10;
|
|
|
|
const int left_margin = 30;
|
|
|
|
const int font = cv::FONT_HERSHEY_COMPLEX_SMALL;
|
|
|
|
float font_size = 0.5f;
|
|
|
|
cv::Scalar clr = cv::Scalar(0, 0, 255);
|
|
|
|
cv::Scalar header_clr = cv::Scalar(255, 0, 0);
|
2015-03-09 18:22:07 +00:00
|
|
|
shared_ptr<byte> imgdata = image.getBGRByteArray();
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::Mat mImg = cv::Mat(image.getHeight(), image.getWidth(), CV_8UC3, imgdata.get());
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < faces.size(); i++)
|
2015-03-09 18:22:07 +00:00
|
|
|
{
|
|
|
|
Face f = faces[i];
|
2015-09-03 19:50:04 +00:00
|
|
|
VecFeaturePoint points = f.featurePoints;
|
|
|
|
for (auto& point : points) //Draw face feature points.
|
2015-03-09 18:22:07 +00:00
|
|
|
{
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::circle(mImg, cv::Point(point.x, point.y), 1.0f, cv::Scalar(0, 0, 255));
|
2015-03-09 18:22:07 +00:00
|
|
|
}
|
2015-09-03 19:50:04 +00:00
|
|
|
Orientation headAngles = f.measurements.orientation;
|
|
|
|
std::string strAngles = "Pitch: " + std::to_string(headAngles.pitch) +
|
|
|
|
" Yaw: " + std::to_string(headAngles.yaw) +
|
|
|
|
" Roll: " + std::to_string(headAngles.roll) +
|
|
|
|
" InterOcularDist: " + std::to_string(f.measurements.interocularDistance);
|
2015-03-09 18:22:07 +00:00
|
|
|
|
|
|
|
//Output the results of the different classifiers.
|
2015-09-03 19:50:04 +00:00
|
|
|
int padding = 10;
|
|
|
|
|
|
|
|
std::vector<std::string> expressions{ "smile", "innerBrowRaise", "browRaise", "browFurrow", "noseWrinkle",
|
|
|
|
"upperLipRaise", "lipCornerDepressor", "chinRaise", "lipPucker", "lipPress",
|
|
|
|
"lipSuck", "mouthOpen", "smirk", "eyeClosure", "attention" };
|
|
|
|
|
|
|
|
std::vector<std::string> emotions{ "joy", "fear", "disgust", "sadness", "anger", "surprise", "contempt", "valence", "engagement" };
|
|
|
|
|
|
|
|
cv::putText(mImg, "MEASUREMENTS", cv::Point(left_margin, padding += spacing), font, font_size, header_clr);
|
2015-03-09 18:22:07 +00:00
|
|
|
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::putText(mImg, strAngles, cv::Point(left_margin, padding += spacing), font, font_size, clr);
|
2015-03-09 18:22:07 +00:00
|
|
|
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::putText(mImg, "EXPRESSIONS", cv::Point(left_margin, padding += (spacing * 2)), font, font_size, header_clr);
|
|
|
|
|
|
|
|
float * values = (float *)&f.expressions;
|
|
|
|
for (string expression : expressions)
|
2015-03-09 18:22:07 +00:00
|
|
|
{
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::putText(mImg, expression + ": " + std::to_string(int(*values)), cv::Point(left_margin, padding += spacing), font, font_size, clr);
|
|
|
|
values++;
|
2015-03-09 18:22:07 +00:00
|
|
|
}
|
2015-09-03 19:50:04 +00:00
|
|
|
|
|
|
|
cv::putText(mImg, "EMOTIONS", cv::Point(left_margin, padding += (spacing * 2)), font, font_size, header_clr);
|
|
|
|
|
|
|
|
values = (float *)&f.emotions;
|
|
|
|
|
|
|
|
for (string emotion : emotions)
|
|
|
|
{
|
|
|
|
cv::putText(mImg, emotion + ": " + std::to_string(int(*values)), cv::Point(left_margin, padding += spacing), font, font_size, clr);
|
|
|
|
values++;
|
|
|
|
}
|
|
|
|
std::cerr << "Timestamp: " << image.getTimestamp()
|
|
|
|
<< "," << image.getWidth()
|
|
|
|
<< "x" << image.getHeight()
|
|
|
|
<< " cfps: " << capture_fps
|
|
|
|
<< " pnts: " << points.size() << endl;
|
2015-03-09 18:22:07 +00:00
|
|
|
process_last_timestamp = image.getTimestamp();
|
2015-09-03 19:50:04 +00:00
|
|
|
|
2015-03-09 18:22:07 +00:00
|
|
|
}
|
2015-09-03 19:50:04 +00:00
|
|
|
cv::putText(mImg, "capture fps: " + std::to_string(int(capture_fps)), cv::Point(mImg.cols - 110, mImg.rows - left_margin - spacing), font, font_size, clr);
|
|
|
|
|
|
|
|
cv::imshow("analyze-image", mImg);
|
|
|
|
|
2015-03-09 18:22:07 +00:00
|
|
|
cv::waitKey(30);
|
|
|
|
};
|
|
|
|
|
|
|
|
void onImageCapture(Frame image) override
|
|
|
|
{};
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argsc, char ** argsv)
|
|
|
|
{
|
|
|
|
|
|
|
|
try{
|
|
|
|
// Parse and check the data folder (with assets)
|
2015-04-21 19:19:54 +00:00
|
|
|
const std::wstring AFFDEX_DATA_DIR = L"C:\\Program Files (x86)\\Affectiva\\Affdex SDK\\data";
|
|
|
|
const std::wstring AFFDEX_LICENSE_FILE = L"affdex.license";
|
2015-03-09 18:22:07 +00:00
|
|
|
|
|
|
|
int framerate = 30;
|
|
|
|
int process_frame_rate = 30;
|
|
|
|
int buffer_length = 2;
|
|
|
|
|
|
|
|
FrameDetector frameDetector(buffer_length, process_frame_rate); // Init the FrameDetector Class
|
|
|
|
shared_ptr<ImageListener> listenPtr(new PlottingImageListener()); // Instanciate the ImageListener class
|
|
|
|
|
|
|
|
cv::VideoCapture webcam(0); //Connect to the first webcam
|
|
|
|
webcam.set(CV_CAP_PROP_FPS, framerate); //Set webcam framerate.
|
|
|
|
std::cerr << "Setting the webcam frame rate to: " << framerate << std::endl;
|
|
|
|
auto start_time = std::chrono::system_clock::now();
|
|
|
|
if (!webcam.isOpened())
|
|
|
|
{
|
|
|
|
std::cerr << "Error opening webcam!" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Initialize detectors
|
2015-09-03 19:50:04 +00:00
|
|
|
frameDetector.setDetectAllEmotions(true);
|
|
|
|
frameDetector.setDetectAllExpressions(true);
|
2015-04-21 19:19:54 +00:00
|
|
|
frameDetector.setClassifierPath(AFFDEX_DATA_DIR);
|
|
|
|
frameDetector.setLicensePath(AFFDEX_LICENSE_FILE);
|
2015-03-09 18:22:07 +00:00
|
|
|
frameDetector.setImageListener(listenPtr.get());
|
|
|
|
//Start the frame detector thread.
|
|
|
|
frameDetector.start();
|
|
|
|
|
|
|
|
do{
|
|
|
|
cv::Mat img;
|
|
|
|
if (!webcam.read(img)) //Capture an image from the camera
|
|
|
|
{
|
|
|
|
std::cerr << "Failed to read frame from webcam! " << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Calculate the Image timestamp and the capture frame rate;
|
|
|
|
const auto milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now() - start_time);
|
|
|
|
const float seconds = milliseconds.count() / 1000.f;
|
|
|
|
// Create a frame
|
|
|
|
Frame f(img.size().width, img.size().height, img.data, Frame::COLOR_FORMAT::BGR, seconds);
|
|
|
|
capture_fps = 1.0f / (seconds - last_timestamp);
|
|
|
|
last_timestamp = seconds;
|
|
|
|
std::cerr << "Capture framerate = " << capture_fps << std::endl;
|
|
|
|
frameDetector.process(f); //Pass the frame to detector
|
|
|
|
} while (!GetAsyncKeyState(VK_ESCAPE));
|
|
|
|
|
|
|
|
frameDetector.stop(); //Stop frame detector thread
|
|
|
|
}
|
|
|
|
catch (AffdexException ex)
|
|
|
|
{
|
|
|
|
std::cerr << "Encountered an AffdexException " << ex.what();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
catch (std::exception ex)
|
|
|
|
{
|
|
|
|
std::cerr << "Encountered an exception " << ex.what();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
catch (std::runtime_error err)
|
|
|
|
{
|
|
|
|
std::cerr << "Encountered a runtime error " << err.what();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|