抓虾帮你轻松订阅、收藏、分享博客和新闻等。 订阅 关闭
共有158篇 | 以下是第51-60篇 | 只浏览标题 <   1   2   3   4   5   6   7   8  >  
In my August 7th post on upslope area, I showed how to construct and solve the flow matrix to determine the upslope area for every pixel in a digital elevation model (DEM). In addition, the flow matrix can be used to compute both the influence map and the dependence map. The influence map shows w...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
At the International Conference on Image Processing last week, almost everyone who visited the MathWorks booth was already a MATLAB user. Mostly, they wanted to know "What's new?" That question is a bit harder to answer than it used to be, because for the past three and a half years w...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
In a comment on my R2007b post last week, Vincent wanted to know why imread and imwrite are slow when dealing with TIFF files containing tens of thousands of images. We have been hearing from other customers recently about the need to work with such TIFF files. TIFF files can store an unlimited num...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
ICIP 2007 查看全文   2007-09-16 21:32:05
For the next few days, I'll be at the IEEE International Conference on Image Processing in San Antonio, Texas. If you're there, stop by the MathWorks table and say hi. PS. I've discovered that sitting in the airport is a good time for catching up on blog comments. :-) ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
R2007b 查看全文   2007-09-07 01:17:57
Sharp-eyed readers of my previous post might have noticed the "Published with MATLAB® 7.5" footer at the end of the example. That's right, as Loren posted earlier this week, R2007b is now traveling the world via plane, truck, and TCP/IP. The new version of MATLAB is 7.5. Follow this ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I saw an application recently where someone wanted to handle NaNs in an image differently depending on whether they were "interior." In other words, a set of connected NaN pixels surrounded by non-NaN pixels are handled one way, and a set of connected NaN pixels that touches the image bor...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
One the measurements provided by regionprops is 'Centroid'. Here's an example of labeling binary objects, computing the centroid of each object, and plotting the centroid location on top of the image. I = imread('text.png'); imshow(I) L = bwlabel(I); s = regionprops(L...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Earlier in this series I have discussed the problem of plateaus. Specifically, how do you assign a flow direction to a DEM pixel that has no downhill neighbors? I proposed in part 5 that the problem could be addressed by using the interpolation technique in roifill to modify plateau values so that ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
The functions bwlabel and regionprops are very useful for measuring the properties of shapes in a binary image. There are documentation examples and product demos showing how to do this, and I've shown these functions in action several times in this blog. But sometimes I get questions about ho...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I'd like to introduce guest blogger Stan Reeves. Stan is a professor in the Department of Electrical and Computer Engineering at Auburn University. He serves as an associate editor for IEEE Transactions on Image Processing. His research activities include image restoration a...