A Simple Classification of PascalVOC Data Set with Pytorch

This paper only introduces the multi-classification process and some minor problems encountered in it. The accuracy rate has been relatively low and the efficiency is relatively low. It is only a simple explanation of the process. 1. Loading VOC datasets There are many blogs that load data sets on the Internet. Here we just m ...

Posted by maliskoleather on Mon, 06 May 2019 03:35:37 -0700

Using vs2013 to call caffe's c++ interface directly under Windows

1 Overview Because of the most urgent need for flame detection, at first, we thought about using traditional machine learning algorithm to do it. Later, we found that the current flame detection is based on color. In actual scenes, there are often serious false alarms due to the external effects of street lights and the sun. Later, we decided ...

Posted by Cogen2 on Wed, 17 Apr 2019 10:06:33 -0700

Convert QImage to cv::Mat

This article is inspired by http://blog.csdn.net/dancing_night/article/details/51545524. There is a pointer bits() in QImage to point to the memory header address of the stored pixels. And cv::Mat also has a member data, which also points to the memory header address of the storage pixel. So, if I want to convert QImage into cv::Mat, can I jus ...

Posted by portrower8 on Tue, 26 Mar 2019 02:51:29 -0700

Detailed Explanation of Python+OpenCV Face Recognition Technology

Face recognition is always seen in sci-fi movies. Now we can also program it. Ha ha ~ OpenCV is an Intel < open source computer vision library. It consists of a series of C functions and a few C++ classes. It realizes many general algorithms in image processing and computer vision. OpenCV has a cross-platform, high-level API ...

Posted by dodgei on Tue, 26 Mar 2019 00:45:28 -0700

The imread and imdecode processing of EXIF orientation in opencv 3.2 is not uniform

EXIF format (or JPEG, you can see the wiki explanation, for orientation problem, it is called EXIF format and JFIF distinguish) with orientation information in the picture (that is, the picture may actually rotate 90 or 180 degrees or 270 degrees). If the digital device is stored in EXIF format, even if the device rotates 90 or 180 degrees or 2 ...

Posted by antwonw on Sun, 10 Feb 2019 23:12:18 -0800

python opencv3 example (object recognition and augmented reality) 1-image geometry conversion

Original Book Code Address In this chapter, we will learn how to apply cool geometric effects to images. Knowledge points How to install OpenCV-Python How to read, display and save images How to convert to multiple color spaces How to apply geometric transformations such as translation, rotation, and scaling How to use affine and projection tr ...

Posted by ojeffery on Sat, 02 Feb 2019 13:36:16 -0800

iOS Camera Stream Face Recognition (II) - Key Point Detection (Dlib)

image.png Last article Face Frame Detection It has been introduced that if we detect the information of face location from video stream, based on these contents, we continue to expand downward to get the information of 68 key points of face. The reason why we want to get the information of face location is to prepare for the ...

Posted by gregmiller on Sun, 06 Jan 2019 17:00:09 -0800

OpenCV4Android is implemented in version 2.x without using OpenCVManager and compiling SIFT algorithm

This week, bloggers used the SIFT algorithm in OpenCV4Android to extract image features. The reasonably SIFT algorithm is packaged for you. Generally, it should be completed very soon by adjusting a package. But using OpenCV in Android configuration is a difficult problem. Usually when you run app, your mobi ...

Posted by dnast on Tue, 01 Jan 2019 16:45:08 -0800

opencv Notes (22) - Implications of CV_8UC1,CV_32FC3 and other parameters

(1) Detailed description of CV_8UC1,CV_8UC2 and other parameters when Mat matrix (image container) is created Mat is not only a very useful image container class, but also a general matrix class. There are many ways to create a Mat object. Let's first look at the source code of Mat matrix/image container class in OpenCv: Usin ...

Posted by funkyfela on Tue, 25 Dec 2018 13:36:06 -0800

Android NDK environment configuration: Android Studio 3.0.1 + CMAKE + OpenCV3.4.1

1. Preface Because the author encountered various pits when configuring the NDK environment, and had some insights in the process of climbing the pit, I wrote a blog to describe in detail the process of configuring NDK using CMAKE mode in Android Studio 3.0.1 (version >= 2.2), hoping to help you.   2. Preparations 2.1 De ...

Posted by czambran on Mon, 17 Dec 2018 17:33:04 -0800