Notes.txt
上传用户:bjtznx
上传日期:2022-07-26
资源大小:1k
文件大小:1k
源码类别:

OpenCV

开发平台:

Visual C++

  1. Region of Interest is a rectangular area in an image, to segment object for further processing.
  2. Once the ROI defined, most OpenCV functions will performed only on that particular location. This is useful, for example when we want to crop an object from an image, or when we want to perform template matching within subimage. Note that the Region of Interest has to be inside the image.
  3. In this code it is shown that how to set the Region of Interest (ROI) for further processing. This is done with an AVI file and only the segmented part of the video is shown in the output.
  4. Hope this will be helpful for those who wants to work with a segmented part of an image, not the whole image.