[MediaVision] Refactoring
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MediaVision / PersonAppearanceDetector.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using static Interop.MediaVision.Surveillance;
19
20 namespace Tizen.Multimedia
21 {
22     /// <summary>
23     /// Provides the ability to detect person appearance changes on image sources.
24     /// </summary>
25     /// <seealso cref="PersonAppearanceDetectionConfiguration"/>
26     public class PersonAppearanceDetector : SurveillanceEngine
27     {
28         private const string KeyAppearedNumber = "NUMBER_OF_APPEARED_PERSONS";
29         private const string KeyDisappearedNumber = "NUMBER_OF_DISAPPEARED_PERSONS";
30         private const string KeyTrackedNumber = "NUMBER_OF_TRACKED_PERSONS";
31         private const string KeyAppearedLocations = "APPEARED_PERSONS_LOCATIONS";
32         private const string KeyDisappearedLocations = "DISAPPEARED_PERSONS_LOCATIONS";
33         private const string KeyTrackedLocations = "TRACKED_PERSONS_LOCATIONS";
34
35         private const string PersonAppearanceEventType = "MV_SURVEILLANCE_EVENT_PERSON_APPEARED_DISAPEARED";
36
37         /// <summary>
38         /// Initializes a new instance of the <see cref="PersonAppearanceDetector"/> class.
39         /// </summary>
40         /// <exception cref="NotSupportedException">The feature is not supported.</exception>
41         public PersonAppearanceDetector() : base(PersonAppearanceEventType)
42         {
43         }
44
45         /// <summary>
46         /// Occurs when the any appearance changes detected.
47         /// </summary>
48         /// <remarks>The event handler will be executed on an internal thread.</remarks>
49         public event EventHandler<PersonAppearanceDetectedEventArgs> Detected;
50
51         internal override void OnEventDetected(IntPtr trigger, IntPtr source, int streamId,
52             IntPtr result, IntPtr _)
53         {
54             try
55             {
56                 Detected?.Invoke(this, CreatePersonAppearanceChangedEventArgs(result));
57             }
58             catch (Exception e)
59             {
60                 MultimediaLog.Error(MediaVisionLog.Tag, "Failed to invoke Recognized event.", e);
61             }
62         }
63
64
65         private PersonAppearanceDetectedEventArgs CreatePersonAppearanceChangedEventArgs(IntPtr result)
66         {
67             return new PersonAppearanceDetectedEventArgs(
68                 GetResultAreas(result, KeyAppearedNumber, KeyAppearedLocations),
69                 GetResultAreas(result, KeyDisappearedNumber, KeyDisappearedLocations),
70                 GetResultAreas(result, KeyTrackedNumber, KeyTrackedLocations)
71                 );
72         }
73
74         private static Rectangle[] GetResultAreas(IntPtr result, string countKey, string regionsKey)
75         {
76             int count = 0;
77             GetResultValue(result, countKey, out count).Validate("Failed to get result");
78
79             var rects = new Interop.MediaVision.Rectangle[count];
80             if (count > 0)
81             {
82                 GetResultValue(result, regionsKey, rects).Validate("Failed to get result");
83             }
84
85             return Interop.ToApiStruct(rects);
86         }
87
88         /// <summary>
89         /// Adds <see cref="SurveillanceSource"/>.
90         /// </summary>
91         /// <param name="source">The source used for recognition.</param>
92         /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
93         /// <exception cref="ObjectDisposedException">The <see cref="PersonAppearanceDetector"/> has already been disposed of.</exception>
94         /// <see cref="SurveillanceSource.Push(MediaVisionSource)"/>
95         public void AddSource(SurveillanceSource source)
96         {
97             AddSource(source, null);
98         }
99
100         /// <summary>
101         /// Adds <see cref="SurveillanceSource"/> with the provided <see cref="PersonAppearanceDetectionConfiguration"/>.
102         /// </summary>
103         /// <param name="source">The source used for recognition.</param>
104         /// <param name="config">The config for the <paramref name="source"/>. This value can be null.</param>
105         /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
106         /// <exception cref="ObjectDisposedException">
107         ///     The <see cref="PersonAppearanceDetector"/> has already been disposed of.\n
108         ///     - or -\n
109         ///     <paramref name="config"/> has already been disposed of.
110         /// </exception>
111         /// <see cref="SurveillanceSource.Push(MediaVisionSource)"/>
112         public void AddSource(SurveillanceSource source, PersonAppearanceDetectionConfiguration config)
113         {
114             InvokeAddSource(source, config);
115         }
116     }
117 }