how to create rounded edges of an irregular object? I want to smoothen the corners of this object.

2 次查看(过去 30 天)

采纳的回答

Image Analyst
Image Analyst 2020-9-8
You can blur the image with imfilter() or conv2():
windowSize = 21; % Bigger for more blurring.
kernel = ones(windowSize) / windowSize^2;
output = imfilter(rgbImage, kernel);
  7 个评论
Nabanita Roy
Nabanita Roy 2020-9-27
I have multiple same images. Is it possible to crop all the binary images in such a way that the black object will take only 40 percent of the entire image and the rest 60 percent will remain white. Thats how I want to standardize the images.
Image Analyst
Image Analyst 2020-9-27
Yes. First get the area, then divide by 0.4 to get the number of pixels in the cropped image. Then use indexing to crop it out.
mask = bwareafilt(mask, 1); % Take largest blob only.
props = regionprops(mask, 'area', 'Centroid');
imageArea = area / 0.4;
imageWidth = sqrt(imageArea);
xCentroid = props.Centroid(1);
yCentroid = props.Centroid(2);
xLeftCol = round(xCentroid - imageWidth/2);
xRightCol = round(xCentroid + imageWidth/2);
yTopRow = round(yCentroid - imageWidth/2);
yBottomRow = round(yCentroid + imageWidth/2);
output = mask(yTopRow : yBottomRow, xLeftCol : xRightCol);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with Image Processing Toolbox 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by