/usr/include/faust/gui/OCVUI.h is in faust-common 0.9.95~repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | /******************************************************************************
*******************************************************************************
OPENCV USER INTERFACE
*******************************************************************************
*******************************************************************************/
#ifndef _OCVUI_H
#define _OCVUI_H
/**
* \file OCVUI.h
* \brief OpenCV user interface
* \author GRAME, Centre National de Création Musicale
* \date 26/01/2015
*
* This architecture file allows the user to use the OpenCV library in order to perform
* image processing and use the result to control audio parameters.
*
* To use this mode, just add the option -ocv with your faust2jack tool.
*
*/
#ifndef FAUSTFLOAT
#define FAUSTFLOAT float
#endif
// OpenCV includes
#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
// Basic includes
#include <iostream>
#include <ctype.h>
// std::thread
#include <pthread.h>
// OpenCV Main Loop Function Prototype
static void* ocvLoop(void*);
//******** OpenCV User Interface CLASS DEFINITION ********//
class OCVUI : public UI
{
public:
// STRUCTURES
/**
* \struct object
* \brief parameters of an object detected in the image
*
* An object is assimilated to a circle, and characterised by
* its color, its center, its area, and its radius.
*
*/
struct object
{
int color; /*!< Object's color */
float centerX; /*!< Object's center's abscissa */
float centerY; /*!< Object's center's ordinate */
float area; /*!< Object's area */
int radius; /*!< Object's radius */
};
/**
* \struct metadata
* \brief metadata for audio parameters
*
* OpenCV metadata specify which object's characteristics you
* want for an audio parameter.
*
*/
struct metadata
{
FAUSTFLOAT* zone; /*!< Audio parameter's address */
int color; /*!< Object's color */
std::string param; /*!< Object's parameter */
bool used; /*!< Bool variable */
};
// FUNCTIONS
//-- UI Functions Redefinition
// Functions inherited from the UI class
// Constructor
OCVUI() : objects_storage_(0), parameters_storage_(0), height_(0), width_(0){};
// Destructor
~OCVUI()
{
exit_ = true;
pthread_join(loop_, NULL);
};
// -- WIDGETS LAYOUTS
void openTabBox(const char* label){}
void openHorizontalBox(const char* label){}
void openVerticalBox(const char* label){}
void closeBox(){}
// -- ACTIVE WIDGETS
void addButton(const char* label, FAUSTFLOAT* zone){}
void addCheckButton(const char* label, FAUSTFLOAT* zone){}
void addVerticalSlider(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT init, FAUSTFLOAT min,
FAUSTFLOAT max, FAUSTFLOAT step){}
void addHorizontalSlider(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT init, FAUSTFLOAT min,
FAUSTFLOAT max, FAUSTFLOAT step){}
void addNumEntry(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT init, FAUSTFLOAT min,
FAUSTFLOAT max, FAUSTFLOAT step){}
// -- PASSIVE WIDGETS
void addHorizontalBargraph(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT min, FAUSTFLOAT max){}
void addVerticalBargraph(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT min, FAUSTFLOAT max){}
// -- METADATA DECLARATION
/**
* \fn bool parser(std::string string2parse, metadata *pmeta)
* \brief Parsing Function
*
* \param string2parse A string to parse
* \param pmeta Pointer on a metadata structure
*
* This function parses the metadata string, and puts the parameters
* in a metadata structure.
*/
bool parser(std::string string2parse, metadata *pmeta)
{
int SPACE = 32; // Parameters separator
std::vector<std::string> parameters(0);
// String analysis
for (int i = 0 ; i < string2parse.size() ; i++)
{
if (string2parse[i] == SPACE)
{
std::string oneParameter= string2parse.substr(0, i);
parameters.push_back(oneParameter);
string2parse.erase(string2parse.begin(), string2parse.begin()+i+1);
i = 0;
}
}
std::string lastParameter = string2parse;
parameters.push_back(lastParameter);
// Store Parameters in a Metadata Structure
// Parameters count must be 2
if (parameters.size() == 2)
{
/**
* \enum color
* \brief color indexes
*
* Colors are indexed
*/
if (parameters[0]=="red") /*!< red = 1 */
{
pmeta->color = 1;
}
else if (parameters[0]=="yellow") /*!< yellow = 2 */
{
pmeta->color = 2;
}
else if (parameters[0]=="green") /*!< green = 3 */
{
pmeta->color = 3;
}
else if (parameters[0]=="cyan") /*!< cyan = 4 */
{
pmeta->color = 4;
}
else if (parameters[0]=="blue") /*!< blue = 5 */
{
pmeta->color = 5;
}
else if (parameters[0]=="magenta") /*!< magenta = 6 */
{
pmeta->color = 6;
}
pmeta->param = parameters[1];
pmeta->used = false;
return true;
}
else
{
std::cout<<"Wrong count of parameters. Please check if the OpenCV"
<<"metadata is correctly defined"<<std::endl;
return false;
}
}
/**
* \fn void declare(FAUSTFLOAT* zone, const char* key, const char* val)
* \brief metadata declaration
*
* \param zone audio parameter's address
* \param key metadata key/type (here, it must be ocv)
* \param val metadata value
*
* This function gives the metadata string, which will be analysed.
*/
void declare(FAUSTFLOAT* zone, const char* key, const char* val)
{
if (key == "ocv")
{
metadata newMeta;
bool string_parsed = false;
if (zone != 0)
{
newMeta.zone = zone;
}
string_parsed = parser(val, &newMeta);
if (string_parsed)
{
parameters_storage_.push_back(newMeta);
}
}
}
// Image Processing Functions
/**
* \fn void contoursProcess(std::vector<std::vector<cv::Point>> contours, int color)
* \brief Contours processing
*
* \param contours contours of an object
* \param color color of this object
*
* This function approximates contours to rectangles,
* and stores the bigest one as a new object.
*/
void contoursProcess(std::vector<std::vector<cv::Point> > contours, int color)
{
int tempArea = 0;
cv::Rect myRect;
for (int j = 0 ; j<contours.size() ; j++)
{
std::vector<std::vector<cv::Point> > contours_poly( contours.size() );
std::vector<cv::Rect> boundRect( contours.size() );
if (contours[j].size() > 40) // Do not take care about small
// contours
{
approxPolyDP( cv::Mat(contours[j]), contours_poly[j], 3, true );// Approximate contours to
// a polygone
boundRect[j] = cv::boundingRect( cv::Mat(contours_poly[j]) ); // Bound a contour in a
// rectangle
if ((int)boundRect[j].area()>tempArea)
{
tempArea=(int)boundRect[j].area();
myRect = boundRect[j];
}
}
}
if (tempArea != 0)
{
// Create a new object structure to store the object properties
object newObject;
newObject.color = color;
newObject.centerX = myRect.x+myRect.width/2;
newObject.centerY = myRect.y+myRect.height/2;
newObject.area = 1.5*(float)tempArea/(width_*height_);
newObject.radius= (int)MIN(myRect.width/2, myRect.height/2);
// Put the new object in the objects storage.
objects_storage_.push_back(newObject);
}
}
/**
* \fn void erodeAndDilate(cv::Mat image)
* \brief Morphological Opening (Erosion and Dilatation)
*
* \param image mask produced with the "cv::inRange" function.
*
* This function improves a mask shape
* See OpenCV documentation for more informations :
* http://docs.opencv.org/doc/tutorials/imgproc/erosion_dilatation/erosion_dilatation.html
*/
void erodeAndDilate(cv::Mat image)
{
cv::Mat element;
element = cv::getStructuringElement(cv::MORPH_ELLIPSE, cv::Size(3, 3));
// Erase small alone pixels
// http://docs.opencv.org/modules/imgproc/doc/filtering.html#dilate
for (int i = 0; i<2 ; i++)
{
cv::erode(image, image, element);
}
// Enlarge blocks of pixels
// http://docs.opencv.org/modules/imgproc/doc/filtering.html#erode
for (int i = 0; i<10 ; i++)
{
cv::dilate(image, image, element);
}
}
/**
* \fn void drawCircle(object my_object, cv::Mat my_image)
* \brief Draws circles around chosen objects
*
* \param my_object Detected and specified object
* \param my_image image on which to draw
*
* This function draws circles around the objects specified in the metadata
* declaration and detected in the image.
* Note that the circle color depends on the object color.
*/
void drawCircle(object my_object, cv::Mat my_image)
{
cv::Scalar bgr_color;
switch (my_object.color)
{
case 1: // RED
bgr_color = cv::Scalar (0,0,255);
break;
case 2: //YELLOW
bgr_color = cv::Scalar (0, 255, 255);
break;
case 3: // GREEN
bgr_color = cv::Scalar (0, 255, 0);
break;
case 4: // CYAN
bgr_color = cv::Scalar (255, 255, 0);
break;
case 5: // BLUE
bgr_color = cv::Scalar (255,0,0);
break;
case 6: // MAGENTA
bgr_color = cv::Scalar (255, 0, 255);
break;
default: // Add a color !
break;
}
// draw circle
cv::circle(my_image, cv::Point(my_object.centerX, my_object.centerY),
my_object.radius, bgr_color, 2, 8, 0);
}
/**
* \fn imageProcessing(cv::Mat BGRImage)
* \brief Image Processing function for objects detection
*
* \param BGRImage image in BGR color scale, from camera
*
* This function processes a BGR image.
* It converts it into an HSV image, opens it (erodes and dilates), extracts contours from image
* and extracts objects from contours. The objects are stored and circled.
*/
void imageProcessing(cv::Mat BGRImage)
{
height_ = BGRImage.rows;
width_ = BGRImage.cols;
cv::Mat HsvImage;
cv::cvtColor(BGRImage, HsvImage, CV_BGR2HSV); // Convert frame to HSV format
// in order to use "inRange"
// Mask matrices (red, yellow, green, cyan, blue and magenta)
cv::Mat r_mask, y_mask, g_mask, c_mask, b_mask, m_mask;
// Objects contours
std::vector<std::vector<cv::Point> > r_contours, y_contours, g_contours,
c_contours, b_contours, m_contours;
std::vector<cv::Vec4i> hierarchy;
// Get every pixel whose value is between _min and _max
// and put it into a mask
cv::inRange(BGRImage, red_min, red_max, r_mask);
cv::inRange(BGRImage, yellow_min, yellow_max, y_mask);
cv::inRange(BGRImage, green_min, green_max, g_mask);
cv::inRange(BGRImage, cyan_min, cyan_max, c_mask);
cv::inRange(BGRImage, blue_min, blue_max, b_mask);
cv::inRange(BGRImage, magenta_min, magenta_max, m_mask);
// Improve masks shapes
erodeAndDilate(r_mask);
erodeAndDilate(y_mask);
erodeAndDilate(g_mask);
erodeAndDilate(c_mask);
erodeAndDilate(b_mask);
erodeAndDilate(m_mask);
// Get the shapes contours from masks
cv::findContours(r_mask, r_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
cv::findContours(y_mask, y_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
cv::findContours(g_mask, g_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
cv::findContours(c_mask, c_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
cv::findContours(b_mask, b_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
cv::findContours(m_mask, m_contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cv::Point(0, 0) );
// Process every contour. Note that color is taken in account.
for (int i = 1; i <= 6; i++)
{
switch (i)
{
case 1: // RED
contoursProcess(r_contours, 1);
break;
case 2: // YELLOW
contoursProcess(y_contours, 2);
break;
case 3: // GREEN
contoursProcess(g_contours, 3);
break;
case 4: // CYAN
contoursProcess(c_contours, 4);
break;
case 5: // BLUE
contoursProcess(b_contours, 5);
break;
case 6: // MAGENTA
contoursProcess(m_contours, 6);
break;
default: // You'll have to add a new color...
break;
}
}
// Audio parameters setting
for (int i = 0; i<objects_storage_.size(); i++)
{
for (int j = 0; j < parameters_storage_.size(); j++)
{
if (objects_storage_[i].color == parameters_storage_[j].color
&& !parameters_storage_[j].used)
{
if (parameters_storage_[j].param=="color")
{
*parameters_storage_[j].zone=(float)objects_storage_[i].color;
}
else if (parameters_storage_[j].param=="x")
{
*parameters_storage_[j].zone=objects_storage_[i].centerX/width_;
}
else if (parameters_storage_[j].param=="y")
{
*parameters_storage_[j].zone=1-(objects_storage_[i].centerY/height_);
}
else if (parameters_storage_[j].param=="area")
{
*parameters_storage_[j].zone=(float)objects_storage_[i].area;
}
parameters_storage_[j].used=true;
drawCircle(objects_storage_[i], BGRImage);
}
}
}
}
/**
* \fn void empty()
* \brief Empties the object's storage
*
* This function empties the object's storage, and resets the parameters storage
*/
void empty()
{
while (objects_storage_.size() > 0)
{
objects_storage_.pop_back();
}
for (int l = 0; l<parameters_storage_.size(); l++)
{
parameters_storage_[l].used=false;
}
}
/**
* \fn bool exit()
* \brief Return the exit member parameter.
*/
bool exit()
{
return exit_;
}
/**
* \fn void exitThread()
* \brief Exit from thread
*
* \param This function exits from thread
*/
void exitThread()
{
pthread_exit(NULL);
}
/**
* \fn void run()
* \brief Creates and runs the thread
*
* This function creates the image processing thread
*/
bool run()
{
exit_ = false;
if (pthread_create(&loop_, NULL, ocvLoop, (void *)this) == 0) {
return true;
} else {
std::cerr <<"Could not create thread. Thread Creation failed." << std::endl;
return false;
}
}
////////////////////////////////////////////
//// ////
//// MEMBER VARIABLES ////
//// ////
////////////////////////////////////////////
private:
// HSV min and max values variables
// #1 : RED
static cv::Scalar red_min;
static cv::Scalar red_max;
// #2 : YELLOW
static cv::Scalar yellow_min;
static cv::Scalar yellow_max;
// #3 : GREEN
static cv::Scalar green_min;
static cv::Scalar green_max;
// #4 : CYAN
static cv::Scalar cyan_min;
static cv::Scalar cyan_max;
// #5 : BLUE
static cv::Scalar blue_min;
static cv::Scalar blue_max;
// #6 : MAGENTA
static cv::Scalar magenta_min;
static cv::Scalar magenta_max;
// Objects Storage
// Where all the objects are stored
std::vector<object> objects_storage_;
// Parameters Storage
// Where all the "ocv" metadata parameters are stored
std::vector<metadata> parameters_storage_;
// Matrix height and width
int height_, width_;
// Loop thread;
pthread_t loop_;
// Thread EXIT variable
bool exit_;
};
// HSV min and max values
// Note that H is between 0 and 180
// in openCV
// #1 = RED
cv::Scalar OCVUI::red_min = cv::Scalar (0,200,55);
cv::Scalar OCVUI::red_max = cv::Scalar (1,255,255);
// #2 = YELLOW
cv::Scalar OCVUI::yellow_min = cv::Scalar (25, 200, 55);
cv::Scalar OCVUI::yellow_max = cv::Scalar (35, 255, 255);
// #3 = GREEN
cv::Scalar OCVUI::green_min = cv::Scalar (20,155,55);
cv::Scalar OCVUI::green_max = cv::Scalar (50,255,255);
// #4 = CYAN
cv::Scalar OCVUI::cyan_min = cv::Scalar (85,200,55);
cv::Scalar OCVUI::cyan_max = cv::Scalar (95,200,55);
// #5 = BLUE
cv::Scalar OCVUI::blue_min = cv::Scalar (115,155,55);
cv::Scalar OCVUI::blue_max = cv::Scalar (125,255,255);
// #6 = MAGENTA
cv::Scalar OCVUI::magenta_min = cv::Scalar (145,200,55);
cv::Scalar OCVUI::magenta_max = cv::Scalar (155,255,255);
// OpenCV Main Loop Function Implementation
// This function is a loop that gets every frame from a camera
// and calls the image processing functions.
// This is the OCVUI.h main function.
/**
* \fn void* ocvLoop(void* ocv_object)
* \brief Loop function for image processing
*/
void* ocvLoop(void* ocv_object)
{
// The camera index allows to select the camera.
// 0 stands for the default camera.
int camIndex=1;
//std::cout<<"camera index ?"<<std::endl;
//std::cin>>camIndex;
cv::Mat frame, hsv;
OCVUI* ocv = (OCVUI*) ocv_object;
cv::VideoCapture cap(camIndex);
std::cout<<"Video Capture from camera n°"<<camIndex<<std::endl;
if (!cap.isOpened()) // check if we succeeded to read frames
// from camera
{
std::cout<<"Could not open camera n°"<<camIndex<<" !"<<std::endl;
}
cap.set(CV_CAP_PROP_FPS, 60); // Set frames rate
cv::namedWindow("Tracking", 1); // Create a window
while (!ocv->exit())
{
cap >> frame; // Get frame from camera
ocv->imageProcessing(frame); // Objects Detection function
/*** Show image ***/
cv::imshow("Tracking", frame);
ocv->empty(); // Empty the objects and parameters storages
}
ocv->exitThread();
}
#endif
|