Code migration
[platform/core/api/media-content.git] / include_product / media_face.h
1 /*
2 * Copyright (c) 2014 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 #ifndef __TIZEN_MEDIA_IMAGE_FACE_H__
18 #define __TIZEN_MEDIA_IMAGE_FACE_H__
19
20 #include <media_content_type.h>
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif /* __cplusplus */
25
26 /**
27  * @file media_face.h
28  * @brief This file contains the media face API and related to all operations with the face information of the image in Media DB. \n
29  *             Functions include cloning and destroying the face handler, getting face information such as face id, face coordinates in file, \n
30  *             face tag. Face information will be managed by DB. To insert face information, you should use media_face_insert_to_db() \n
31  *             or media_info_start_face_detection() API. And you can insert,update,delete face information manually.
32  */
33
34 /**
35  * @addtogroup CAPI_CONTENT_MEDIA_FACE_MODULE
36  * @{
37  */
38
39 /**
40  * @brief Clones the face handle.
41  * @details This function copies the face handle from a source to
42  * destination. There is no media_face_create() function. The media_face_h is created internally and available through
43  * media face foreach function such as media_face_foreach_face_from_db(). To use this handle outside of these foreach functions,
44  * use this function.
45  *
46  * @since_tizen 3.0
47  * @remark The destination handle must be released with media_event_destroy() by you.
48  *
49  * @param [in] src The source face handle
50  * @param [out] dst A destination face handle
51  *
52  * @return 0 on success, otherwise a negative error value.
53  *
54  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
55  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
56  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
57  *
58  * @see media_face_destroy()
59  * @see media_face_foreach_face_from_db()
60  */
61 int media_face_clone(media_face_h *dst, media_face_h src);
62
63 /**
64  * @brief Destroys the face handle.
65  * @details Function frees all resources related to face handle. This
66  * handle no longer can be used to perform any operation. New handle has to
67  * be created before next usage.
68  *
69  * @since_tizen 3.0
70  *
71  * @param [in] face The face handle
72  *
73  * @return 0 on success, otherwise a negative error value.
74  *
75  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
76  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
77  *
78  * @see media_face_clone()
79  *
80  * @pre Get copy of face handle by calling media_face_clone() or Get face handle by calling media_info_foreach_face_from_db()
81  *
82  */
83 int media_face_destroy(media_face_h face);
84
85 /**
86  * @brief Gets the face id from the face handle.
87  *
88  * @since_tizen 3.0
89  *
90  * @remarks You must release @a face_id using free().
91  *
92  * @param [in] face The face handle
93  * @param [out] face_id The uuid of the face handle
94  *
95  * @return 0 on success, otherwise a negative error value.
96  *
97  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
98  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
99  */
100 int media_face_get_face_id(media_face_h face, char **face_id);
101
102 /**
103  * @brief Gets the media uuid from the face handle.
104  *
105  * @since_tizen 3.0
106  *
107  * @remarks You must release @a media_id using free().
108  *
109  * @param [in] face The face handle
110  * @param [out] media_id The media uuid of the face handle
111  *
112  * @return 0 on success, otherwise a negative error value.
113  *
114  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
115  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
116  */
117 int media_face_get_media_id(media_face_h face, char **media_id);
118
119  /**
120  * @brief Gets the face's rectangle from the face handle.
121  * @details This API can get the face's rectangle information. returned rectangle information includes the orientation value.
122  *
123  * @since_tizen 3.0
124  *
125  * @param [in] face The face handle
126  * @param [out] rect_x The x position of face of the face handle
127  * @param [out] rect_y The y position of face of the face handle
128  * @param [out] rect_w The width of face of the face handle
129  * @param [out] rect_h The height of face of the face handle
130  *
131  * @return 0 on success, otherwise a negative error value.
132  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
133  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
134  */
135 int media_face_get_face_rect(media_face_h face, unsigned int *rect_x, unsigned int *rect_y, unsigned int *rect_w, unsigned int *rect_h);
136
137 /**
138  * @brief Gets the orientation from the face handle.
139  * @details This API can get the orientation value from the original image.
140  *
141  * @since_tizen 3.0
142  *
143  * @param [in] face The face handle
144  * @param [out] orientation The orientation of the face handle
145  *
146  * @return 0 on success, otherwise a negative error value.
147  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
148  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
149  */
150 int media_face_get_orientation(media_face_h face, media_content_orientation_e *orientation);
151
152 /**
153  * @brief Gets the tag from the face handle.
154  *
155  * @since_tizen 3.0
156  *
157  * @remarks You must release @a tag using free().
158  *
159  * @param [in] face The face handle
160  * @param [out] tag The tag of the face handle
161  *
162  * @return 0 on success, otherwise a negative error value.
163  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
164  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
165  */
166 int media_face_get_tag(media_face_h face, char **tag);
167
168 /**
169  * @brief Creates the face handle.
170  *
171  * @since_tizen 3.0
172  *
173  * @param [out] face The face handle
174  *
175  * @return 0 on success, otherwise a negative error value.
176  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
177  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
178  *
179  * @see media_face_destroy()
180  */
181 int media_face_create(const char *media_id, media_face_h *face);
182
183 /**
184  * @brief Sets the face rectangle of the face handle
185  *
186  * @since_tizen 3.0
187  *
188  * @param[in] face The face handle
189  * @param[in] rect_x The integer to set as a position x of face rectangle
190  * @param[in] rect_y The integer to set as a position y of face rectangle
191  * @param[in] rect_w The integer to set as a width  of face rectangle
192  * @param[in] rect_h The integer to set as a height of face rectangle
193  *
194  * @return 0 on success, otherwise a negative error value.
195  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
196  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
197  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
198  *
199  * @post media_face_insert_to_db()
200  * @post media_face_update_to_db()
201  *
202  */
203 int media_face_set_face_rect(media_face_h face, unsigned int rect_x, unsigned int rect_y, unsigned int rect_w, unsigned int rect_h);
204
205 /**
206  * @brief Sets the orientation of the face handle
207  * @details This API may set the value of the original image orientation.
208  *
209  * @since_tizen 3.0
210  *
211  * @param[in] face The face handle
212  * @param[in] orientation The integer to set as an orientation
213  *
214  * @return 0 on success, otherwise a negative error value.
215  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
216  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
217  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
218  *
219  * @post media_face_insert_to_db()
220  * @post media_face_update_to_db()
221  *
222  */
223 int media_face_set_orientation(media_face_h face, media_content_orientation_e orientation);
224
225 /**
226  * @brief Sets the tag of the face handle.
227  *
228  * @since_tizen 3.0
229  *
230  * @param [in] face The face handle
231  * @param [in] tag The tag of the face handle
232  *
233  * @return 0 on success, otherwise a negative error value.
234  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
235  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
236  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
237  *
238  * @post media_face_insert_to_db()
239  * @post media_face_update_to_db()
240  */
241 int media_face_set_tag(media_face_h face, const char *tag);
242
243 /**
244  * @brief Inserts a new face in the media database.
245  * @since_tizen 3.0
246  *
247  * @privlevel public
248  * @privilege %http://tizen.org/privilege/content.write
249  *
250  * @remarks The created tag handle must be released using media_tag_destroy().
251  *
252  * @param [in] face The face handle
253  *
254  * @return 0 on success, otherwise a negative error value.
255  *
256  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
257  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
258  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
259  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
260  *
261  * @see media_content_connect()
262  * @see media_face_destroy()
263  * @see media_face_set_xxx()
264  */
265 int media_face_insert_to_db(media_face_h face);
266
267 /**
268  * @brief Updates the face details to the media database.
269  *
270  * @details The function updates the given media face in the media database. The function should be called after any change in face, to be updated to the media
271  * database. For example, after using media_face_set_orientation() for setting the orientation of the face, media_face_update_to_db() function should be called so as to update
272  * the given face attributes in the media database.
273  * @since_tizen 3.0
274  *
275  * @privlevel public
276  * @privilege %http://tizen.org/privilege/content.write
277  *
278  * @param[in] face The face handle to update
279  *
280  * @return 0 on success, otherwise a negative error value.
281  *
282  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
283  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
284  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
285  *
286  * @pre This function requires opened connection to content service by media_content_connect().
287  *
288  * @see media_content_connect()
289  * @see media_face_destroy()
290  * @see media_face_set_xxx()
291  *
292  */
293 int media_face_update_to_db(media_face_h face);
294
295 /**
296  * @brief Deletes the face with given face uuid from the media database.
297  *
298  * @since_tizen 3.0
299  *
300  * @privlevel public
301  * @privilege %http://tizen.org/privilege/content.write
302  *
303  * @param [in] face_id The id of media face
304  *
305  * @return 0 on success, otherwise a negative error value.
306  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
307  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
308  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
309  *
310  * @pre This function requires opened connection to content service by media_content_connect().
311  * @see media_content_connect()
312  *
313  */
314 int media_face_delete_from_db(const char *face_id);
315
316 /**
317  * @}
318  */
319
320 #ifdef __cplusplus
321 }
322 #endif /* __cplusplus */
323
324 #endif /* __TIZEN_MEDIA_IMAGE_FACE_H__ */