抓虾帮你轻松订阅、收藏、分享博客和新闻等。 订阅 关闭
共有158篇 | 以下是第11-20篇 | 只浏览标题 <   1   2   3   4   5   6   7   8  >  
This is the third post about using lookup tables to process binary images. The first two posts were: Introduction Basic use of makelut and applylut The most fun I've had with binary image lookup tables is playing around with Conway's Game of Life, the most famous example of a cellu...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
This is the second in a short series on using lookup tables for binary image neighborhood operations. See the first post for the basic idea. The Image Processing Toolbox has two related functions: applylut - Process binary image using lookup table makelut - Utility function to help you constr...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Over the past few years I've been fascinated to see the progress in making text look better on the screen. (I should confess right away that I know nothing about typography, and almost nothing about text anti-aliasing.) I recall reading some time ago that the Microsoft ClearType technology made ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Today I'm introducing a short series about using lookup tables to implement neighborhood operations in binary images. This is a fast implementation technique that works for small neighborhoods, typically 2-by-2 or 3-by-3. My tentative plan is to do three posts on this algorithm topic: 1. Expl...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I often find myself writing small functions that help visualize certain image processing algorithms. For example, my last three posts on bwlabel included identical snippets of code that performed the following steps on a label matrix: 1. Display a binary image using two light shades of gray. 2. U...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Several questions I've seen about bwlabel are about finding the correspondences between object labels in two images. In other words, if a particular pixel is in the foreground in two binary images, is that pixel labeled the same in both images, or is it different? In general, for foreground pix...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
The three most common questions I've been hearing about bwlabel, which is used for labeling connected components in a binary image, are about Search order Relabeling (renumbering the label matrix) Correspondence between labels in two different images Today I'll tackle relabeling. ...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
I grabbed the latest issue of IEEE Signal Processing Magazine out of my mailbox the other day. As I was flipping through the pages I noticed a familiar face: Doug Williams, who is the Special Sections Area Editor for the magazine. (I know Doug because he joined the faculty at Georgia Tech as I was f...
 展开
发给朋友   转到小组   (打标签) 收藏   推荐  
Blog reader Ram asked a question last week that I hear fairly often: When you apply a spatial transformation to an image, how can you see the x-y coordinates when you display the image? The answer has three steps: 1. Ask imtransform for the spatial coordinates of the output image 2. Give imsh...