Image Processing-Opencv Introduction-Frequency Domain Processing Basis
I. Frequency Domain Processing of Images
1.1 Concept of Frequency Domain Image Processing
Image processing in frequency domain is to transform the image into frequency domain, and then process the image in frequency domain. Its characteristic is fast operation.
The first step of frequency domain p ...
Added by guilhenfsu on Thu, 03 Oct 2019 00:24:08 +0300
Image Edge and Corner Detection Based on OpenCv
Write down the problems one by one. They are all mentally retarded.
1: Mat result1(5, 5, CV_8UC1, Scalar(255));
This sentence is to create a matrix of 5*5. The data type is CV_8UC1, which means that the unsigned character type C1 represents the ...
Added by [JayZ] on Sat, 07 Sep 2019 15:28:14 +0300
core Module core Function of opencv Learning 2
4 Use OpenCV to sum two images (blending)
Linear hybrid operation is also a typical binary (two inputs) pixel operation.
By changing alpha in range 0-1, this operation can be used to overlay two images or two videos in time.
#include <cv.h>
# ...
Added by dmphotography on Mon, 26 Aug 2019 11:41:39 +0300
Jetson AGX Xavier Trampling Record
1. Upgrade all installation packages and update the system after networking
sudo apt-get update
2. Install Chinese Input Method
sudo apt-get install fcitx-googlepinyin
3. Install nano text editor, preferring this text editor (no commands required). I used to like gedit, but last time in Jetson ...
Added by butsags on Tue, 13 Aug 2019 08:34:07 +0300
RGBD Depth Camera Data Format-Storage Read-Visualization
equipment
Here RGBD camera mainly refers to the depth camera which uses Light Coding (structured light) or TOF for imaging, and actively emits light, which is mainly suitable for indoor environment.
The more common RGBD cameras are as follows:
camera
principle
SDK
data
PrimeSense Carmine 1.08/1. ...
Added by ruttiger on Mon, 12 Aug 2019 09:46:57 +0300
Fusion Series of Unmanned Sensors-Camera Internal Reference Calibration
Fusion Series of Unmanned Sensors (11) - Camera Internal Reference Calibration
Summary of this chapter: This chapter explains the causes of camera distortion, calibration principle, and how to calibrate camera internal parameters through opencv.
I. Causes of Camera Distortion
There are two main di ...
Added by sh0wtym3 on Mon, 05 Aug 2019 06:10:22 +0300
Installation and Testing of Ubuntu 16.04 DSO [Complete Process + Pit Filling Strategy]
DSO Installation and Testing
Operating environment
Ubuntu 16.04
ROS-kinetic
Mono-steoro monocular camera
rely on
DSO dependencies are very few. Only a few libraries, such as Eigen3, pangolin and opencv, are familiar to everyone. The installation of DSO is described in detail on the author's gith ...
Added by cjcdadams on Tue, 30 Jul 2019 11:34:50 +0300
Face Detection and Age and Gender Recognition Based on android opencv
Support technology sharing, reprinting or copying, please point out the source of the article The blogger is Jack__0023
1. Background
Because of the different scenarios, the face detection provided by android last time can not satisfy my use, because long time opening, he will have various small conditions, and then to identify (not in this bl ...
Added by tacojohn on Wed, 24 Jul 2019 08:57:52 +0300
Feature extraction and matching of opencv (1)
Feature extraction and matching of opencv (1)
The steps of feature extraction and matching in opencv are as follows:
Extraction of feature points
Generating descriptors of feature points
Feature point matching
opencv corresponding classes:
Extraction of Image Feature Points-Feature Detector
Feature Point Descriptor Generation-Descriptor ...
Added by yellowzm on Wed, 26 Jun 2019 21:00:21 +0300
OPENCV Learning Notes 2: Monochromatic Images
From[ http://blog.csdn.net/ab1322583838/article/details/52054260]
This blog has a clear explanation on color processing. It is also the place I should learn when I write a blog in the future.
I. Goals
Learning the use of Mat and the method of assigning initial values to Mat images
2. Function Description
Mat red_img(Size(), CV_8UC3, Scala ...
Added by moniphp on Sat, 22 Jun 2019 22:20:45 +0300