bio_img_steve

Steve on Image Processing with MATLAB

Image processing concepts, algorithms, and MATLAB

Note

Steve on Image Processing with MATLAB has been archived and will not be updated.

結果: eye

Defining and filling holes on the border of an image 9

Blog reader Alex asked a question this week about filling holes in this binary image.url = 'https://blogs.mathworks.com/images/steve/2013/eye-heart-matlab.png'; bw = imread(url); imshow(bw) Alex... 続きを読む >>

Feature AND

I'm going to take a break from looking at M&Ms this week and instead consider a question that Richard asked yesterday: "I have two binary images of the same size. I want to select... 続きを読む >>

More about variable names inside functions 14

Last week I wrote that I do not normally worry very much about whether a variable name inside a function I'm writing might be the same as the name of a function somewhere else. Unfortunately, I... 続きを読む >>

Five years of MATLAB changes related to image processing

Digital Image Processing Using MATLAB has three coauthors, and we are each responsible for different aspects of writing and other book-related activities. One of my responsibilities is to keep... 続きを読む >>

Packed dilation and erosion

This post is another in my series on morphological dilation and erosion algorithms. One of the algorithm techniques used by imdilate and imerode is binary image bit packing. In bit packing,... 続きを読む >>

Lookup tables for binary image processing—makelut and applylut 9

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... 続きを読む >>

Costas arrays 17

Last week I wrote about a possible modification to poly2mask that would estimate how much of each pixel is contained within a polygon. The idea was to use a regular 5-by-5 subgrid and ... 続きを読む >>