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.

다음에 대한 결과: imoverlay

How to Overlay a Color on an Image Using a Mask

In my first year of writing this blog (2006!), I showed how to overlay a color onto an image based on a mask. This was the example I gave back then: I wrote a function called imoverlay to handle all... 더 읽어보기 >>

Superpixel Posterization 6

Today's blog post was inspired by an example written by my friend and Image Processing Toolbox developer, Alex Taylor. A few years back, Alex tinkered with using toolbox algorithms to achieve a... 더 읽어보기 >>

Exploring shortest paths – part 5 5

In this post in the Exploring shortest paths series, I make things a little more complicated (and interesting) by adding constraints to the shortest path problem. Last time, I showed this... 더 읽어보기 >>

Exploring shortest paths – part 4

In my previous posts on Exploring shortest paths (November 1, November 26, and December 3), I have noted several times that there isn't a unique shortest path (in general) between one object and... 더 읽어보기 >>

Exploring shortest paths – part 3 2

In part 2 of Exploring shortest paths, I noted a problem with using the 'quasi-euclidean' distance transform to find the shortest paths between two objects in a binary image.... 더 읽어보기 >>

Exploring shortest paths – part 2

Earlier this month I started exploring the question of computing the shortest path from one object in a binary image to another. I described the following basic algorithm: ... 더 읽어보기 >>

Freehand segmentation in the a*-b* plane 10

Today I return to examining this picture of M&Ms:url = 'https://blogs.mathworks.com/images/steve/2010/mms.jpg'; rgb = imread(url); imshow(rgb) Previously I showed how to convert pixel... 더 읽어보기 >>