官术网_书友最值得收藏!

Time for action – making a custom object eraser function

This time we are going to make a more complex tool. We'll write a function that accepts an image as an input, prompts the user to select a ROI (using either one of the two methods described previously) and then prompts the user to select a pixel with the color to be used for the erasing process. Finally, it will use the color of the pixel chosen by the user to erase the area defined by the mask. The code will be something like as follows (we'll call it FreehandMasking.m):

function[output] = FreehandMasking(input,method)

% Function that performs masking of a user-defined ROI
% Inputs:
%           input -  Input image
%           method – ROI selection (1: roipoly, 2: imfreehand)
% Output:
%           output - Output image (masked)

switch method
case 1
mask = roipoly(input);););% Select ROI using roipoly
case 2
figure, imshow(input)
h = imfreehand;      % Select ROI using imfreehand
pos = wait(h);
[rows,columns] = size(input);
 mask = poly2mask(pos(:,1),pos(:,2),rows,columns);
end
pix = impixel(input);   % Select pixel with eraser color
output = input;    % Set output equal to input
output(mask) = pix(1);  % Perform masking to erase selected object
  1. Now let's test our code. We will try to erase two parts of the middle rock of our examples, using different colors. Let's first type in the commands to crop the middle rock:
    >> img = imread('3rocks.jpg');
    >> rock = rgb2gray(img);
    >> rock = imcrop(rock)
  2. Once we crop the area we want to use, we must call the function we just made, twice. We will now use the roipoly function for the part of the rock that is below the water level in the image and the imfreehand function for the part of the rock that is above the water level. First, let's mask the part below sea level (we will double-click on a pixel from the sky region to select its color for erasing the rock):
    >> rock2 = FreehandMasking(rock,1);
  3. Now, we will mask the part above sea level (we will double-click on a pixel from the sea for erasing the rock):
    >> rock3 = FreehandMasking(rock2,2);
  4. Let's see the final result:

What just happened?

The tool we just finished making is more sophisticated than the others so far. It prompts twice for user input; once for the ROI selection using the predefined method (given as input) and once for the selection of the color of the eraser. We took advantage of this functionality to repeat the example of erasing the middle rock, this time using two colors, one for each chosen ROI of the rock. The result is even better than before, since the part of the rock lying below the sea level got erased using a darker color, hence camouflaging the rock more efficiently. In the following chapters, you will see more exciting examples using the ROI selection techniques that we presented in this section.

主站蜘蛛池模板: 阿拉善右旗| 吉林市| 临高县| 白水县| 新兴县| 梁山县| 利川市| 望奎县| 忻州市| 伽师县| 邻水| 六安市| 山东| 喜德县| 封丘县| 神池县| 秭归县| 隆德县| 普格县| 沈阳市| 红原县| 读书| 上栗县| 望谟县| 三河市| 湘潭市| 齐河县| 海晏县| 正蓝旗| 简阳市| 合阳县| 泾川县| 抚宁县| 长宁区| 梅河口市| 通渭县| 阿瓦提县| 和龙市| 新密市| 响水县| 阿克|