Opencv calculates the camera response function and Radiance

This paper is mainly used to record some problems encountered in learning CRF. CRF model B = f ( ...

Posted by evilmonkey on Sat, 18 Sep 2021 23:45:20 -0700

Opencv Python explains the feature matching of image features

catalogue Brute force matcher: Principle and application process Correlation function: Create matcher - > bfmatcher() and its parameter interpretation Two matching methods of BFMatcher object - > BF. Match() and bf.knnMatch() The functions drawMatches() and drawMatchsKnn() for drawing matching points   Look at an example of SU ...

Posted by xavier.rayne on Sat, 18 Sep 2021 17:52:51 -0700

[learning notes on digital image processing] II. Window destruction function and image color transformation function to draw custom digital images

[digital image processing learning notes] i. installation, reading, displaying and storing images Follow the link above: 4. Window destruction function Two common window destruction functions ① Definition: cv2.destroyWindow(windows_name) # destroys a single specific window ② cv2.destroyAllWindows() # destroy all windows without parameters fo ...

Posted by caminator on Sat, 11 Sep 2021 13:22:56 -0700

Template matching single object, multi object and multi-scale template matching using Python and opencv

This blog will introduce how to use template matching to find objects in images. Template matching is a method to find the position of template image in a large image. OpenCV uses cv2.matchTemplate() and cv2.minMaxLoc() to realize template matching. It is mainly divided into three parts: Template matching single objectTemplate matching mu ...

Posted by Anidazen on Wed, 08 Sep 2021 16:26:05 -0700

[image recognition] fingerprint feature extraction based on morphology matlab source code

1, Morphology Morphological operation is actually to change the shape of an object. For example, corrosion is "getting thinner" and expansion is "getting fatter". You can see from the following figure: (http://ex2tron.wang/opencv-python-erode-and-dilate/) Experience: morphological operations generally act on binary gr ...

Posted by Unknown_Striker on Sat, 04 Sep 2021 18:18:25 -0700

Efficient image loading

Article catalog 1 installation 2 how to load images 2.1 Structure 2.2 OpenCV 2.3 Pillow 2.4 Pillow-SIMD 2.5 TurboJpeg 2.6 LMDB 2.7 TFRecords 3 load time comparison 4 Summary Image loading plays an important role in computer vision when writing optimized code. This process can be a bottleneck for ...

Posted by like_duh44 on Tue, 23 Jun 2020 20:18:57 -0700

Using Python, OpenCV reads every frame of the video, writes the video after modification

Write the video to a file using OpenCV 3 and save it on your own disk Try to only support writing in avi format. mp4 format will generate files but cannot play them. There is a format error; However, if you're trying to write videos in your own application as an archive using OpenCV, be prepared to: ...

Posted by p2grace on Tue, 23 Jun 2020 20:15:27 -0700

Python's setting and decoding of the verification code for rotating pictures

Python's setting and decoding of the verification code for rotating pictures In this paper, we mainly use python + selenium to crack the verification code of rotation breakthrough, in which numpy and OpenCV (CV2) are used for image splicing, conversion, mask, recognition, etc Rotate the picture to t ...

Posted by psychosquirrel on Mon, 22 Jun 2020 21:11:21 -0700

[pytorch] transform resnet into a full convolution neural network to adapt to different input sizes

Why is resnet input certain? Because resnet finally has a full connection layer. Because of this full connection layer, the size of the input image must be fixed. What are the limitations of a fixed input size? The original resnet will scale the image to 224 × 224 on the imagenet dataset, but there are some limitations in doing so: (1 ...

Posted by pcjackson06 on Sun, 21 Jun 2020 21:45:52 -0700

Face recognition based on opencv+python+pycharm

Face recognition based on opencv+python+pycharm catalog preface preparation in advance Face detection Sample collection Sample training epilogue preface I am a sophomore in the University, programming rookie. Recently, I did the final course design, and the topic I chose was face recognition. W ...

Posted by meritre on Fri, 19 Jun 2020 04:31:25 -0700