* @section CAPI_MEDIA_VISION_INFERENCE_MODULE_OVERVIEW Overview
* @ref CAPI_MEDIA_VISION_INFERENCE_MODULE contains #mv_inference_h handle to perform
* Image Classification, Object Detection, Face and Facial Landmark detection.
- * Inference handle should be created with mv_inference_create() and destoryed with
+ * Inference handle should be created with mv_inference_create() and destroyed with
* mv_inference_destroy(). #mv_inference_h should be configured by calling
* mv_inference_configure(). After configuration, #mv_inference_h should be prepared by
* calling mv_inference_prepare() which loads models and set required parameters.
* to set rotation count attribute of the engine configuration.
* @details If #MV_BARCODE_DETECT_ATTR_ROTATION_DEGREES, #MV_BARCODE_DETECT_ATTR_ROTATION_COUNT,
* and #MV_BARCODE_DETECT_ATTR_ROTATION_DIRECTION are set to
- * 20, 9, and MV_BARCODE_DETECT_ATTR_ROTATION_CLOCKWISE, repectively,\n
+ * 20, 9, and MV_BARCODE_DETECT_ATTR_ROTATION_CLOCKWISE, respectively,\n
* detection will be tried with 20, 40, 60, ... 180 degrees as well as 0 degrees.\n
* Similarly, -20, -40, -60, ... will be tried for #MV_BARCODE_DETECT_ATTR_ROTATION_COUNTER_CLOCKWISE and
* -20, +20, -40, +40, ... will be tried iteratively for #MV_BARCODE_DETECT_ATTR_ROTATION_ALL.