1 /* 2 * GStreamer 3 * Copyright (C) 2011 Robert Jobbagy <jobbagy.robert@gmail.com> 4 * Copyright (C) 2011 - 2018 Nicola Murino <nicola.murino@gmail.com> 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 * 24 * Alternatively, the contents of this file may be used under the 25 * GNU Lesser General Public License Version 2.1 (the "LGPL"), in 26 * which case the following provisions apply instead of the ones 27 * mentioned above: 28 * 29 * This library is free software; you can redistribute it and/or 30 * modify it under the terms of the GNU Library General Public 31 * License as published by the Free Software Foundation; either 32 * version 2 of the License, or (at your option) any later version. 33 * 34 * This library is distributed in the hope that it will be useful, 35 * but WITHOUT ANY WARRANTY; without even the implied warranty of 36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 37 * Library General Public License for more details. 38 * 39 * You should have received a copy of the GNU Library General Public 40 * License along with this library; if not, write to the 41 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 42 * Boston, MA 02110-1301, USA. 43 */ 44 45 #ifndef MOTIONCELLS_WRAPPER_H 46 #define MOTIONCELLS_WRAPPER_H 47 48 #include <stdbool.h> 49 50 #ifdef __cplusplus 51 #include "MotionCells.h" 52 struct instanceOfMC 53 { 54 int id; 55 MotionCells *mc; 56 }; 57 58 int searchIdx (int p_id); 59 extern "C" 60 { 61 #endif 62 63 int motion_cells_init (); 64 int perform_detection_motion_cells (cv::Mat p_image, double p_sensitivity, 65 double p_framerate, int p_gridx, int p_gridy, 66 long int p_timestamp_millisec, bool p_isVisible, bool p_useAlpha, 67 int motionmaskcoord_count, motionmaskcoordrect * motionmaskcoords, 68 int motionmaskcells_count, motioncellidx * motionmaskcellsidx, 69 cellscolor motioncellscolor, int motioncells_count, 70 motioncellidx * motioncellsidx, gint64 starttime, char *datafile, 71 bool p_changed_datafile, int p_thickness, int p_id); 72 void setPrevFrame (cv::Mat p_prevFrame, int p_id); 73 void motion_cells_free (int p_id); 74 void motion_cells_free_resources (int p_id); 75 char *getMotionCellsIdx (int p_id); 76 int getMotionCellsIdxCnt (int p_id); 77 bool getChangedDataFile (int p_id); 78 char *getInitDataFileFailed (int p_id); 79 char *getSaveDataFileFailed (int p_id); 80 int getInitErrorCode (int p_id); 81 int getSaveErrorCode (int p_id); 82 83 #ifdef __cplusplus 84 } 85 #endif 86 87 #endif /* MOTIONCELLS_WRAPPER_H */ 88