抓虾帮你轻松订阅、收藏、分享博客和新闻等。 订阅 关闭
共有158篇 | 以下是第1-10篇 | 只浏览标题 1   2   3   4   5   6   7   8  >  
Filling small holes 查看全文   2008-08-05 20:00:40
A MATLAB user recently asked in the MATLAB newsgroup how to fill "small" holes in a binary image. The function imfill can be used to fill all holes, but this user only wanted to fill holes having an area smaller than some threshold. That's an interesting question. It can be done using a ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
[Blog schedule note: I will be out of the office, with no Internet access, all next week. I will try to prepare another post before I leave, but I will not be able to moderate or respond to comments until I return. -SE] Last fall I wrote about a complaint some MATLAB users had about reading certain...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I'd like to welcome back guest blogger Stan Reeves, professor of Electrical and Computer Engineering at Auburn University, for another in his series of posts on image deblurring. -Steve I've previously blogged about image restoration methods based on inverse filtering a...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Today I want to show you a morphological operation called "opening by reconstruction." The normal morphological opening is an erosion followed by a dilation. The erosion "shrinks" an image according to the shape of the structuring element, removing objects that are smaller than...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Some nonlinear image processing operations can be expressed in terms of linear filtering. When this is true, it often provides a recipe for a speedy MATLAB implementation. Today I'll show two examples: Computing the local standard deviation, and computing the local geom...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Today I want to demonstrate a useful technique to produce a false-color visualization of different sets of binary image objects. Here's the sample image that we'll use: url = 'http://blogs.mathworks.com/images/steve/2008/segmented_rice.png'; bw = imread(url); imshow(bw) Let...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Here's a very common question we receive: "How do I process a set of image files in a directory?" I first posted an example illustrating "batch processing" of a set of image files a couple of years ago. The techniques are not specific to image processing, though. Lo...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I thought I would finish my discussion of applylut and makelut by describing a performance optimization we implemented for version 6 (R2007b) of the Image Processing Toolbox. A couple of years ago, a developer on our team wanted to know the details of the 'thin' option of bwmorph. This syn...