
图像处理
Dandelion_2
这个作者很懒,什么都没留下…
展开
-
TensorFlow模块:tf.image
模块:tf.image定义在:tensorflow/tools/api/generator/api/image/init.py用于Python API的导入.类class ResizeMethod函数adjust_brightness(…):调整RGB或灰度图像的亮度.adjust_contrast(…):调整RGB或灰度图像的对比度.adjust_gamma(…):对输入图像执行Gamma校正.adjust_hue(…):调整RGB图像的色调.adjust_saturation(…):原创 2020-12-26 19:06:52 · 645 阅读 · 2 评论 -
中值滤波
#include<iostream>#include<opencv2/opencv.hpp>using namespace std;using namespace cv;Mat medianSmooth(const Mat& I, Size size, int borderType = BORDER_DEFAULT) { CV_Assert(I.type() == CV_8UC1); int H = size.height; int W = size.wi原创 2020-10-28 11:00:53 · 280 阅读 · 0 评论 -
dlib Library
Python:http://dlib.net/train_shape_predictor.py.htmlC++:http://dlib.net/http://dlib.net/face_landmark_detection_ex.cpp.html原创 2020-09-09 16:43:35 · 190 阅读 · 0 评论 -
传统图像特征提取方法总结
1.Harris2.LBP3.SIFT4.HOG5.Gabor6.ORB7.SURF原创 2020-07-22 10:38:35 · 1637 阅读 · 0 评论 -
冈萨雷斯数字图像处理
源代码 http://fourier.eng.hmc.edu/e161/dipum/图像:http://imageprocessingplace.com/DIP-3E/dip3e_book_images_downloads.htm原创 2020-03-13 18:40:47 · 643 阅读 · 0 评论 -
批量把图像压缩到指定大小
把文件下的所有图片压缩到256*256path = 'E:\python论文及代码\新建文件夹 (4)\imagefusion_densefuse-master\coco2014\train_gray\';save_path = 'E:\python论文及代码\新建文件夹 (4)\imagefusion_densefuse-master\coco2014\train_gray_256\';f...原创 2019-11-21 21:51:31 · 1458 阅读 · 0 评论 -
matlab批量处理把rgb图像转换为灰度图像
path = 'E:\python论文及代码\新建文件夹 (4)\imagefusion_densefuse-master\coco2014\1\';save_path = 'E:\python论文及代码\新建文件夹 (4)\imagefusion_densefuse-master\coco2014\2\';file=dir([path,'*.jpg']);for i=1:length(...原创 2019-11-21 16:06:54 · 2179 阅读 · 4 评论