自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 OpenCV: Adding a Trackbar to our applications!

摘自https://docs.opencv.org/4.2.0/da/d6a/tutorial_trackbar.htmlWell, it is time to use some fancy GUI tools. OpenCV provides some GUI utilities (highguimodule) for you. An example of this is aTrackb...

2020-02-23 15:18:47 140

转载 OpenCV: Canny Edge Detector

摘自https://docs.opencv.org/4.2.0/da/d5c/tutorial_canny_detector.html摘自https://docs.opencv.org/4.2.0/dd/d1a/group__imgproc__feature.html#ga04723e007ed888ddf11d9ba04e2232deTheCanny Edge detectorwas...

2020-02-22 21:41:22 347

转载 OpenCV: Laplace Operator

摘自https://docs.opencv.org/4.2.0/d5/db5/tutorial_laplace_operator.html摘自https://docs.opencv.org/4.2.0/d4/d86/group__imgproc__filter.html#gad78703e4c8fe703d479c1860d76429e6Sobel Operator isbased on...

2020-02-22 21:03:01 199

转载 OpenCV: Sobel Derivatives

摘自https://docs.opencv.org/4.2.0/d2/d2c/tutorial_sobel_derivatives.html摘自https://docs.opencv.org/4.2.0/d4/d86/group__imgproc__filter.html#gacea54f142e81b6758cb6f375ce782c8dIn anedge, the pixel int...

2020-02-22 20:29:55 278

转载 Histograms - 2: Histogram Equalization

摘自https://docs.opencv.org/4.2.0/d5/daf/tutorial_py_histogram_equalization.htmlConsider an image whose pixel values are confined to some specific range of values only. You need to stretch this histog...

2020-02-22 11:15:30 328

转载 Histograms - 1 : Find, Plot, Analyze !!!

摘自https://docs.opencv.org/4.2.0/d1/db7/tutorial_py_histogram_begins.htmlHistogram gives you an overall idea about the intensity distribution of an image.By looking at the histogram of an image, you...

2020-02-22 10:12:09 183

转载 Smoothing Images

摘自https://docs.opencv.org/4.2.0/d4/d13/tutorial_py_filtering.html2D Convolution ( Image Filtering )As in one-dimensional signals, images also can be filtered with various low-pass filters (LPF), h...

2020-02-21 17:59:30 287

转载 Image Thresholding

摘自https://docs.opencv.org/4.2.0/d7/d4d/tutorial_py_thresholding.htmlSimple ThresholdingThe functioncv.thresholdis used to apply the thresholding. The first argument is the source image, whichsh...

2020-02-21 15:59:02 423

转载 Changing Colorspaces

摘自https://docs.opencv.org/4.2.0/df/d9d/tutorial_py_colorspaces.htmlChanging Color-spaceThere are more than 150 color-space conversion methods available in OpenCV. But we will look into only two: B...

2020-02-21 15:06:40 161

转载 Arithmetic Operations on Images

摘自https://docs.opencv.org/4.2.0/d0/d86/tutorial_py_image_arithmetics.htmlImage AdditionYou can add two images with the OpenCV function,cv.add(), or simply by the numpy operation res = img1 + img2...

2020-02-21 13:26:11 168

转载 Basic Operations on Images

摘自https://docs.opencv.org/4.2.0/d3/df2/tutorial_py_basic_ops.htmlAlmost all the operations in this section are mainly related to Numpy rather than OpenCV.Accessing and Modifying pixel valuesYou ...

2020-02-21 12:18:36 134

转载 Getting Started with Images

摘自https://docs.opencv.org/4.2.0/dc/d2e/tutorial_py_image_display.htmlRead an imageUse the functioncv.imread()to read an image. The image should be in the working directory or a full path of imag...

2020-02-21 11:28:06 156

转载 Introduction to OpenCV-Python Tutorials

摘自https://docs.opencv.org/4.2.0/d0/de3/tutorial_py_intro.htmlOpenCV-Python is the Python API for OpenCV, combining the best qualities of the OpenCV C++ API and the Python language.Python can be ea...

2020-02-21 09:10:50 178

转载 接口,协议和鸭子类型

摘自《流畅的Python》10.3协议和鸭子类型;杂谈:把协议当作非正式的接口;11.1 Python文化中的接口和协议Python中除了抽象基类,每个类都有接口:类实现或继承的公开属性(方法或数据属性),包括特殊方法,如__getitem__ 或__add__。按照定义,受保护的属性和私有属性不在接口中:即便“受保护的”属性也只是采用命名约定实现的(单个前导下划线);私有属性可以轻松地...

2020-02-18 16:39:24 229

转载 覆盖类属性

摘自《流畅的Python》Python 有个很独特的特性:类属性可用于为实例属性提供默认值。Vector2d 中有个typecode类属性,因为Vector2d 实例本身没有typecode 属性,所以self.typecode 默认获取的是Vector2d.typecode类属性的值。但是,如果为不存在的实例属性赋值,会新建实例属性。假如我们为typecode 实例属性赋值,那么同...

2020-02-17 16:01:24 270

转载 Python的私有属性和“受保护的”属性

摘自《流畅的Python》Python 不能像Java 那样使用private 修饰符创建私有属性,但是Python 有个简单的机制,能避免子类意外覆盖“私有”属性。举个例子。有一个Dog 类,这个类的内部用到了mood 实例属性,但是没有将其开放。现在,你创建了Dog 类的子类:Beagle。如果你在毫不知情的情况下又创建了名为mood 的实例属性,那么在继承的方法中就会把Dog 类的m...

2020-02-17 11:38:28 490

转载 Metrics for object detection

摘自https://github.com/rafaelpadilla/Object-Detection-Metrics#different-competitions-different-metricsTrue Positive, False Positive, False Negative and True NegativeTrue Positive (TP): A correct det...

2020-02-11 16:44:49 578

转载 One-stage object detection

摘自http://machinethink.net/blog/object-detection/Object detection is more tricky than classification. One of the problems you’ll encounter is that a training image can have anywhere from zero to doze...

2020-02-06 14:47:36 1189

空空如也

空空如也

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

TA关注的人

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