Lines Matching refs:processing
6 The ImageProcessing module provides APIs for image processing, including Color Space Conversion (CS…
20 | [image_processing.h](image__processing_8h.md) | Declares the image processing functions.|
21 | [image_processing_types.h](image__processing__types_8h.md) | Declares the image processing types.…
40 …Code](#imageprocessing_errorcode) | Defines an enum for the error codes used in image processing.|
48 …>IMAGE_PROCESSING_ERROR_INVALID_VALUE<br>} | Enumerates the error codes used in image processing.|
55 …nitializeenvironment) (void) | Initializes the global environment of the image processing module.|
56 …tializeenvironment) (void) | Deinitializes the global environment of the image processing module.|
61 …g](#oh_imageprocessing) \*\*imageProcessor, int32_t type) | Creates an image processing instance.|
62 …_ImageProcessing](#oh_imageprocessing) \*imageProcessor) | Destroys an image processing instance.|
63 …onst [OH_AVFormat](#oh_avformat) \*parameter) | Sets a parameter for the image processing module.|
64 …r, [OH_AVFormat](#oh_avformat) \*parameter) | Obtains a parameter of the image processing module.|
76 …mage_processing_type_color_space_conversion) | Used to create an image processing instance for CSC…
77 …OSITION](#image_processing_type_composition) | Used to create an image processing instance for con…
78 …ITION](#image_processing_type_decomposition) | Used to create an image processing instance for con…
79 …(#image_processing_type_metadata_generation) | Used to create an image processing instance for met…
80 …CER](#image_processing_type_detail_enhancer) | Used to create an image processing instance for det…
137 Defines an enum for the error codes used in image processing.
165 …eate an image processing instance, the pointer must be null. You can create different image proces…
222 Enumerates the error codes used in image processing.
228 | IMAGE_PROCESSING_SUCCESS | The processing is successful.|
232 | IMAGE_PROCESSING_ERROR_CREATE_FAILED | Creating the image processing instance fails. For example,…
233 | IMAGE_PROCESSING_ERROR_PROCESS_FAILED | The processing fails. For example, the processing times o…
234 …ROCESSING | The processing type is not supported. You can call OH_ImageProcessing_Is*XXX*Supported…
237 | IMAGE_PROCESSING_ERROR_INVALID_INSTANCE | The image processing instance is invalid, for example, …
262 | imageProcessor | Pointer to an image processing instance, which is created by [IMAGE_PROCESSING_T…
269 - Returns **IMAGE_PROCESSING_SUCCESS** if image processing is successful.
270 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
273 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if image processing is not supported.
274 - Returns **IMAGE_PROCESSING_ERROR_PROCESS_FAILED** if an error occurs during image processing.
296 | imageProcessor | Pointer to an image processing instance, which is created by [IMAGE_PROCESSING_T…
302 - Returns **IMAGE_PROCESSING_SUCCESS** if image processing is successful.
303 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
306 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if image processing is not supported.
307 - Returns **IMAGE_PROCESSING_ERROR_PROCESS_FAILED** if an error occurs during image processing.
319 Creates an image processing instance.
327 … Double pointer to the image processing instance created. The pointer **\*imageProcessor** points …
328 | type | Image processing type. The processing type cannot be changed after the instance is created…
333 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if the specified image processing type …
336 - Returns **IMAGE_PROCESSING_ERROR_INVALID_PARAMETER** if the specified image processing type is in…
357 | imageProcessor | Pointer to an image processing instance, which is created by [IMAGE_PROCESSING_T…
364 - Returns **IMAGE_PROCESSING_SUCCESS** if image processing is successful.
365 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
368 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if image processing is not supported.
369 - Returns **IMAGE_PROCESSING_ERROR_PROCESS_FAILED** if an error occurs during image processing.
381 Deinitializes the global environment of the image processing module.
383 …main process is about to exit. Do not call this function when an image processing instance exists …
390 - Returns **IMAGE_PROCESSING_ERROR_OPERATION_NOT_PERMITTED** if the image processing instance is no…
401 Destroys an image processing instance.
409 | imageProcessor | Pointer to an image processing instance, You are advised to set the pointer to a…
414 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
435 | imageProcessor | Pointer to an image processing instance, which is created by [IMAGE_PROCESSING_T…
441 - Returns **IMAGE_PROCESSING_SUCCESS** if image processing is successful.
442 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
445 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if image processing is not supported.
446 - Returns **IMAGE_PROCESSING_ERROR_PROCESS_FAILED** if an error occurs during image processing.
466 | imageProcessor | Pointer to an image processing instance, which is created by [IMAGE_PROCESSING_T…
471 - Returns **IMAGE_PROCESSING_SUCCESS** if image processing is successful.
472 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
475 - Returns **IMAGE_PROCESSING_ERROR_UNSUPPORTED_PROCESSING** if image processing is not supported.
476 - Returns **IMAGE_PROCESSING_ERROR_PROCESS_FAILED** if an error occurs during image processing.
488 Obtains a parameter of the image processing module.
498 | imageProcessor | Pointer to an image processing instance.|
499 | parameter | Pointer to the parameter used by the image processing instance.|
504 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
516 Initializes the global environment of the image processing module.
518 … started. It is used to initialize the global environment of the image processing module and reduc…
632 Sets a parameter for the image processing module.
642 | imageProcessor | Pointer to an image processing instance.|
648 …PROCESSING_ERROR_INVALID_INSTANCE** if the instance is null or is not an image processing instance.
686 Used to create an image processing instance for CSC.
705 Used to create an image processing instance for converting a dual-layer HDR image into a single-lay…
724 Used to create an image processing instance for converting a single-layer HDR image into a dual-lay…
743 Used to create an image processing instance for detail enhancement.
762 Used to create an image processing instance for metadata generation.