抓虾帮你轻松订阅、收藏、分享博客和新闻等。 订阅 关闭
共有158篇 | 以下是第21-30篇 | 只浏览标题 <   1   2   3   4   5   6   7   8  >  
MATLAB 7.6 (R2008a) 查看全文   2008-03-22 02:27:48
When the new releases come out, I like to peruse the release notes for MATLAB. Loren and the Desktop team have already started writing about the new features in their blogs, but I thought I'd mention a few items that particularly caught my eye. First of all, the new object-oriented programming ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
For the geoscientists in the audience who are using my upslope area functions, I just updated the files. The update fixes a problem with the computation of influence and dependence maps for data sets that have NaNs outside the catchment area of interest. (Thanks to Claire for reporting the problem....
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Every so often someone asks in comp.soft-sys.matlab for a "function like Image Processing Toolbox function foobar that works in 3-D." If I happen to see the post, I will follow up, explaining that foobar itself works just fine in 3-D. So in case some blog readers have been looking for a ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
R2008a 查看全文   2008-03-08 00:15:59
Last week The MathWorks released R2008a, the ninth in a series of six-month releases. (If there's an equinox coming up, look for a new MATLAB® release!) Here are some of the highlights especially related to image processing. The Image Processing ToolboxTM, the Image Acquisition ToolboxTM, and ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Timing code in MATLAB 查看全文   2008-03-01 00:41:40
When we work on improving the speed of image processing functions in MATLAB, we are naturally interested in getting timing measurements. And we know customers are often timing their own code, typically by using the MATLAB functions tic and toc. It turns out to be surprisingly difficult to get rel...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I would like to announce new procedures for comments on this blog, as well as for associated e-mail traffic. First, post commenting is now in "moderate" mode, meaning that new comments will not appear until I have had a chance to review them. My goal is to review the incoming comments at ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Neighbor indexing 查看全文   2008-02-25 23:52:41
Earlier this year I wrote about logical indexing and linear indexing. Now I want to finish this little indexing series with an example of a technique I call neighbor indexing. I've written about neighbor indexing before, but in this post I'll show a more complete example of its applicat...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Linear indexing 查看全文   2008-02-09 03:50:41
Last week I posted an introduction to logical indexing. This week I want to continue with a brief discussion of linear indexing and its connection to image processing in MATLAB. Lets start with a small matrix. Breaking with tradition, I'll use a Hilbert matrix instead of a magic square: A ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Blog reader André recently asked me how to count the number of times each color appears in an image. One short solution involves optional output arguments from the function unique, as well as the relatively new function accumarray. Let's look first at the function unique. Probably most people ...