范围阈值二值化处理。

17 vues (au cours des 30 derniers jours)
N/A
N/A le 19 Nov 2022
阈值二值化处理一般是大于n为1,小于n为0。
请问如果我想让图像(n1,n2)范围内的为1,而(0,n1)和(n2,255)范围的为0,请问要怎么改?
%读取一张图片,并显示
original_picture=imread('a.jpg');
%把图像转换成灰度图像
GrayPic=rgb2gray(original_picture);
%对图像进行二值化处理
Pic2=im2bw(original_picture,thresh);

Réponses (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!