Posts

Image Stitching And Basics Of OpenCV

Image
Written this blog with the collaboration of  Yagnik Poshiya   Blog Outcomes OpenCV is originally developed by Intel What is OpenCV? OpenCV is a huge open-source library. In OpenCV, the CV is an abbreviation form of a  Computer Vision , that helps computers to understand the content of digital images such as photographs and videos. OpenCV is mainly focused on computer vision applications such as image processing, artificial intelligence, video capture, and analysis of object detection. Basic Functions Of OpenCV imread():  used to load an image from a specified file and returns it. if the image cannot be read by the  imread()  function then it will return an empty matrix. And it supports  bmp ,  dib ,  jpeg ,  jpg ,  jpe ,  jp2 ,  sr ,  ras ,  png ,  pic , and many other file formats. imshow():  used to display an image in the specified window. waitKey():  used to hold image window for a particular t...