自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 收藏
  • 关注

原创 Improvement of LeNet-5 model based on InceptionV1 model

DirectoryLeNet-5 modelFrameworkDisadvantagesInceptionV1 modelHow to improve LeNet-5 model?ConclusionReferenceThrough the study of the principle of reference [1] in Fire detection based on HSV color m...

2020-04-29 21:29:47 419

原创 QT based software interface

The first step is to create a window //有且只有一个应用程序类的对象 QApplication a(argc, argv); //MyWidget继承与QWidget, QWidget是一个窗口基类 //所以MyWidget也是窗口类 //w就是一个窗口 MyWidget w; //窗口创建默认是隐藏,需...

2020-04-24 15:09:55 151

原创 Tensorflow| Simple application of approaching stock prices through Tensorflow

Tensorflow| Simple application of approaching stock pricesToday I want to share a simple program of approaching stock prices through tensorflow. It is a very simple case but It could help us understa...

2020-04-22 09:47:58 250 1

原创 TensorFlow: MNIST based on CNN

1 importimport tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets('MNIST_data', one_hot=True)trainimg = mnist.train.imagestrainlabel = m...

2020-04-21 16:12:30 133

原创 Opencv | Color Space

Today, we are talking about color space in Opencv. In general, there are so many different colors in the world combining everything that we have seen.But specifically, it seems that only several basic...

2020-04-20 20:00:31 307

原创 Fire detection based on HSV color model and CNN

DirectoryHSV color modelThe flow chartDetect and locate fire and make CNN network training dataConclusionReferenceHSV color modelHSV is also been call HexconeModel. The parameters of this model are:...

2020-04-18 21:38:43 634

原创 GUI Based on Tkinter

GUI is the visualization of software pageLet’s talk about label firstl = tk.Label(window, text='OMG! this is TK!', bg='green', font=('Arial', 12), width=15, height=2)l.pack()Label the windowThe...

2020-04-15 11:50:24 141

原创 Opencv|Document Scanning & Optical Character Recognition

Opencv|Document Scanning & Optical Character Recognition(OCR)Step 1. Import some packages and a pyfile named resize for the project.import cv2import numpy as npimport resizeStep 2. Import ...

2020-04-13 10:08:03 404

原创 TensorFlow : Several methods to improve accuracy

1 dropoutIt is used to prevent over fitting. This function randomly chooses some neurons to activate, so just part of neurons learn the “noise”.Its use is as follows:#at the beginningkeep_prob=tf....

2020-04-12 11:53:40 155

原创 Opencv | camera model

To apply three different camera models in different situations.Today, we are talking about models in camera. As we all know, there are a lot of lens in different position to change the road of light...

2020-04-11 22:23:02 299

原创 Feature Extraction based on LAB color model

DirectoryIntroduction to LAB color modelWhat is LAB?How to use LAB in OpenCV?RIO region divisionHOG feature of LABConclusionReferenceIntroduction to LAB color modelWhat is LAB?Lab color model is co...

2020-04-09 21:15:01 428

原创 Deep learning|Image Classification Base on CNN

Image Classification Base on CNNhello! everyone ,this time I build a network for image classification which base on CNN.The first step:Prepare datathere are two datasets train and test. they both...

2020-04-07 12:01:15 358

原创 Faster Rcnn

Fast RCNN has integrated feature extraction, proposal extraction, bounding box expression (rect refine) and classification into a network, which greatly improves the comprehensive performance, especia...

2020-04-05 11:58:46 210

原创 Opencv| Handwritten Digit Detection

Opencv| Handwritten Digit DetectionToday I want to share some basic steps of a project for handwritten digit detection. At the end of the article, I put a small project about the principle of the KNN...

2020-04-03 10:01:05 238

原创 OpenCV: Fire detection and cutting

Fire detection and cutting1 modules2 Conditions3 merge the images4 show the image5 result6 the whole code1 modulesimport cv2import numpy as np2 ConditionsR>redThre: In a fire image, R is alw...

2020-04-02 09:43:13 243

原创 Darknet-53|Some theories based on YOLOv3

Today, we are talking about YOLOv3, a great way to extract several characteristics in different objects, which includes a lot of complex parts and each of them also has plenty of details.Let’s begin ...

2020-04-01 09:11:49 230

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除